Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 636 for repeated (0.45 sec)

  1. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated ContainerImage images = 8;
    
      // List of attachable volumes in use (mounted) by the node.
      // +optional
      // +listType=atomic
      repeated string volumesInUse = 9;
    
      // List of volumes that are attached to the node.
      // +optional
      // +listType=atomic
      repeated AttachedVolume volumesAttached = 10;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.out

         +--- com.google.errorprone:error_prone_annotations:2.3.4
         \--- com.google.j2objc:j2objc-annotations:1.3
    
    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics.proto

        float lower_bound = 2;
    
        // hist_freq[i] saves frequency of range [bins[i], bins[i + 1]).
        // bins[i]     = lower_bound + bin_width * i
        // bins[i + 1] = lower_bound + bin_width * (i + 1)
        repeated float hist_freq = 3;
      }
    
      MinMaxStatistics min_max_statistics = 1;
      AverageMinMaxStatistics average_min_max_statistics = 2;
      HistogramStatistics histogram_statistics = 3;
    }
    
    message CalibrationStatisticsMap {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/ExponentialBackoff.java

            public abstract boolean isSuccessful();
    
            public abstract T getValue();
    
            /**
             * Creates a result that indicates that the operation was successful and should not be repeated.
             */
            public static <T> Result<T> successful(final T value) {
                if (value == null) {
                    throw new IllegalArgumentException();
                }
                return new Result<T>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:49:35 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/apiapproval/apiapproval_controller.go

    	inCustomResourceDefinition, err := c.crdLister.Get(key)
    	if apierrors.IsNotFound(err) {
    		return nil
    	}
    	if err != nil {
    		return err
    	}
    
    	// avoid repeated calculation for the same annotation
    	protectionAnnotationValue := inCustomResourceDefinition.Annotations[apiextensionsv1.KubeAPIApprovedAnnotation]
    	c.lastSeenProtectedAnnotationLock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top