Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 150 for switches$ (0.16 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // 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.
      optional bool xKubernetesPreserveUnknownFields = 38;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // 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.
      optional bool xKubernetesPreserveUnknownFields = 38;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. src/runtime/signal_unix.go

    //
    // It must be nosplit because getg() is still the G that was running
    // (if any) when the signal was delivered, but it's (usually) called
    // on the gsignal stack. Until this switches the G to gsignal, the
    // stack bounds check won't work.
    //
    //go:nosplit
    //go:nowritebarrierrec
    func sigtrampgo(sig uint32, info *siginfo, ctx unsafe.Pointer) {
    	if sigfwdgo(sig, info, ctx) {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/deadness_analysis.cc

      //
      // We don't track the output indices for should_revisit.  Instead, putting a
      // node in `should_revisit` denotes that the deadness flowing out from any
      // output from said node may have changed.  This is fine; only switches
      // propagate different deadness along different output edges, and since the
      // delta is solely due to the input *values* (and not input deadness), the
      // delta should not change in the second iteration.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. src/runtime/metrics_test.go

    						// stk is a call stack that is still on the user stack when
    						// it calls runtime.unlock. Add the extra function that
    						// we'll see, when the static lock ranking implementation of
    						// runtime.unlockWithRank switches to the system stack.
    						stk = append([]string{"runtime.unlockWithRank"}, stk...)
    					}
    				}
    				acceptStacks[i] = stk
    			}
    
    			var stks [][]string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  6. src/runtime/export_test.go

    		shrinkstack(gp)
    	})
    	// If our new stack contains frame pointers into the old stack, this will
    	// crash because the old stack has been poisoned.
    	FPCallers(make([]uintptr, 1024))
    }
    
    // BlockOnSystemStack switches to the system stack, prints "x\n" to
    // stderr, and blocks in a stack containing
    // "runtime.blockOnSystemStackInternal".
    func BlockOnSystemStack() {
    	systemstack(blockOnSystemStackInternal)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.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: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    ```
    
    The deprecation warnings show up in https://scans.gradle.com/s/txrptciitl2ha/deprecations[build scans] for every build, regardless of the command-line switches used.
    
    When the build is executed with `--warning-mode all`, the individual warnings will be shown:
    
    ```
    > Task :myTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    			goto Error
    		}
    
    	case *ast.TypeAssertExpr:
    		check.expr(nil, x, e.X)
    		if x.mode == invalid {
    			goto Error
    		}
    		// x.(type) expressions are handled explicitly in type switches
    		if e.Type == nil {
    			// Don't use InvalidSyntaxTree because this can occur in the AST produced by
    			// go/parser.
    			check.error(e, BadTypeKeyword, "use of .(type) outside type switch")
    			goto Error
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    		}
    	}
    
    	// Tell gcc not to include flags in object files, which defeats the
    	// point of -fdebug-prefix-map above.
    	if b.gccSupportsFlag(compiler, "-gno-record-gcc-switches") {
    		a = append(a, "-gno-record-gcc-switches")
    	}
    
    	// On OS X, some of the compilers behave as if -fno-common
    	// is always set, and the Mach-O linker in 6l/8l assumes this.
    	// See https://golang.org/issue/3253.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top