Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 164 for switches$ (0.15 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	// 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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/errors/errors.go

    	"k8s.io/apimachinery/pkg/util/validation/field"
    )
    
    // StatusError is an error intended for consumption by a REST API server; it can also be
    // reconstructed by clients from a REST response. Public to allow easy type switches.
    type StatusError struct {
    	ErrStatus metav1.Status
    }
    
    // APIStatus is exposed by errors that can be converted to an api.Status object
    // for finer grained details.
    type APIStatus interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 21 03:41:32 UTC 2022
    - 30.5K bytes
    - Viewed (0)
  3. src/bufio/bufio.go

    	return NewReaderSize(rd, defaultBufSize)
    }
    
    // Size returns the size of the underlying buffer in bytes.
    func (b *Reader) Size() int { return len(b.buf) }
    
    // Reset discards any buffered data, resets all state, and switches
    // the buffered reader to read from r.
    // Calling Reset on the zero value of [Reader] initializes the internal buffer
    // to the default size.
    // Calling b.Reset(b) (that is, resetting a [Reader] to itself) does nothing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  4. src/go/types/unify.go

    	// (not recorded with the unifier).
    	// Ensure that if we have at least one type parameter, it is in x
    	// (the earlier swap checks for _recorded_ type parameters only).
    	// This ensures that the switch switches on the type parameter.
    	//
    	// TODO(gri) Factor out type parameter handling from the switch.
    	if isTypeParam(y) {
    		if traceInference {
    			u.tracef("%s ≡ %s\t// swap", y, x)
    		}
    		x, y = y, x
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/unify.go

    	// (not recorded with the unifier).
    	// Ensure that if we have at least one type parameter, it is in x
    	// (the earlier swap checks for _recorded_ type parameters only).
    	// This ensures that the switch switches on the type parameter.
    	//
    	// TODO(gri) Factor out type parameter handling from the switch.
    	if isTypeParam(y) {
    		if traceInference {
    			u.tracef("%s ≡ %s\t// swap", y, x)
    		}
    		x, y = y, x
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    		fmt.Fprintf(os.Stderr, "go: %v\n", err)
    	} else if ld.Switcher != nil {
    		ld.Switcher.Error(err)
    	} else {
    		base.Error(err)
    	}
    }
    
    // switchIfErrors switches toolchains if a switch is needed.
    func (ld *loader) switchIfErrors(ctx context.Context) {
    	if ld.Switcher != nil {
    		ld.Switcher.Switch(ctx)
    	}
    }
    
    // exitIfErrors switches toolchains if a switch is needed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top