Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 479 for coordinator (0.25 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/coordination.k8s.io.v1.Lease.json

    {
      "kind": "Lease",
      "apiVersion": "coordination.k8s.io/v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/coordination.k8s.io.v1.Lease.yaml

    apiVersion: coordination.k8s.io/v1
    kind: Lease
    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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/coordination.k8s.io.v1.Lease.json

    {
      "kind": "Lease",
      "apiVersion": "coordination.k8s.io/v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolver.java

            return resolve(ArtifactResolverRequest.build(session, coordinates));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    // With a topology device coordinate to task and device mapping, device
    // assignment device coordinates can then be mapped to task and device for TPU
    // devices. The device assignment array is also validated.
    //
    // A valid device assignment array must have:
    //  - device coordinates within the topology mesh shape
    //  - no duplicate device coordinates
    //  - number of device coordinates (in tuple 3) match number 'num_replicas' *
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolver.java

                }
    
                T coordinates = componentCoordinates.get(component);
                if (!coordinatesSeen.add(coordinates)) {
                    throw new InvalidUserDataException("Multiple child components may not share the same coordinates: " + coordinates);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ResolutionBackedVariantDependencyResolver.java

     * resolved coordinates for a given dependency.
     *
     * <p>The configuration being resolved should declare the same dependencies as the variant
     * being published. Then, each outgoing edge of the analyzed resolution result will correspond
     * to each declared dependency on the published variant. We build a mapping from requested
     * coordinates to resolved coordinates. Then, when resolving individual variant coordinates,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/edwards25519_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  9. src/crypto/elliptic/nistec.go

    	// (0, 0) is by convention the point at infinity, which can't be represented
    	// in affine coordinates. See Issue 37294.
    	if x.Sign() == 0 && y.Sign() == 0 {
    		return curve.newPoint(), nil
    	}
    	// Reject values that would not get correctly encoded.
    	if x.Sign() < 0 || y.Sign() < 0 {
    		return p, errors.New("negative coordinate")
    	}
    	if x.BitLen() > curve.params.BitSize || y.BitLen() > curve.params.BitSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 16:19:34 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolverTest.groovy

    Found the following publications in <project>:
      - Publication 'mock' with coordinates pub-group:pub-name:pub-version
      - Publication 'pub2' with coordinates other-group:other-name:other-version""")
        }
    
        def "resolve fails when target project has multiple component publications with different coordinates"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top