Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for variables (0.19 sec)

  1. doc/go_spec.html

    expressions</a>.
    </p>
    
    
    <h2 id="Variables">Variables</h2>
    
    <p>
    A variable is a storage location for holding a <i>value</i>.
    The set of permissible values is determined by the
    variable's <i><a href="#Types">type</a></i>.
    </p>
    
    <p>
    A <a href="#Variable_declarations">variable declaration</a>
    or, for function parameters and results, the signature
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  2. helm/minio/values.yaml

    ##
    rootUser: ""
    rootPassword: ""
    
    ## Use existing Secret that store following variables:
    ##
    ## | Chart var             | .data.<key> in Secret    |
    ## |:----------------------|:-------------------------|
    ## | rootUser              | rootUser                 |
    ## | rootPassword          | rootPassword             |
    ##
    ## All mentioned variables will be ignored in values file.
    ## .data.rootUser and .data.rootPassword are mandatory,
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 10:14:37 GMT 2024
    - 18.4K bytes
    - Viewed (0)
  3. Makefile.core.mk

    #-----------------------------------------------------------------------------
    .PHONY: show.env show.goenv
    
    show.env: ; $(info $(H) environment variables...)
    	$(Q) printenv
    
    show.goenv: ; $(info $(H) go environment...)
    	$(Q) $(GO) version
    	$(Q) $(GO) env
    
    # show makefile variables. Usage: make show.<variable-name>
    show.%: ; $(info $* $(H) $($*))
    	$(Q) true
    
    #-----------------------------------------------------------------------------
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Apr 26 19:45:17 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  4. RELEASE.md

        regular op now handles batches as well. All `batch_*` Python interfaces were
        removed.
    *   `tf.all_variables`, `tf.VARIABLES` and `tf.initialize_all_variables` renamed
        to `tf.global_variables`, `tf.GLOBAL_VARIABLES` and
        `tf.global_variables_initializer` respectively.
    *   `tf.zeros_initializer()` and `tf.ones_initializer()` now return a callable
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  5. helm-releases/minio-5.2.0.tgz

    https://min.io/docs/minio/linux/operations/install-deploy-manage/deploy-minio-multi-node-multi-drive.html ## rootUser: "" rootPassword: "" ## Use existing Secret that store following variables: ## ## | Chart var | .data.<key> in Secret | ## |:-------- ## | rootUser | rootUser | ## | rootPassword | rootPassword | ## ## All mentioned variables will be ignored in values file. ## .data.rootUser and .data.rootPassword are mandatory, ## others depend on enabled status of corresponding sections. existingSecret: "" ##...
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 10:14:37 GMT 2024
    - 21.7K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    This means that now, if you set a value in a context variable before `yield`, the value would still be available after `yield` (as you would intuitively expect). And it also means that you can reset the context variable with a token afterwards.
    
    For example, this works correctly now:
    
    ```Python
    from contextvars import ContextVar
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
  7. cni/README.md

    - sidecar interception is enabled if:
        - "istio-init" container is not present in the pod.
        - istio-proxy container exists and
            - does not have DISABLE_ENVOY environment variable (which triggers proxyless mode)
            - has a istio-proxy container, with first 2 args "proxy" and "sidecar" - or less then 2 args, or first arg not proxy.
            - "sidecar.istio.io/inject" is not false
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  8. cni/pkg/cmd/root.go

    	// Note: we do not rely on istio env package to retrieve configuration. We relies on viper.
    	// This is just to make sure the reference doc tool can generate doc with these vars as env variable at istio.io.
    	env.Register(envName, defaultValue, usage)
    	bindViper(name)
    }
    
    func bindViper(name string) {
    	if err := viper.BindPFlag(name, rootCmd.Flags().Lookup(name)); err != nil {
    		log.Error(err)
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 12.5K bytes
    - Viewed (0)
Back to top