Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for switches$ (0.16 sec)

  1. src/cmd/internal/obj/link.go

    	WasmImportSym *LSym
    	WasmImport    *WasmImport
    
    	sehUnwindInfoSym *LSym
    }
    
    // JumpTable represents a table used for implementing multi-way
    // computed branching, used typically for implementing switches.
    // Sym is the table itself, and Targets is a list of target
    // instructions to go to for the computed branch index.
    type JumpTable struct {
    	Sym     *LSym
    	Targets []*Prog
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  8. src/internal/types/testdata/check/stmt0.go

    	}
    }
    
    func returns3() (_ int) {
    	return
    	{
    		var _ int // blank (_) identifiers never shadow since they are in no scope
    		return
    	}
    }
    
    func switches0() {
    	var x int
    
    	switch x {
    	}
    
    	switch x {
    	default:
    	default /* ERROR "multiple defaults" */ :
    	}
    
    	switch {
    	case 1  /* ERROR "cannot convert" */ :
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. 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)
  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