Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 1a2b3c (0.12 sec)

  1. pkg/controller/cronjob/utils_test.go

    	cj := batchv1.CronJob{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "mycronjob",
    			Namespace: "snazzycats",
    			UID:       types.UID("1a2b3c"),
    		},
    		Spec: batchv1.CronJobSpec{
    			Schedule:          "* * * * ?",
    			ConcurrencyPolicy: batchv1.AllowConcurrent,
    			JobTemplate: batchv1.JobTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/cronjob_controllerv2_test.go

    func cronJob() batchv1.CronJob {
    	return batchv1.CronJob{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:              "mycronjob",
    			Namespace:         "snazzycats",
    			UID:               types.UID("1a2b3c"),
    			CreationTimestamp: metav1.Time{Time: justBeforeTheHour()},
    		},
    		Spec: batchv1.CronJobSpec{
    			Schedule:          "* * * * ?",
    			ConcurrencyPolicy: "Allow",
    			JobTemplate: batchv1.JobTemplateSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  3. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

     * For non-merge-queue branches this is the same as {@link #buildBranch}.
     * For merge-queue branches, this is the base branch.
     *
     * For example, for the merge queue branch "gh-readonly-queue/master/pr-12345-1a2b3c4d" the logical branch is "master".
     */
    val Project.logicalBranch: Provider<String>
        get() = buildBranch.map(::toMergeQueueBaseBranch)
    
    
    val Project.buildCommitId: Provider<String>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/net/url/url_test.go

    }
    
    var unescapeTests = []EscapeTest{
    	{
    		"",
    		"",
    		nil,
    	},
    	{
    		"abc",
    		"abc",
    		nil,
    	},
    	{
    		"1%41",
    		"1A",
    		nil,
    	},
    	{
    		"1%41%42%43",
    		"1ABC",
    		nil,
    	},
    	{
    		"%4a",
    		"J",
    		nil,
    	},
    	{
    		"%6F",
    		"o",
    		nil,
    	},
    	{
    		"%", // not enough characters after %
    		"",
    		EscapeError("%"),
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top