Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,797 for usedBy (0.19 sec)

  1. cni/deployments/kubernetes/Dockerfile.install-cni

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1002 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization_lib.h

            signature_def_map,
        const tensorflow::quantization::PyFunctionLibrary& py_function_library);
    
    // Function used by the pywrap_quantization module to mirror
    // `::stablehlo::quantization::PopulateDefaults`.
    QuantizationConfig PywrapPopulateDefaults(
        const QuantizationConfig& user_provided_config);
    
    // Function used by the pywrap_quantization module to mirror
    // `::stablehlo::quantization::ExpandPresets`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         *
         * <p>
         * This method can also be used to discard the value of the property, by passing it {@code null}. When the
         * value is discarded (or has never been set in the first place), the convention (default value) for this
         * property, if specified, will be used to provide the value instead.
         * </p>
         *
         * @param value The value, can be null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      // DT_FLOAT, DT_HALF, DT_QINT8, and DT_QUINT8. When DT_HALF is used, the
      // `weight_quantization` flag needs to set to true. When DT_QUINT8 is used,
      // the `weight_quantization` flag needs to set to false.
      tensorflow::DataType inference_type = tensorflow::DT_FLOAT;
    
      // The input and output data type during inference. This flag is only used
      // when `inference_type` is different from DT_FLOAT. This flag can only be set
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	ObjectTTLAnnotationKey string = "node.alpha.kubernetes.io/ttl"
    
    	// annotation key prefix used to identify non-convertible json paths.
    	NonConvertibleAnnotationPrefix = "non-convertible.kubernetes.io"
    
    	kubectlPrefix = "kubectl.kubernetes.io/"
    
    	// LastAppliedConfigAnnotation is the annotation used to store the previous
    	// configuration of a resource for use in a three way diff by UpdateApplyAnnotation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. pkg/test/framework/resource/setup.go

    // limitations under the License.
    
    package resource
    
    // SetupFn is a function used for performing setup actions.
    type SetupFn func(ctx Context) error
    
    // TeardownFn is a function used for performing tear-down actions.
    type TeardownFn func(ctx Context)
    
    // ShouldSkipFn is a function used for performing skip actions; if it returns true a job is skipped
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1018 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	//      These lists are like maps in that their elements have a non-index key
    	//      used to identify them. Order is preserved upon merge. The map tag
    	//      must only be used on a list with elements of type object.
    	XListType *string
    
    	// x-kubernetes-map-type annotates an object to further describe its topology.
    	// This extension must only be used when type is object and may have 2 possible values:
    	//
    	// 1) `granular`:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.proto

      // CanonicalName for the workload. Used for telemetry.
      string canonical_name = 10;
      // CanonicalRevision for the workload. Used for telemetry.
      string canonical_revision = 11;
      // WorkloadType represents the type of the workload. Used for telemetry.
      WorkloadType workload_type = 12;
      // WorkloadName represents the name for the workload (of type WorkloadType). Used for telemetry.
      string workload_name = 13;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

    /**
     * Dependency scope.
     * This represents at which time the dependency will be used, for example, at compile time only,
     * at run time or at test time.  For a given dependency, the scope is directly derived from the
     * {@link org.apache.maven.api.model.Dependency#getScope()} and will be used when using {@link PathScope}
     * and the {@link org.apache.maven.api.services.DependencyResolver}.
     *
     * @since 4.0.0
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationApplication.kt

    import org.jetbrains.kotlin.psi.KtCallElement
    
    /**
     * Application of annotation to some declaration, type, or as argument inside another annotation.
     *
     * Some examples:
     * - For declarations: `@Deprecated("Should not be used") fun foo(){}`
     * - For types: `fun foo(x: List<@A Int>){}`
     * - Inside another annotation (`B` is annotation here): `@A(B()) fun foo(){}
     */
    public interface KaAnnotation : KaLifetimeOwner {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top