Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,002 for batches (0.18 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml

    apiVersion: batch/v1
    kind: Job
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
        fieldsV1: {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1.CronJob.yaml

    apiVersion: batch/v1
    kind: CronJob
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
        fieldsV1: {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.yaml

    apiVersion: batch/v1
    kind: CronJob
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
        fieldsV1: {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.yaml

    apiVersion: batch/v1
    kind: Job
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
        fieldsV1: {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  5. src/regexp/find_test.go

    	switch {
    	case test.matches == nil && result == nil:
    		// ok
    	case test.matches == nil && result != nil:
    		t.Errorf("expected no match; got one: %s", test)
    	case test.matches != nil && result == nil:
    		t.Errorf("expected match; got none: %s", test)
    	case len(test.matches) != len(result):
    		t.Errorf("expected %d matches; got %d: %s", len(test.matches), len(result), test)
    	case test.matches != nil && result != nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 15:28:50 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  6. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

            def implicitVariants = candidates.collect { it.first() }
            def configurationMatches = schema.matcher().matches(implicitVariants, requested, explanationBuilder)
    
            // This test is checking only for successful (single) matches. If we matched multiple configurations
            // in the first round, something is wrong here. Fail before attempting the second round of variant matching.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

            expect:
            matcher.matches([candidate1, candidate2], requested, explanationBuilder) == [candidate1, candidate2]
    
            matcher.matches([candidate1], requested, explanationBuilder) == [candidate1]
            matcher.isMatching(candidate1, requested)
    
            matcher.matches([candidate2], requested, explanationBuilder) == [candidate2]
            matcher.isMatching(candidate2, requested)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   natural numbers.
    //
    //     c     matches any literal character c
    //     \\d   matches any decimal digit
    //     \\D   matches any character that's not a decimal digit
    //     \\f   matches \f
    //     \\n   matches \n
    //     \\r   matches \r
    //     \\s   matches any ASCII whitespace, including \n
    //     \\S   matches any character that's not a whitespace
    //     \\t   matches \t
    //     \\v   matches \v
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelector.java

                return matches.get(0).getArtifacts();
            } else if (matches.size() > 1) {
                // Request is ambiguous. Rerun matching again, except capture an explanation this time for reporting.
                TraceDiscardedVariants newExpBuilder = new TraceDiscardedVariants();
                matches = matcher.matches(variants, componentRequested, newExpBuilder);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 13:33:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

    }
    
    // ResourcePolicyRule is a predicate that matches some resource
    // requests, testing the request's verb and the target resource. A
    // ResourcePolicyRule matches a resource request if and only if: (a)
    // at least one member of verbs matches the request, (b) at least one
    // member of apiGroups matches the request, (c) at least one member of
    // resources matches the request, and (d) either (d1) the request does
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top