Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 729 for variable1 (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtVariableLikeSignature.kt

    
    /**
     * A signature of a variable-like symbol. This includes properties, enum entries local variables, etc.
     */
    public abstract class KaVariableLikeSignature<out S : KaVariableLikeSymbol> : KaCallableSignature<S>() {
        /**
         * A name of the variable with respect to the `@ParameterName` annotation. Can be different from the [KaVariableLikeSymbol.name].
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/liveness/plive.go

    	// individual blocks:
    	//
    	//	uevar: upward exposed variables (used before set in block)
    	//	varkill: killed variables (set in block)
    	uevar   bitvec.BitVec
    	varkill bitvec.BitVec
    
    	// Computed during Liveness.solve using control flow information:
    	//
    	//	livein: variables live at block entry
    	//	liveout: variables live at block exit
    	livein  bitvec.BitVec
    	liveout bitvec.BitVec
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. gradlew.bat

    :end
    @rem End local scope for the variables with windows NT shell
    if %ERRORLEVEL% equ 0 goto mainEnd
    
    :fail
    rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
    rem the _cmd.exe /c_ return code!
    set EXIT_CODE=%ERRORLEVEL%
    if %EXIT_CODE% equ 0 set EXIT_CODE=1
    if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:31:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    						cel.Variable(AuthorizerVarName, library.AuthorizerType),
    						cel.Variable(RequestResourceAuthorizerVarName, library.ResourceCheckType))
    				}
    				envOpts = append(envOpts,
    					cel.Variable(ObjectVarName, cel.DynType),
    					cel.Variable(OldObjectVarName, cel.DynType),
    					cel.Variable(NamespaceVarName, namespaceType.CelType()),
    					cel.Variable(RequestVarName, requestType.CelType()))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/stmt0.go

    	a, b, c = 1 /* ERROR "assignment mismatch: 3 variables but 2 values" */ , 2
    	a, b, c = 1 /* ERROR "assignment mismatch: 3 variables but 4 values" */ , 2, 3, 4
    	_, _, _ = a, b, c
    
    	a = f0 /* ERROR "used as value" */ ()
    	a = f1()
    	a = f2 /* ERROR "assignment mismatch: 1 variable but f2 returns 2 values" */ ()
    	a, b = f2()
    	a, b, c = f2 /* ERROR "assignment mismatch: 3 variables but f2 returns 2 values" */ ()
    	a, b, c = f3()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top