Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 317 for repeated (0.12 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // The name of each attribute must be unique.
      //
      // +listType=atomic
      // +optional
      repeated NamedResourcesAttribute attributes = 2;
    }
    
    // NamedResourcesIntSlice contains a slice of 64-bit integers.
    message NamedResourcesIntSlice {
      // Ints is the slice of 64-bit integers.
      //
      // +listType=atomic
      repeated int64 ints = 1;
    }
    
    // NamedResourcesRequest is used in ResourceRequestModel.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.proto

      repeated NetworkAddress addresses = 4;
      // Ports for the service.
      // The target_port may be overridden on a per-workload basis.
      repeated Port ports = 5;
      // Optional; if set, the SAN to verify for TLS connections.
      // Typically, this is not set and per-workload identity is used to verify
      // TODO: support this field
      repeated string subject_alt_names = 6;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

      // representative dataset used to calibrate a function.
      // If `QuantizationConfig.calibration_options.representative_datasets` is also
      // provided then this field will be ignored.
      repeated RepresentativeDatasetConfig representative_datasets = 1;
    
      // NOTE: This field will be deprecated.
      // Granularity should be controlled using `Method`, deprecating this field
      // once available.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/generated.proto

    // been accounted in Job status counters.
    message UncountedTerminatedPods {
      // succeeded holds UIDs of succeeded Pods.
      // +listType=set
      // +optional
      repeated string succeeded = 1;
    
      // failed holds UIDs of failed Pods.
      // +listType=set
      // +optional
      repeated string failed = 2;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authentication/v1/types.go

    	// ImpersonateUserExtraHeaderPrefix is a prefix for any header used to impersonate an entry in the
    	// extra map[string][]string for user.Info.  The key will be every after the prefix.
    	// It can be repeated multiplied times for multiple map keys and the same key can be repeated multiple
    	// times to have multiple elements in the slice under a single key
    	ImpersonateUserExtraHeaderPrefix = "Impersonate-Extra-"
    )
    
    // +genclient
    // +genclient:nonNamespaced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is the list of ControllerRevisions
      repeated ControllerRevision items = 2;
    }
    
    // DaemonSet represents the configuration of a daemon set.
    message DaemonSet {
      // Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

      } else {
        output->Reserve(attr.getNumElements());
        for (auto value : attr.getValues<T>()) output->AddAlreadyReserved(value);
      }
    }
    
    // Converts an MLIR elements attribute and adds it to specified repeated field.
    template <typename T, typename Cord>
    void ConvertFloatElementsAttr(const mlir::DenseElementsAttr attr,
                                  protobuf::RepeatedField<T>* output,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSetMultimap.java

        builder.put(k1, v1);
        return builder.build();
      }
    
      /**
       * Returns an immutable multimap containing the given entries, in order. Repeated occurrences of
       * an entry (according to {@link Object#equals}) after the first are ignored.
       */
      public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1, K k2, V v2) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/stmt0.go

    	_ = &m /* ERROR "cannot take address" */ ["foo"].x
    }
    
    func issue6766a() {
    	a, a /* ERROR "a repeated on left side of :=" */ := 1, 2
    	_ = a
    	a, b, b /* ERROR "b repeated on left side of :=" */ := 1, 2, 3
    	_ = b
    	c, c /* ERROR "c repeated on left side of :=" */, b := 1, 2, 3
    	_ = c
    	a, b := /* ERROR "no new variables" */ 1, 2
    }
    
    func shortVarDecls1() {
    	const c = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

                    }
                  }
                });
    
        assertTrue(a.compareAndSet(0, 1.0, 2.0));
        awaitTermination(t);
        assertBitEquals(3.0, a.get(0));
      }
    
      /** repeated weakCompareAndSet succeeds in changing value when equal to expected */
      public void testWeakCompareAndSet() {
        AtomicDoubleArray aa = new AtomicDoubleArray(SIZE);
        for (int i : new int[] {0, SIZE - 1}) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top