Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 347 for JSpecify (0.11 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ToolingModelContract.java

     * Basically polymorphism isn't supported by default in TAPI client-side model instances.
     * This is what this annotation can be used to fix. We can use it to mark the base model
     * interface ({@code Animal} in the above example) and specify which of its subtypes
     * should be polymorpically handled on the TAPI client-side.
     * <p>
     * Let's say we define the {@code Animal} model interface like this:
     * <pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 08:48:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.h

    // CustomOpInfo contains info of its corresponding CustomOp registered in the
    // CustomOpMap. 'quantizable_input_indices' is used to determine which indices
    // of the CustomOp are quantizable. 'is_weight_only' is used specify whether the
    // custom op is quantized only for storage and dequantized at runtime.
    // 'no_side_effect' is used to determine whether the op can be pruned if
    // considered as trivially dead.
    struct CustomOpInfo {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. pkg/config/validation/virtualservice.go

    		// only delegate can be specified
    		if http.Redirect != nil {
    			errs = appendErrors(errs, fmt.Errorf("root HTTP route %s must not specify redirect", http.Name))
    		}
    		if http.Route != nil {
    			errs = appendErrors(errs, fmt.Errorf("root HTTP route %s must not specify route", http.Name))
    		}
    		return errs
    	}
    
    	// This is to check delegate conflict
    	if routeType == DelegateRoute {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. docs/distributed/distributed-from-config-file.sh

    	consolePort="$((s3Port + 1000))"
    
    	cat <<EOF >/tmp/minio.configfile.$i
    version: v1
    address: ':${s3Port}'
    console-address: ':${consolePort}'
    rootUser: 'minr0otUS2r'
    rootPassword: 'pBU94AGAY85e'
    pools: # Specify the nodes and drives with pools
      -
         - 'http://localhost:9001/tmp/xl/node9001/mnt/disk{1...4}/'
         - 'http://localhost:9002/tmp/xl/node9002/mnt/disk{1,2,3,4}/'
      -
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         * no explicit value or value provider has been specified, then the convention will be returned as the value of
         * the property (when queried).
         *
         * <p>
         * This method can be used to specify that the property does not have a default value, by passing it
         * {@code null}.
         * </p>
         *
         * @param value The convention value, or {@code null} if the property should have no default value.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. pkg/features/kube_features.go

    	// alpha: v1.25
    	// beta: v1.26
    	//
    	// Allow users to specify handling of pod failures based on container exit codes
    	// and pod conditions.
    	JobPodFailurePolicy featuregate.Feature = "JobPodFailurePolicy"
    
    	// owner: @kannon92
    	// kep : https://kep.k8s.io/3939
    	// alpha: v1.28
    	// beta: v1.29
    	//
    	// Allow users to specify recreating pods of a job only when
    	// pods have fully terminated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    [[sec:using_an_init_script]]
    == Invoking an init script
    
    There are several ways to invoke an init script (in order of priority):
    
    1. *Specify a file on the command line* with the option `-I` or `--init-script` followed by the path to the script.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. .github/workflows/codeql-analysis.yml

        # Initializes the CodeQL tools for scanning.
        - name: Initialize CodeQL
          uses: github/codeql-action/init@v3
          with:
            languages: ${{ matrix.language }}
            tools: latest
            # If you wish to specify custom queries, you can do so here or in a config file.
            # By default, queries listed here will override any specified in a config file.
            # Prefix the list here with "+" to use these queries and those in the config file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// +optional
    	UnsafeSkipCAVerification bool `json:"unsafeSkipCAVerification,omitempty"`
    }
    
    // FileDiscovery is used to specify a file or URL to a kubeconfig file from which to load cluster information
    type FileDiscovery struct {
    	// KubeConfigPath is used to specify the actual file path or URL to the kubeconfig file from which to load cluster information
    	KubeConfigPath string `json:"kubeConfigPath"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/export_utils.h

        mlir::Operation* inst, llvm::StringRef name);
    
    // Converts MLIR attributes with values to their tensorflow equivalent.
    // "name" and "device" attributes are ignored by default. Use attrs_to_ignore to
    // specify any other attributes that should be ignored.
    Status ConvertAttributes(
        llvm::ArrayRef<mlir::NamedAttribute> attrs,
        const absl::flat_hash_set<absl::string_view>& attrs_to_ignore,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top