Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,622 for variable1 (0.26 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/EnvVariableInjection.groovy

            return new EnvVariableInjection() {
                @Override
                String getDescription() {
                    return "using environment variable"
                }
    
                @Override
                void setup(AbstractConfigurationCacheIntegrationTest test) {
                    test.executer.withEnvironmentVars(variables)
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/PathFactory.java

            Variable match = null;
            for (Variable variable : variables) {
                if (file.getAbsolutePath().equals(variable.getDir().getAbsolutePath())) {
                    match = variable;
                    break;
                }
                if (file.getAbsolutePath().startsWith(variable.getPrefix())) {
                    if (match == null || variable.getPrefix().startsWith(match.getPrefix())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition.go

    		CompositionEnv: context,
    	}
    }
    
    func (c *CompositedCompiler) CompileAndStoreVariables(variables []NamedExpressionAccessor, options OptionalVariableDeclarations, mode environment.Type) {
    	for _, v := range variables {
    		_ = c.CompileAndStoreVariable(v, options, mode)
    	}
    }
    
    func (c *CompositedCompiler) CompileAndStoreVariable(variable NamedExpressionAccessor, options OptionalVariableDeclarations, mode environment.Type) CompilationResult {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/tests/generate_testdata.py

      def __init__(self):
        self.arr1 = [1.]
        self.const_arr = [constant_op.constant(1.)]
        self.var_arr = [variables.Variable(1.), variables.Variable(2.)]
        self.dict1 = {"a": 1.}
        self.var_dict = {"a": variables.Variable(1.), "b": variables.Variable(2.)}
    
    
    class SimpleModel(module.Module):
      """A simple model used for exercising the C++ API."""
    
      @def_function.function(input_signature=[
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 15 16:58:38 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  5. test/fixedbugs/issue50372.go

            for i, j, k, l = range s {} // ERROR "range clause permits at most two iteration variables"
    }
    
    func _(s chan int) {
            var i, j, k, l int
            _, _, _, _ = i, j, k, l
    
            for range s {}
            for i = range s {}
            for i, j = range s {} // ERROR "range over .* permits only one iteration variable"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 959 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/interface.go

    }
    
    // OptionalVariableDeclarations declares which optional CEL variables
    // are declared for an expression.
    type OptionalVariableDeclarations struct {
    	// HasParams specifies if the "params" variable is declared.
    	// The "params" variable may still be bound to "null" when declared.
    	HasParams bool
    	// HasAuthorizer specifies if the "authorizer" and "authorizer.requestResource"
    	// variables are declared. When declared, the authorizer variables are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/vardecl.go

    func _() {
    	_ := /* ERROR "no new variables" */ 0
    	_, a := 0, 1
    	_, a := /* ERROR "no new variables" */ 0, 1
    	_, a, b := 0, 1, 2
    	_, _, _ := /* ERROR "no new variables" */ 0, 1, 2
    
    	_ = a
    	_ = b
    }
    
    // Test case for variables depending on function literals (see also #22992).
    var A /* ERROR "initialization cycle" */ = func() int { return A }()
    
    func _() {
    	// The function literal below must not see a.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. ci/official/utilities/setup.sh

    # variables in it, OR may be left empty if the user has already exported the
    # relevant variables in their environment. Because of 'set -o allexport' above
    # (which is equivalent to "set -a"), every variable in the file is exported
    # for other files to use.
    #
    # Separately, if TFCI is set *and* there are also additional TFCI_ variables
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 26 00:33:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_launch_util.h

    // Populates the OpKernelContext outputs with the outputs of the
    // PjRtLoadedExecutable. Requires the `compilation_result` used to build the
    // PjRtLoadedExecutable.
    // This function only looks at variables that were updated, so `variables` can
    // either be all the variables or only the ones that were updated.
    // Assumes that the first `num_missing_prefix_ctx_inputs` inputs to the
    // compilation_result are missing in `inputs` and adjusts indexing into `inputs`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_passes.h

        std::string saved_model_dir = "");
    
    // Creates as pass that removes variables in the session initializer.
    // This job is required with lifting variable passes. Originally, the session
    // initializer function does assigning variables. However, the read-only
    // variable assignments will be done via lifting variables pass by converting
    // the read-only variables to constant ops, instead. This pass removes the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top