-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changes made to run kfp e2e tests on ppc64le
Signed-off-by: Valen Mascarenhas <[email protected]>
- Loading branch information
1 parent
cb07619
commit b14eca9
Showing
52 changed files
with
1,091 additions
and
1,191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Copyright 2024 The Kubeflow Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
package model | ||
|
||
type CronSchedule struct { | ||
// Time at which scheduling starts. | ||
// If no start time is specified, the StartTime is the creation time of the schedule. | ||
CronScheduleStartTimeInSec *int64 `gorm:"column:CronScheduleStartTimeInSec;"` | ||
|
||
// Time at which scheduling ends. | ||
// If no end time is specified, the EndTime is the end of time. | ||
CronScheduleEndTimeInSec *int64 `gorm:"column:CronScheduleEndTimeInSec;"` | ||
|
||
// Cron string describing when a workflow should be created within the | ||
// time interval defined by StartTime and EndTime. | ||
Cron *string `gorm:"column:Schedule;"` | ||
} | ||
|
||
func (c CronSchedule) IsEmpty() bool { | ||
return (c.CronScheduleStartTimeInSec == nil || *c.CronScheduleStartTimeInSec == 0) && | ||
(c.CronScheduleEndTimeInSec == nil || *c.CronScheduleEndTimeInSec == 0) && | ||
(c.Cron == nil || *c.Cron == "") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.