Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 275 for toGetter (0.26 sec)

  1. internal/config/storageclass/storage-class.go

    	// shard value is the value per drive shard it
    	// will vary based on the parity that is configured
    	// for the STANDARD storage_class.
    	// inlining means data and metadata are written
    	// together in a single file i.e xl.meta
    	InlineBlockEnv = "MINIO_STORAGE_CLASS_INLINE_BLOCK"
    
    	// Supported storage class scheme is EC
    	schemePrefix = "EC"
    
    	// Min parity drives
    	minParityDrives = 0
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

      for (Node* n : graph->nodes()) {
        TF_ASSIGN_OR_RETURN(const bool is_xla_launch_node, is_xla_launch_node(*n));
        if (is_xla_launch_node) launch_nodes.push_back(n);
      }
    
      // Replaces each launch function call together with its neighboring
      // XlaClusterOutput nodes with a XlaLaunch node.
      for (Node* launch : launch_nodes) {
        TF_ASSIGN_OR_RETURN(const XlaFunctionInfo xla_function_info,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/README.md

        return %4 : tensor<2x1xf32>
      }
    ```
    
    #### Compute Costs Pass
    In the compute cost pass, we will essentially compute the cost of each op within
    the `FuncOp` based on the target-device cost model and sum them together.
    
    
    #### Pick Subgraphs Pass
    In the pick subgraphs pass, we will pick those subgraphs which can minimize the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    After covering how you can declare <<declaring_repositories.adoc#declaring-repositories,repositories>> and <<declaring_dependencies.adoc#declaring-dependencies,dependencies>>, it makes sense to explain how these declarations come together during dependency resolution.
    
    Dependency resolution is a process that consists of two phases, which are repeated until the dependency graph is complete:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	warningMetric.Add(1.0)
    	klog.V(4).ErrorS(err, "Please report this error in https://github.com/kubernetes/enhancements/issues/1710, together with full Pod yaml file")
    	return nil
    }
    
    // Return the volume plugin name, together with the CSI driver name if it's a CSI volume.
    func getVolumePluginNameWithDriver(plugin volume.VolumePlugin, spec *volume.Spec) string {
    	pluginName := plugin.GetPluginName()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.h

    // Discovering clusters of operations based on the policy.
    // -------------------------------------------------------------------------- //
    
    // Cluster groups together operations in the single basic block based on the
    // given clustering policy set. Clusters can be outlined into nested modules
    // later device specific compilation (e.g. for TFRT JIT compiler).
    struct Cluster {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/AbstractBiMap.java

         * Serialization stores the forward bimap, the inverse of this inverse.
         * Deserialization calls inverse() on the forward bimap and returns that
         * inverse.
         *
         * If a bimap and its inverse are serialized together, the deserialized
         * instances have inverse() methods that return the other.
         */
    
        @Override
        @ParametricNullness
        K checkKey(@ParametricNullness K key) {
          return inverse.checkValue(key);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

            options.addOption(Option.builder(Character.toString(NON_RECURSIVE))
                    .longOpt("non-recursive")
                    .desc(
                            "Do not recurse into sub-projects. When used together with -pl, do not recurse into sub-projects of selected aggregators")
                    .build());
            options.addOption(Option.builder(Character.toString(UPDATE_SNAPSHOTS))
                    .longOpt("update-snapshots")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

         *
         * <p>
         * While very similar in functionality to the regular {@link #map(Transformer) map} operation, this method
         * offers a convenient way of connecting together task inputs and outputs. (For a deeper understanding of
         * the topic see the <a href="https://docs.gradle.org/current/userguide/lazy_configuration.html">Lazy Configuration</a>
         * section of the Gradle manual.)</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. cmd/postpolicyform.go

    		Policies []struct {
    			Operator string
    			Key      string
    			Value    string
    		}
    		ContentLengthRange contentLengthRange
    	}
    }
    
    // implemented to ensure that duplicate keys in JSON
    // are merged together into a single JSON key, also
    // to remove any extraneous JSON bodies.
    //
    // Go stdlib doesn't support parsing JSON with duplicate
    // keys, so we need to use this technique to merge the
    // keys.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top