Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,622 for variable1 (0.17 sec)

  1. pilot/pkg/networking/core/extension/wasmplugin.go

    	// Find the pull secret resource name from wasm vm env variables.
    	// The Wasm extension config should already have a `ISTIO_META_WASM_IMAGE_PULL_SECRET` env variable
    	// at in the VM env variables, with value being the secret resource name. We try to find the actual
    	// secret, and replace the env variable value with it. When ECDS config update reaches the proxy,
    	// agent will extract out the secret from env variable, use it for image pulling, and strip the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/windowsStartScript.txt

    :end
    @rem End local scope for the variables with windows NT shell
    if %ERRORLEVEL% equ 0 goto mainEnd
    
    :fail
    rem Set variable ${exitEnvironmentVar} 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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 13:16:41 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/common_v1.py

        use_lite: If true, importer will not do any graph transformation such as
          lift variables.
        lift_variables: If false, no variable lifting will be done on the graph.
        include_variables_in_initializers: If false, removes variables in
          initializer functions before lifting variables or adding new variable
          initialization patterns in the initializer function.
      """
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 20 13:19:26 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/generate/generate_test.go

    		if !reflect.DeepEqual(got, test.out) {
    			t.Errorf("split(%q): got %q expected %q", test.in, got, test.out)
    		}
    	}
    }
    
    // These environment variables will be undefined before the splitTestWithLine tests
    var undefEnvList = []string{
    	"_XYZZY_",
    }
    
    // These environment variables will be defined before the splitTestWithLine tests
    var defEnvMap = map[string]string{
    	"_PLUGH_": "SomeVal",
    	"_X":      "Y",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 14:09:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

    //  - it involves accessing resource variables
    //
    // Note that these criteria are more restrictive than necessary:
    //  - they will force a fixed order on operations that read from/write to
    //    *different* variables
    //  - they make the blanket assumption that any functions called cause or depend
    //    on side effects (i.e., access resource variables.)
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise/interface.go

    limitations under the License.
    */
    
    package promise
    
    // WriteOnce represents a variable that is initially not set and can
    // be set once and is readable.  This is the common meaning for
    // "promise".
    type WriteOnce interface {
    	// Get reads the current value of this variable.  If this
    	// variable is not set yet then this call blocks until this
    	// variable gets a value.
    	Get() interface{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/envcmd/env.go

    (on Windows, a batch file). If one or more variable
    names is given as arguments, env prints the value of
    each named variable on its own line.
    
    The -json flag prints the environment in JSON format
    instead of as a shell script.
    
    The -u flag requires one or more arguments and unsets
    the default setting for the named environment variables,
    if one has been set with 'go env -w'.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/lostcancel.go

    // returned by context.WithCancel, either because the variable was
    // assigned to the blank identifier, or because there exists a
    // control-flow path from the call to a return statement and that path
    // does not "use" the cancel function.  Any reference to the variable
    // counts as a use, even within a nested function literal.
    // If the variable's scope is larger than the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/env_write.txt

    # go env -w can set multiple variables
    env CC=
    go env CC
    ! stdout ^xyc$
    go env -w GOOS=$GOOS CC=xyc
    grep CC=xyc $GOENV
    # file is maintained in sorted order
    grep 'CC=xyc\nGOOS=' $GOENV
    go env CC
    stdout ^xyc$
    
    # go env -u unsets effect of go env -w.
    go env -u CC
    go env CC
    ! stdout ^xyc$
    
    # go env -w rejects double-set variables
    ! go env -w GOOS=$GOOS GOOS=$GOOS
    stderr 'multiple values for key: GOOS'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:42:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top