Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 191 for vers (0.26 sec)

  1. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

                public class Person {
                    String name;
                    int age;
    
                    void hello() {
                        Iterable<Integer> vars = Arrays.asList(3, 1, 2);
                        DefaultGroovyMethods.max(vars);
                    }
                }
            """
    
            file("src/main/java/compile/test/Person2.java") << """
                package compile.test;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. cluster/gce/windows/smoke-test.sh

    #     services that don't serve http requests).
    #   - Add test retries for transient errors, such as:
    #     "error: unable to upgrade connection: Authorization error
    #     (user=kube-apiserver, verb=create, resource=nodes, subresource=proxy)"
    
    # Override this to use a different kubectl binary.
    kubectl=kubectl
    linux_deployment_timeout=60
    windows_deployment_timeout=600
    output_file=/tmp/k8s-smoke-test.out
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/settings.md

        // Create an env var MY_NAME
        $ $Env:MY_NAME = "Wade Wilson"
    
        // Use it with other programs, like
        $ echo "Hello $Env:MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    ### Read env vars in Python
    
    You could also create environment variables outside of Python, in the terminal (or with any other method), and then read them in Python.
    
    For example you could have a file `main.py` with:
    
    ```Python hl_lines="3"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. cmd/metrics-v3-handler.go

    // parameter is provided, no bucket metrics are returned.
    func (h *metricsV3Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
    	pathComponents := mux.Vars(r)["pathComps"]
    	isListingRequest := r.Form.Has("list")
    
    	buckets := []string{}
    	if strings.HasPrefix(pathComponents, "/bucket/") {
    		// bucket specific metrics, extract the bucket name from the path.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:06:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

            Closure<Void> runner = this::configurationCacheRun
        ) {
            def allArgs = tasks + getEncryptionOptions(kind) + additionalArgs + ["-s"]
            // envVars overrides encryption env vars
            def allVars = getEncryptionEnvVars(kind) + envVars
            executer.withEnvironmentVars(allVars)
            runner(*allArgs)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. hack/ginkgo-e2e.sh

    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # Find the ginkgo binary build as part of the release.
    ginkgo=$(kube::util::find-binary "ginkgo")
    e2e_test=$(kube::util::find-binary "e2e.test")
    
    # --- Setup some env vars.
    
    GINKGO_PARALLEL=${GINKGO_PARALLEL:-n} # set to 'y' to run tests in parallel
    GINKGO_SILENCE_SKIPS=${GINKGO_SILENCE_SKIPS:-y} # set to 'n' to see S character for each skipped test
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    			}
    		}
    
    		tmpEnv[envVar.Name] = runtimeVal
    	}
    
    	// Append the env vars
    	for k, v := range tmpEnv {
    		result = append(result, kubecontainer.EnvVar{Name: k, Value: v})
    	}
    
    	// Append remaining service env vars.
    	for k, v := range serviceEnv {
    		// Accesses apiserver+Pods.
    		// So, the master may set service env vars, or kubelet may.  In case both are doing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. src/go/types/predicates.go

    		// and corresponding elements have identical types.
    		if y, ok := y.(*Tuple); ok {
    			if x.Len() == y.Len() {
    				if x != nil {
    					for i, v := range x.vars {
    						w := y.vars[i]
    						if !c.identical(v.typ, w.typ, p) {
    							return false
    						}
    					}
    				}
    				return true
    			}
    		}
    
    	case *Signature:
    		y, _ := y.(*Signature)
    		if y == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    				Properties: map[string]spec.Schema{
    					"verbs": {
    						VendorExtensible: spec.VendorExtensible{
    							Extensions: spec.Extensions{
    								"x-kubernetes-list-type": "set",
    							},
    						},
    						SchemaProps: spec.SchemaProps{
    							Description: "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs and, if present, must be the only entry. Required.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  10. src/cmd/go/internal/envcmd/env.go

    				needCostly = true
    				break checkCostly
    			}
    		}
    	}
    	if needCostly {
    		work.BuildInit()
    		env = append(env, ExtraEnvVarsCostly()...)
    	}
    
    	if len(args) > 0 {
    		// Show only the named vars.
    		if !*envChanged {
    			if *envJson {
    				var es []cfg.EnvVar
    				for _, name := range args {
    					e := cfg.EnvVar{Name: name, Value: findEnv(env, name)}
    					es = append(es, e)
    				}
    				env = es
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top