Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,960 for usedBy (0.16 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// ImageRepository sets the container registry to pull images from.
    	// If empty, `registry.k8s.io` will be used by default; in case of kubernetes version is a CI build (kubernetes version starts with `ci/`)
    	// `gcr.io/k8s-staging-ci-images` will be used as a default for control plane components and for kube-proxy, while `registry.k8s.io`
    	// will be used for all the other images.
    	// +optional
    	ImageRepository string `json:"imageRepository,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    Used for compiling against the library.
    This configuration is meant to be used by consumers, to retrieve all the elements necessary to compile against the library.
    
    `__variant__LinkElements` (e.g. `debugLinkElements` and `releaseLinkElements`) extends `main__Variant__Implementation`::
    Used for linking against the library.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/types.go

    	// ImageRepository sets the container registry to pull images from.
    	// If empty, `registry.k8s.io` will be used by default; in case of kubernetes version is a CI build (kubernetes version starts with `ci/`)
    	// `gcr.io/k8s-staging-ci-images` will be used as a default for control plane components and for kube-proxy, while `registry.k8s.io`
    	// will be used for all the other images.
    	ImageRepository string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Pmd.java

            }
        }
    
        /**
         * Validates the number of threads used by PMD.
         *
         * @param value the number of threads used by PMD
         */
        private static void validateThreads(int value) {
            if (value < 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// ImageRepository sets the container registry to pull images from.
    	// If empty, `registry.k8s.io` will be used by default; in case of kubernetes version is a CI build (kubernetes version starts with `ci/`)
    	// `gcr.io/k8s-staging-ci-images` will be used as a default for control plane components and for kube-proxy, while `registry.k8s.io`
    	// will be used for all the other images.
    	// +optional
    	ImageRepository string `json:"imageRepository,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. pkg/registry/core/service/strategy_test.go

    		},
    		{
    			name:       "mixed protocol enabled, field not used in old, used in new",
    			svc:        makeServiceWithConditions([]metav1.Condition{}),
    			oldSvc:     makeServiceWithConditions(nil),
    			compareSvc: makeServiceWithConditions([]metav1.Condition{}),
    		},
    		{
    			name:       "mixed protocol enabled, field used in old, not used in new",
    			svc:        makeServiceWithConditions(nil),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    Used for compiling against the library.
    This configuration is meant to be used by consumers, to retrieve all the elements necessary to compile against the library.
    
    `__variant__LinkElements` (e.g. `debugLinkElements` and `releaseLinkElements`) extends `main__Variant__Implementation`::
    Used for linking against the library.
    This configuration is meant to be used by consumers, to retrieve all the elements necessary to link against the library.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepository.java

     * <p>
     * When used to resolve metadata and artifact files, all available patterns will be searched.
     * <p>
     * When used to upload metadata and artifact files, only a single, primary pattern will be used:
     * <ol>
     * <li>If a URL is specified via {@link #setUrl(Object)} then that URL will be used for upload, combined with the applied {@link #layout(String)}.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 02 20:32:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. pkg/registry/core/service/portallocator/allocator_test.go

    	}
    	if f := r.Free(); f != 1 {
    		t.Errorf("unexpected free %d", f)
    	}
    	if f := r.Used(); f != 200 {
    		t.Errorf("unexpected used %d", f)
    	}
    	if err := r.Allocate(released); err != nil {
    		t.Fatal(err)
    	}
    	if f := r.Free(); f != 0 {
    		t.Errorf("unexpected free %d", f)
    	}
    	if f := r.Used(); f != 201 {
    		t.Errorf("unexpected used %d", f)
    	}
    }
    
    func TestAllocateReserved(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/deadstore.go

    			// for open-coded defers from being removed (since they
    			// may not be used by the inline code, but will be used by
    			// panic processing).
    			n, ok := v.Aux.(*ir.Name)
    			if !ok || n.Class != ir.PAUTO {
    				return
    			}
    			if !used.Has(n) {
    				used.Add(n)
    				changed = true
    			}
    			return
    		case OpStore, OpMove, OpZero:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top