Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,622 for variable1 (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/target.pbtxt

        key: "shared_name"
        value {
          s: ""
        }
      }
    }
    node {
      name: "Variable/Assign"
      op: "Assign"
      input: "Variable"
      input: "Variable/initial_value"
      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "_class"
        value {
          list {
            s: "loc:@Variable"
          }
        }
      }
      attr {
        key: "use_locking"
        value {
          b: true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables.cc

          // Empty string means the variable isn't applicable for saving.
          saved_variable_shared_names.emplace_back(
              std::move(*variable_shared_name));
          VLOG(1) << "Saved a variable with shared_name: " << *variable_shared_name;
        }
      }
    
      // Exit early if no variables are added.
      if (saved_variable_shared_names.empty()) {
        LOG(INFO) << "No variables are saved to checkpoint";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:36:55 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/bundle_v2_test.cc

        for (const auto& restored_var : restored_vars) {
          // Each restored var should match a SavedObjectGraph node with the same
          // variable name.
          const auto& saved_node =
              bundle->saved_object_graph().nodes(std::get<0>(restored_var));
          EXPECT_EQ(std::get<1>(restored_var), saved_node.variable().name());
    
          // And should be able to load it from the tensor_bundle.
          Tensor value;
          TF_ASSERT_OK(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 17:51:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. test/fixedbugs/issue30087.go

    	var a, b = 1    // ERROR "assignment mismatch: 2 variables but 1 value|wrong number of initializations|cannot initialize"
    	_ = 1, 2        // ERROR "assignment mismatch: 1 variable but 2 values|number of variables does not match|cannot assign"
    	c, d := 1       // ERROR "assignment mismatch: 2 variables but 1 value|wrong number of initializations|cannot initialize"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:07:00 UTC 2023
    - 734 bytes
    - Viewed (0)
  5. internal/config/errors.go

    	)
    
    	ErrMissingEnvCredentialSecretKey = newErrFn(
    		"Missing credential environment variable, \""+EnvSecretKey+"\"",
    		"Environment variables \""+EnvSecretKey+"\" and \""+EnvAccessKey+"\" are deprecated",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 18 22:25:32 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/lazy/lazy_test.go

    	variablesMap.Append("unused", func(_ *MapValue) ref.Val {
    		t.Fatalf("unused variable must not be evaluated")
    		return nil
    	})
    
    	exp = "variables.dict.a + ' ' + variables.dict.a + ' ' + variables.foo"
    	v, err = compileAndRun(env, activation, exp)
    	if err != nil {
    		t.Fatalf("%q: %v", exp, err)
    	}
    	if v.Value().(string) != "a a foo-string" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/expvar/expvar.go

    // Package expvar provides a standardized interface to public variables, such
    // as operation counters in servers. It exposes these variables via HTTP at
    // /debug/vars in JSON format. As of Go 1.22, the /debug/vars request must
    // use GET.
    //
    // Operations to set or modify these public variables are atomic.
    //
    // In addition to adding the HTTP handler, this package registers the
    // following variables:
    //
    //	cmdline   os.Args
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/go/types/stmt.go

    			// If lhs exists, declare a corresponding variable in the case-local scope.
    			if lhs != nil {
    				// spec: "The TypeSwitchGuard may include a short variable declaration.
    				// When that form is used, the variable is declared at the beginning of
    				// the implicit block in each clause. In clauses with a case listing
    				// exactly one type, the variable has that type; otherwise, the variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/FileReferenceFactory.java

    import java.util.HashMap;
    import java.util.Map;
    
    public class FileReferenceFactory {
        private final Map<String, File> variables = new HashMap<>();
    
        /**
         * Adds a path variable
         */
        public void addPathVariable(String name, File dir) {
            variables.put(name, dir);
        }
    
        /**
         * Creates a reference to the given file. Returns null for a null file.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.h

    // contains maps keyed by the node number of the SavedObjectGraph, and map to an
    // object of the corresponding type. So, if node 2 in the object graph is a
    // variable, PartiallyRevivedObjects.variables[2] exists, and corresponds to a
    // tensorflow::Variable object. The only exception to this is the
    // "signatures_map", which is keyed by the "signature" key
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 23:21:36 UTC 2020
    - 3.3K bytes
    - Viewed (0)
Back to top