Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,622 for variable1 (0.22 sec)

  1. 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)
  2. src/cmd/compile/internal/types2/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.7K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/settings.md

    # Settings and Environment Variables
    
    In many cases your application could need some external settings or configurations, for example secret keys, database credentials, credentials for email services, etc.
    
    Most of these settings are variable (can change), like database URLs. And many could be sensitive, like secrets.
    
    For this reason it's common to provide them in environment variables that are read by the application.
    
    ## Environment Variables
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/plugin.go

    	}
    	return celExpressionAccessor
    }
    
    func convertv1beta1Variables(variables []v1.Variable) []cel.NamedExpressionAccessor {
    	namedExpressions := make([]cel.NamedExpressionAccessor, len(variables))
    	for i, variable := range variables {
    		namedExpressions[i] = &Variable{Name: variable.Name, Expression: variable.Expression}
    	}
    	return namedExpressions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/mark_initialized_variables.h

    namespace mlir {
    namespace tf_saved_model {
    // Marks all variables in 'function' whether they are initialized
    // in 'session' or not by setting an attribute named 'is_initialized'
    // on each variable op with value true/false based on variable is initialized
    // in the session or not.
    // If 'session' is NULL the function is no-op.
    // Returns failure in case fetching variables from session failed, success
    // otherwise.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/mlir_import_options.h

      bool lift_variables = true;
    
      // Keeps the variables in initializers before lifting variables (when
      // `lift_variables == true`) or newly adding variable initialization patterns
      // in the initializer functions. One might want to set this to `true` because
      // the `RemoveVariablesInSessionInitializerPass` pass, which runs otherwise,
      // may unexpectedly also remove the initialization patterns for non-variable
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 20 13:19:26 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

        avoid repeatedly formatting variables back and forth. The desired formatting
        is determined by TPU program compilation, so this pass does not include how
        to reformat the variables, but only inserts general TPUReshardVariablesOps in
        proper places, and TPUReshardVariablesOps interpret the compilation.
    
        The core idea of this optimization is to keep track of the formatting state
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/doc.go

    // iteration and possibly observe the wrong value of the variable.
    //
    // Note: An iteration variable can only outlive a loop iteration in Go versions <=1.21.
    // In Go 1.22 and later, the loop variable lifetimes changed to create a new
    // iteration variable per loop iteration. (See go.dev/issue/60078.)
    //
    // In this example, all the deferred functions run after the loop has
    // completed, so all observe the final value of v [<go1.22].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. tensorflow/c/kernels_experimental.h

    // Expose higher level temporary variable operator for Pluggable vendors to
    // implement in the plugin for destroying temporary variables. The API takes in
    // the context with indices for the input and variable name. This function will
    // return an error when either of the following conditions is met:
    //   1. `input data type` is not ref type
    //   2. Cannot find temporary variable by name in arguments
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 14:44:39 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. tensorflow/cc/tools/freeze_saved_model_test.cc

                                      &inputs, &outputs));
    
        // If using normal variables there should be 3 nodes in the resulting
        // graph_def. If using resource variables there should be 4 nodes in the
        // resulting graph_def if use_identity == false, otherwise 5 variables.
        // In both cases, none should be variables.
        size_t expected_nodes = use_resource ? (use_identity ? 5 : 4) : 3;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
Back to top