Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for 1a2b3c (0.11 sec)

  1. pkg/apis/batch/validation/validation_test.go

    					Namespace: metav1.NamespaceDefault,
    					UID:       types.UID("1a2b3c"),
    				},
    				Spec: batch.JobSpec{
    					Selector: &metav1.LabelSelector{
    						MatchLabels: map[string]string{batch.LegacyControllerUidLabel: "1a2b3c"},
    					},
    					Template: api.PodTemplateSpec{
    						ObjectMeta: metav1.ObjectMeta{
    							Labels: map[string]string{batch.LegacyControllerUidLabel: "1a2b3c", batch.LegacyJobNameLabel: "myjob"},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/CommitDistribution.groovy

     * Its version looks like "7.5-commit-1a2b3c".
     *
     * The commit distributions are generated at the following location:
     *
     * +-- build
     *    +-- commit-distributions
     *        +-- gradle-7.5-commit-1a2b3c4.zip
     *        +-- gradle-7.5-commit-1a2b3c4-tooling-api.jar
     *        \-- gradle-7.5-commit-1a2b3c4
     *            \-- gradle-7.5-20220618071843+0000
     *                +-- bin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternStepFactoryTest.groovy

            and:
            def step8 = PatternStepFactory.getStep("*a*b*c*", true);
            step8 instanceof RegExpPatternStep
            step8.matches("abc")
            step8.matches("1a2b3c4")
            !step8.matches("")
            !step8.matches("ab")
            !step8.matches("1a2b")
        }
    
        def "creates step for non-wildcard segment"() {
            expect:
            def step = PatternStepFactory.getStep("abc", true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParserTest.groovy

            expect:
            def version = parse(versionStr)
            version.parts as List == parts
    
            where:
            versionStr       | parts
            'abc123'         | ['abc', '123']
            '1a2b'           | ['1', 'a', '2', 'b']
            '1\u03b12\u03b2' | ['1', '\u03b1', '2', '\u03b2']
        }
    
        def "base version includes the first . separated parts"() {
            expect:
            def version = parse(versionStr)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/field/fe_generic.go

    	//                        a4b0 a3b0 a2b0 a1b0 a0b0  +
    	//                   a4b1 a3b1 a2b1 a1b1 a0b1       +
    	//              a4b2 a3b2 a2b2 a1b2 a0b2            +
    	//         a4b3 a3b3 a2b3 a1b3 a0b3                 +
    	//    a4b4 a3b4 a2b4 a1b4 a0b4                      =
    	//   ----------------------------------------------
    	//      r8   r7   r6   r5   r4   r3   r2   r1   r0
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. 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)
  9. src/fmt/fmt_test.go

    		newi       int
    	}{
    		{"a123", 0, 4, 0, false, 0},
    		{"1234", 1, 1, 0, false, 1},
    		{"123a", 0, 4, 123, true, 3},
    		{"12a3", 0, 4, 12, true, 2},
    		{"1234", 0, 4, 1234, true, 4},
    		{"1a234", 1, 3, 0, false, 1},
    	}
    	for _, tt := range testCases {
    		num, isnum, newi := Parsenum(tt.s, tt.start, tt.end)
    		if num != tt.num || isnum != tt.isnum || newi != tt.newi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  10. 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