Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 164 for switches$ (0.46 sec)

  1. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "description": "x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.",
                "type": "boolean"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  2. releasenotes/notes/gateway-naming.yaml

          to manage your istio gateways, the names of the Kubernetes Deployment and Service has been modified, and the default Service Account used
          has switched to used its own token. The `gateway.istio.io/name-override` and `gateway.istio.io/service-account` annotations can be used to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 06 14:56:19 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/tidy.go

    		VendorModulesInGOROOTSrc: true,
    		ResolveMissingImports:    true,
    		LoadTests:                true,
    		AllowErrors:              tidyE,
    		SilenceMissingStdImports: true,
    		Switcher:                 new(toolchain.Switcher),
    	}, "all")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-groovy/src/crossVersionTest/groovy/org/gradle/integtests/StaticGroovyTaskSubclassingBinaryCompatibilityCrossVersionSpec.groovy

     *
     * <p>Note: Groovy introduced static compilation ({@link groovy.transform.CompileStatic}) in Groovy 2.0.0.
     * We switched to using Groovy 2.3.3 from 1.8.6 in Gradle 2.0. However, Groovy 2.3.3 shipped with Gradle 2.0 had a bug that prevents the test to be compiled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:37:02 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ifaceassert/ifaceassert.go

    			// take care of v.(type) in *ast.TypeSwitchStmt
    			if n.Type == nil {
    				return
    			}
    			assert = n
    			targets = append(targets, n.Type)
    		case *ast.TypeSwitchStmt:
    			// retrieve type assertion from type switch's 'assign' field
    			switch t := n.Assign.(type) {
    			case *ast.ExprStmt:
    				assert = t.X.(*ast.TypeAssertExpr)
    			case *ast.AssignStmt:
    				assert = t.Rhs[0].(*ast.TypeAssertExpr)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/netns_linux.go

    		if err = NetnsSet(fdable); err != nil {
    			return err
    		}
    		defer func() {
    			err := threadNS.Set() // switch back
    			if err == nil {
    				// Unlock the current thread only when we successfully switched back
    				// to the original namespace; otherwise leave the thread locked which
    				// will force the runtime to scrap the current thread, that is maybe
    				// not as optimal but at least always safe to do.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 10:05:36 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/download.go

    	// which may include dependencies that are normally pruned out
    	// of the individual modules in the workspace.
    	if haveExplicitArgs || modload.WorkFilePath() != "" {
    		var sw toolchain.Switcher
    		// Add errors to the Switcher in deterministic order so that they will be
    		// logged deterministically.
    		for _, m := range mods {
    			if erri, ok := downloadErrs.Load(m); ok {
    				sw.Error(erri.(error))
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/workcmd/sync.go

    		// Edit the build list in the same way that 'go get' would if we
    		// requested the relevant module versions explicitly.
    		// TODO(#57001): Do we need a toolchain.SwitchOrFatal here,
    		// and do we need to pass a toolchain.Switcher in LoadPackages?
    		// If so, think about saving the WriteGoMods for after the loop,
    		// so we don't write some go.mods with the "before" toolchain
    		// and others with the "after" toolchain. If nothing else, that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/BuildEnvironmentIntegrationTest.groovy

    @DoesNotSupportNonAsciiPaths(reason = "Some tests need to run with ASCII encoding")
    class BuildEnvironmentIntegrationTest extends AbstractIntegrationSpec {
    
        @Unroll("default locale for gradle build switched to #locale")
        def "builds can be executed with different default locales"() {
            given:
            executer.withDefaultLocale(locale)
    
            and:
            buildFile.setText("""
    task check {
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptDependenciesResolver.kt

             * null position so the error/warning will be shown in the top panel of the editor
             *
             * Also there is a FATAL Severity - in this case the highlighting of the file will be
             * switched off (may be it is useful for some errors).
             */
            report: (ReportSeverity, String, Position?) -> Unit,
            previousDependencies: KotlinScriptExternalDependencies?
        ) = future {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top