Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,846 for construction (0.41 sec)

  1. pkg/kube/client_config.go

    )
    
    const (
    	contextName  = "context0"
    	clusterName  = "cluster0"
    	authInfoName = "authInfo0"
    )
    
    var _ clientcmd.ClientConfig = &clientConfig{}
    
    // clientConfig is a utility that allows construction of a k8s ClientConfig from
    // a k8s rest.Config
    type clientConfig struct {
    	restConfig rest.Config
    }
    
    // NewClientConfigForRestConfig creates a new k8s clientcmd.ClientConfig from the given rest.Config.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 17 16:52:06 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/public/concrete_function.h

    // all function inputs in `inputs`, and must not add any additional inputs on
    // the returned op. (i.e. don't call TFE_OpAddInput or TFE_OpAddInputList).
    // The caller is responsible for deleting the returned TFE_Op. If op
    // construction fails, `status` will be non-OK and the returned pointer will be
    // null.
    // TODO(bmzhao): Remove this function in a subsequent change; Design + implement
    // a Function Execution interface for ConcreteFunction that accepts a tagged
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 27 06:55:27 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/Instantiator.java

     */
    @UsedByScanPlugin("test-retry")
    public interface Instantiator {
    
        /**
         * Create a new instance of T, using {@code parameters} as the construction parameters.
         *
         * @throws ObjectInstantiationException On failure to create the new instance.
         */
        <T> T newInstance(Class<? extends T> type, Object... parameters) throws ObjectInstantiationException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java

         *
         * This callback is intended to allow extensions to inject execution properties,
         * activate profiles and perform similar tasks that affect MavenProject
         * instance construction.
         *
         * @param session the Maven session
         * @throws MavenExecutionException in case of issue
         */
        // TODO This is too early for build extensions, so maybe just remove it?
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/hash_table_asset_v1.py

    # CHECK-SAME: shared_name = "[[hash_table:.*]]"
    # CHECK-NEXT: "tf.InitializeTableFromTextFileV2"([[R0]], [[ARG0]])
    
    
    def write_vocabulary_file(vocabulary):
      """Write temporary vocab file for module construction."""
      tmpdir = tempfile.mkdtemp()
      vocabulary_file = os.path.join(tmpdir, 'tokens.txt')
      with tf.io.gfile.GFile(vocabulary_file, 'w') as f:
        for entry in vocabulary:
          f.write(entry + '\n')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_executable_persistor.h

      // Saves the cache entry in the file directory supplied during the
      // construction of this class. Overwrites existing entries.
      Status SaveSerializedEntry(const XlaSerializedCacheEntry& entry) const;
    
      // Tries to read a cache entry given a `key` by searching the file directory
      // supplied during the construction of this class. Returns std::nullopt if no
      // cache entry is found.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/internal/DefaultReportContainerTest.groovy

        def setup() {
            container = createContainer {
                createReport("a")
                createReport("b")
                createReport("c")
            }
        }
    
        def "reports given at construction are available"() {
            when:
            container.configure { a {} }
    
            then:
            notThrown(MissingPropertyException)
        }
    
        def "container is immutable"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/inspector.go

    // Package inspector provides helper functions for traversal over the
    // syntax trees of a package, including node filtering by type, and
    // materialization of the traversal stack.
    //
    // During construction, the inspector does a complete traversal and
    // builds a list of push/pop events and their node type. Subsequent
    // method calls that request a traversal scan this list, rather than walk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ctrlflow/ctrlflow.go

    type CFGs struct {
    	defs      map[*ast.Ident]types.Object // from Pass.TypesInfo.Defs
    	funcDecls map[*types.Func]*declInfo
    	funcLits  map[*ast.FuncLit]*litInfo
    	pass      *analysis.Pass // transient; nil after construction
    }
    
    // CFGs has two maps: funcDecls for named functions and funcLits for
    // unnamed ones. Unlike funcLits, the funcDecls map is not keyed by its
    // syntax node, *ast.FuncDecl, because callMayReturn needs to do a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h

                                     Location loc) override;
    
      typedef std::function<void(TensorFlowDialect &dialect)> AdditionalOpFunction;
    
      // Register an op registration hook which is invoked during construction.
      //
      // A hook may use the public addOperations() method to add additional
      // operations to the dialect. Hooks will only apply to subsequent
      // instantations of the Dialect/MLIRContext.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top