Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,622 for variable1 (0.17 sec)

  1. src/cmd/compile/internal/ssagen/phi.go

    	hasDef *sparseSet   // has a write of the variable we're processing
    
    	// miscellaneous
    	placeholder *ssa.Value // value to use as a "not set yet" placeholder.
    }
    
    func (s *phiState) insertPhis() {
    	if debugPhi {
    		fmt.Println(s.f.String())
    	}
    
    	// Find all the variables for which we need to match up reads & writes.
    	// This step prunes any basic-block-only variables from consideration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/TypeResolver.java

       *
       * @param formal The type whose type variables or itself is mapped to other type(s). It's almost
       *     always a bug if {@code formal} isn't a type variable and contains no type variable. Make
       *     sure you are passing the two parameters in the right order.
       * @param actual The type that the formal type variable(s) are mapped to. It can be or contain yet
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libexport/load.h

      // Reads and returns a checkpoint key associated with a variable.
      //
      // The variable is identified by the index in the object graph node list.
      //
      // RestoreV2 is the operation that will ultimately be responsible for reading
      // and restoring the variable(s)' values.  Variable values are indexed in the
      // checkpoint files by "checkpoint keys".  These keys along with dtype and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition_test.go

    		},
    		{
    			name: "single boolean variable in expression",
    			variables: []NamedExpressionAccessor{
    				&testVariable{
    					name:       "fortuneTelling",
    					expression: "true",
    				},
    			},
    			attributes:     endpointCreateAttributes(),
    			expression:     "variables.fortuneTelling",
    			expectedResult: true,
    		},
    		{
    			name: "variable of a list",
    			variables: []NamedExpressionAccessor{
    				&testVariable{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_launch_util.cc

          // Handles resource variables.
          TF_RET_CHECK(input->dtype() == DT_RESOURCE);
          const VariableInfo& variable = *variable_info_lookup[input_num];
          arg.name = std::string(variable.name());
          arg.kind = XlaCompiler::Argument::kResource;
          arg.resource_kind = XlaResource::kVariable;
          arg.definition_stack_trace = variable.definition_stack_trace();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/reflect/TypeResolver.java

       *
       * @param formal The type whose type variables or itself is mapped to other type(s). It's almost
       *     always a bug if {@code formal} isn't a type variable and contains no type variable. Make
       *     sure you are passing the two parameters in the right order.
       * @param actual The type that the formal type variable(s) are mapped to. It can be or contain yet
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  7. src/os/env.go

    }
    
    // ExpandEnv replaces ${var} or $var in the string according to the values
    // of the current environment variables. References to undefined
    // variables are replaced by the empty string.
    func ExpandEnv(s string) string {
    	return Expand(s, Getenv)
    }
    
    // isShellSpecialVar reports whether the character identifies a special
    // shell variable such as $*.
    func isShellSpecialVar(c uint8) bool {
    	switch c {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/text/template/doc.go

    Execute.
    
    Variables
    
    A pipeline inside an action may initialize a variable to capture the result.
    The initialization has syntax
    
    	$variable := pipeline
    
    where $variable is the name of the variable. An action that declares a
    variable produces no output.
    
    Variables previously declared can also be assigned, using the syntax
    
    	$variable = pipeline
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue50372.go

            for i, j /* ERRORx `range over .* permits only one iteration variable` */ = range s {}
            for i, j, k /* ERRORx `range over .* permits only one iteration variable|at most 2 expressions` */ = range s {}
            for i, j, k, l /* ERRORx `range over .* permits only one iteration variable|at most 2 expressions` */ = range s {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ProcessForkOptions.java

        ProcessForkOptions workingDir(Object dir);
    
        /**
         * The environment variables to use for the process. Defaults to the environment of this process.
         *
         * @return The environment. Returns an empty map when there are no environment variables.
         */
        Map<String, Object> getEnvironment();
    
        /**
         * Sets the environment variable to use for the process.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top