Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for preset (0.13 sec)

  1. src/cmd/compile/internal/ssa/rewritePPC64.go

    		new_ := v_2
    		mem := v_3
    		v.reset(OpPPC64LoweredAtomicCas32)
    		v.AuxInt = int64ToAuxInt(0)
    		v.AddArg4(ptr, old, new_, mem)
    		return true
    	}
    }
    func rewriteValuePPC64_OpAtomicLoad32(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (AtomicLoad32 ptr mem)
    	// result: (LoweredAtomicLoad32 [1] ptr mem)
    	for {
    		ptr := v_0
    		mem := v_1
    		v.reset(OpPPC64LoweredAtomicLoad32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "items": {
                  "allOf": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	ReinvocationPolicy string `protobuf:"bytes,3,opt,name=reinvocationPolicy,proto3" json:"reinvocationPolicy,omitempty"`
    	// Instructs Istio to not inject the sidecar on those pods, based on labels that are present in those pods.
    	//
    	// Annotations in the pods have higher precedence than the label selectors.
    	// Order of evaluation: Pod Annotations → NeverInjectSelector → AlwaysInjectSelector → Default Policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// PullNever means that kubelet never pulls an image, but only uses a local image.  Container will fail if the image isn't present
    	PullNever PullPolicy = "Never"
    	// PullIfNotPresent means that kubelet pulls if the image isn't present on disk. Container will fail if the image isn't present and the pull fails.
    	PullIfNotPresent PullPolicy = "IfNotPresent"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	if w.bw == nil {
    		bw := http2bufWriterPool.Get().(*bufio.Writer)
    		bw.Reset(w.w)
    		w.bw = bw
    	}
    	return w.bw.Write(p)
    }
    
    func (w *http2bufferedWriter) Flush() error {
    	bw := w.bw
    	if bw == nil {
    		return nil
    	}
    	err := bw.Flush()
    	bw.Reset(nil)
    	http2bufWriterPool.Put(bw)
    	w.bw = nil
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"optional": "optional specify whether the ConfigMap or its keys...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// PullNever means that kubelet never pulls an image, but only uses a local image. Container will fail if the image isn't present
    	PullNever PullPolicy = "Never"
    	// PullIfNotPresent means that kubelet pulls if the image isn't present on disk. Container will fail if the image isn't present and the pull fails.
    	PullIfNotPresent PullPolicy = "IfNotPresent"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // key and content is the value. If specified, the listed keys will be
      // projected into the specified paths, and unlisted keys will not be
      // present. If a key is specified which is not present in the ConfigMap,
      // the volume setup will error unless it is marked optional. Paths must be
      // relative and may not contain the '..' path or start with '..'.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. doc/go_spec.html

    ParameterList  = ParameterDecl { "," ParameterDecl } .
    ParameterDecl  = [ IdentifierList ] [ "..." ] Type .
    </pre>
    
    <p>
    Within a list of parameters or results, the names (IdentifierList)
    must either all be present or all be absent. If present, each name
    stands for one item (parameter or result) of the specified type and
    all non-<a href="#Blank_identifier">blank</a> names in the signature
    must be <a href="#Uniqueness_of_identifiers">unique</a>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	abiSelf := abiForFunc(fn, ssaConfig.ABI0, ssaConfig.ABI1)
    
    	printssa := false
    	// match either a simple name e.g. "(*Reader).Reset", package.name e.g. "compress/gzip.(*Reader).Reset", or subpackage name "gzip.(*Reader).Reset"
    	// optionally allows an ABI suffix specification in the GOSSAHASH, e.g. "(*Reader).Reset<0>" etc
    	if strings.Contains(ssaDump, name) { // in all the cases the function name is entirely contained within the GOSSAFUNC string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top