Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 615 for PRIMARY (0.14 sec)

  1. gradle-white-primary.png

    gradle-white-primary.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 24 10:43:55 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. gradle-dark-green-primary.png

    gradle-dark-green-primary.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 24 10:43:55 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. tests/integration/iop-externalistiod-primary-integration-test-defaults.yaml

    Frank Budinsky <******@****.***> 1651788417 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 05 22:06:57 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/attributes/HierarchicalAttributeContainerTest.groovy

            def fallback = mutable()
            def primary = mutable()
            def joined = new HierarchicalAttributeContainer(attributesFactory, fallback, primary)
    
            when:
            fallback.attribute(one, "fallback")
            fallback.attributeProvider(two, Providers.of("fallback"))
            primary.attribute(one, "primary")
    
            then:
            joined.getAttribute(one) == "primary"
            joined.getAttribute(two) == "fallback"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 27 04:00:15 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/attributes/HierarchicalAttributeContainer.java

        private final AttributeContainerInternal primary;
    
        public HierarchicalAttributeContainer(ImmutableAttributesFactory attributesFactory, AttributeContainerInternal fallback, AttributeContainerInternal primary) {
            this.attributesFactory = attributesFactory;
            this.fallback = fallback;
            this.primary = primary;
        }
    
        @Override
        public Set<Attribute<?>> keySet() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 27 04:00:15 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. prow/config/topology/multicluster-large.json

    [
      {
        "clusterName": "primary-1",
        "podSubnet": "10.10.0.0/16",
        "svcSubnet": "10.255.10.0/24",
        "network": "network-1"
      },
      {
        "clusterName": "remote",
        "podSubnet": "10.20.0.0/16",
        "svcSubnet": "10.255.20.0/24",
        "network": "network-1",
        "controlPlaneClusterName": "primary"
      },
      {
        "clusterName": "primary-2",
        "podSubnet": "10.30.0.0/16",
        "svcSubnet": "10.255.30.0/24",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 22 21:11:06 UTC 2021
    - 787 bytes
    - Viewed (0)
  7. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/multilock.go

    		// Lock is held by old client
    		if kerrors.IsNotFound(err) && primary.HolderIdentity != ml.Identity() {
    			return primary, primaryRaw, nil
    		}
    		return nil, nil, err
    	}
    
    	if primary.HolderIdentity != secondary.HolderIdentity {
    		primary.HolderIdentity = UnknownLeader
    		primaryRaw, err = json.Marshal(primary)
    		if err != nil {
    			return nil, nil, err
    		}
    	}
    	return primary, ConcatRawRecord(primaryRaw, secondaryRaw), nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.css

    h4,.uk-offcanvas-bar h5,.uk-offcanvas-bar h6,.uk-overlay-primary .uk-h1,.uk-overlay-primary .uk-h2,.uk-overlay-primary .uk-h3,.uk-overlay-primary .uk-h4,.uk-overlay-primary .uk-h5,.uk-overlay-primary .uk-h6,.uk-overlay-primary .uk-heading-2xlarge,.uk-overlay-primary .uk-heading-large,.uk-overlay-primary .uk-heading-medium,.uk-overlay-primary .uk-heading-small,.uk-overlay-primary .uk-heading-xlarge,.uk-overlay-primary h1,.uk-overlay-primary h2,.uk-overlay-primary h3,.uk-overlay-primary h4,.uk-overlay-primary...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 257.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/resource/fallback_query_param_verifier.go

    func NewFallbackQueryParamVerifier(primary Verifier, secondary Verifier) Verifier {
    	return &fallbackQueryParamVerifier{
    		primary:   primary,
    		secondary: secondary,
    	}
    }
    
    // HasSupport returns an error if the passed GVK does not support the
    // query param (fieldValidation), as determined by the primary and
    // secondary OpenAPI endpoints. The primary endoint is checked first,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 19:13:54 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/attributes/ImmutableAttributesFactory.java

         * Returns a new attribute container which attaches a primary container and a fallback container. Changes
         * in either container are reflected in the returned container.
         * <p>
         * Despite the mutability of either {@code fallback} or {@code primary}, this method will always return
         * a non-immutable container. All mutable operations are forwarded to the primary. Therefore, if the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 27 04:00:15 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top