Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 279 for Usages (0.21 sec)

  1. 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_inbound.go

    type inboundChainConfig struct {
    	// clusterName defines the destination cluster for this chain
    	clusterName string
    	// port defines the port configuration for this chain. Note that there is a Port and TargetPort;
    	// most usages should just use TargetPort. Port is mostly used for legacy compatibility and
    	// telemetry.
    	port model.ServiceInstancePort
    	// bind determines where (IP) this filter chain should bind. Note: typically we just end up using
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Streams.java

       * between elements will be made, but the order in which those pairs of elements are passed to the
       * consumer is <i>not</i> defined.
       *
       * <p>Note that many usages of this method can be replaced with simpler calls to {@link #zip}.
       * This method behaves equivalently to {@linkplain #zip zipping} the stream elements into
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		u        []string
    		f        *field.Path
    		expected bool
    	}{
    		{[]string{}, nil, true},                            // supported (no usages)
    		{[]string{"signing", "authentication"}, nil, true}, // supported
    		{[]string{"something else"}, nil, false},           // usage not supported
    	}
    	for _, rt := range tests {
    		actual := ValidateTokenUsages(rt.u, rt.f)
    		if (len(actual) == 0) != rt.expected {
    			t.Errorf(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. cmd/data-scanner.go

    	// updateCurrentPath should be called whenever a new path is scanned.
    	updateCurrentPath func(string)
    }
    
    // Cache structure and compaction:
    //
    // A cache structure will be kept with a tree of usages.
    // The cache is a tree structure where each keeps track of its children.
    //
    // An uncompacted branch contains a count of the files only directly at the
    // branch level, and contains link to children branches or leaves.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  6. tensorflow/c/eager/tape.h

     private:
      TensorTape tensor_tape_;
      OpTape<BackwardFunction, TapeTensor> op_tape_;
      int64_t next_op_id_{0};
    
      // Map from tensor id to number of remaining usages (i.e. how many entries in
      // the tape refer to it); to aid in tape garbage collection.
      std::unordered_map<int64_t, int64_t> tensor_usage_;
    
      // If false, all activations are deleted in the first call to ComputeGradient.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

          - Required org.gradle.usage 'java-api' and found value 'java-api-jars'.
      - Variant 'runtimeElements' capability test:producer:unspecified:
          - Provides org.gradle.dependency.bundling 'external'
          - Required org.gradle.jvm.version '8' and found incompatible value '9'.
          - Required org.gradle.usage 'java-api' and found value 'java-runtime-jars'.
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  8. src/runtime/mpallocbits.go

    // the new searchIdx should be ignored.
    //
    // Note that if npages == 1, the two returned values will always be identical.
    func (b *pallocBits) find(npages uintptr, searchIdx uint) (uint, uint) {
    	if npages == 1 {
    		addr := b.find1(searchIdx)
    		return addr, addr
    	} else if npages <= 64 {
    		return b.findSmallN(npages, searchIdx)
    	}
    	return b.findLargeN(npages, searchIdx)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. src/runtime/mpagealloc.go

    		// npages is guaranteed to be no greater than pallocChunkPages here.
    		i := chunkIndex(p.searchAddr.addr())
    		if max := p.summary[len(p.summary)-1][i].max(); max >= uint(npages) {
    			j, searchIdx := p.chunkOf(i).find(npages, chunkPageIndex(p.searchAddr.addr()))
    			if j == ^uint(0) {
    				print("runtime: max = ", max, ", npages = ", npages, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  10. src/runtime/mgcsweep.go

    		if s, ok := sl.tryAcquire(s); ok {
    			// Sweep the span we found.
    			npages = s.npages
    			if s.sweep(false) {
    				// Whole span was freed. Count it toward the
    				// page reclaimer credit since these pages can
    				// now be used for span allocation.
    				mheap_.reclaimCredit.Add(npages)
    			} else {
    				// Span is still in-use, so this returned no
    				// pages to the heap and the span needs to
    				// move to the swept in-use list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top