Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for variable1 (0.19 sec)

  1. src/cmd/go/alldocs.go

    // decisions about whether to reuse a cached test result.
    //
    // # Environment variables
    //
    // The go command and the tools it invokes consult environment variables
    // for configuration. If an environment variable is unset or empty, the go
    // command uses a sensible default setting. To see the effective setting of
    // the variable <NAME>, run 'go env <NAME>'. To change the default setting,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        for resource variables where only writes are present so later in the pipeline
        such resource variables can be fused with generated `tf.TPUExecute` ops, which
        only supports resource variable read or read + write. For all TPU computations,
        resource variables are required to be initialized prior to execution. Write only
        resource variable uses can be generated currently via packed tensor uses.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation_test.go

    				Variables: []admissionregistration.Variable{
    					{
    						Name:       "foo",
    						Expression: "1 + 1",
    					},
    					{
    						Name:       "bar",
    						Expression: "variables.foo + 1",
    					},
    				},
    				Validations: []admissionregistration.Validation{
    					{
    						Expression: "variables.foo > 1", // correct
    					},
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      prepare-kube-proxy-manifest-variables "${src_file}"
    
      cp "${src_file}" /etc/kubernetes/manifests
    }
    
    # Replaces the variables in the etcd manifest file with the real values, and then
    # copy the file to the manifest dir
    # $1: value for variable 'suffix'
    # $2: value for variable 'port'
    # $3: value for variable 'server_port'
    # $4: value for variable 'cpulimit'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          }
        } else if (object.kind_case() == SavedObject::kVariable) {
          const SavedVariable& variable = object.variable();
          // Find the trackable in the side data structure.
          auto variable_trackable_it = restored_objects.find(node_id);
    
          TF_ASSIGN_OR_RETURN(
              auto type, ConvertToMlirTensorType(variable.shape(), variable.dtype(),
                                                 &builder));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        # Tests that there are variables in the model.
        variable_node_defs = _find_variables(output_graphdef)
        self.assertLen(variable_node_defs, 1)
    
        # Reads the variables from the checkpoint file and matches with the
        # variables found in the graph.
        checkpoint_path = os.path.join(
            self._output_saved_model_path, 'variables', 'variables'
        )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    			}
    		}
    	}
    
    	// Determine the final values of variables:
    	//
    	// 1.  Determine the final value of each variable:
    	//     a.  If the variable's Value is set, expand the `$(var)` references to other
    	//         variables in the .Value field; the sources of variables are the declared
    	//         variables of the container and the service environment variables
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    		if cfg.Goos == "aix" {
    			return []string{"-maix64"}
    		}
    	}
    	return nil
    }
    
    // envList returns the value of the given environment variable broken
    // into fields, using the default value when the variable is empty.
    //
    // The environment variable must be quoted correctly for
    // quoted.Split. This should be done before building
    // anything, for example, in BuildInit.
    func envList(key, def string) []string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      );
    }
    
    def TFL_VarHandleOp : TFL_Op<"var_handle", []> {
      let summary = "Returns a handle to a variable resource from its name.";
    
      let description = [{
        Returns a handle for a variable resource from its name.
        container: the container this variable is placed in.
        shared_name: the name by which this variable is referred to.
      }];
    
      let arguments = (ins
        DefaultValuedStrAttr<StrAttr, "">:$container,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    namespace {
    
    // Make casts before a `WhileRegion` be explicit. After this rewrite a
    // `WhileRegion` operand will have the same type as its corresponding iteration
    // variable. An operand and its iteration variables with the same type enables
    // WhileRegionEliminatePassthrough.
    struct WhileRegionExplicitCast : public OpRewritePattern<WhileRegionOp> {
      using OpRewritePattern<WhileRegionOp>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top