Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 112 for Yield (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	obj         *example.Pod
    	expectEvent bool
    	watchType   watch.EventType
    }
    
    func createPodPredicate(field fields.Selector, namespaceScoped bool, indexField []string) storage.SelectionPredicate {
    	return storage.SelectionPredicate{
    		Label:       labels.Everything(),
    		Field:       field,
    		GetAttrs:    determinePodGetAttrFunc(namespaceScoped, indexField),
    		IndexFields: indexField,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        Waiter(boolean unused) {}
    
        Waiter() {
          // avoid volatile write, write is made visible by subsequent CAS on waiters field
          ATOMIC_HELPER.putThread(this, Thread.currentThread());
        }
    
        // non-volatile write to the next field. Should be made visible by subsequent CAS on waiters
        // field.
        void setNext(@CheckForNull Waiter next) {
          ATOMIC_HELPER.putNext(this, next);
        }
    
        void unpark() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        Waiter(boolean unused) {}
    
        Waiter() {
          // avoid volatile write, write is made visible by subsequent CAS on waiters field
          ATOMIC_HELPER.putThread(this, Thread.currentThread());
        }
    
        // non-volatile write to the next field. Should be made visible by subsequent CAS on waiters
        // field.
        void setNext(@CheckForNull Waiter next) {
          ATOMIC_HELPER.putNext(this, next);
        }
    
        void unpark() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    				Label: labels.Everything(),
    				Field: fields.ParseSelectorOrDie("metadata.name!=bar"),
    			},
    			expectedOut: []example.Pod{},
    		},
    		{
    			name:   "test List with pod name matching with resource version set to current resource version, match=NotOlderThan",
    			prefix: "/pods/first/",
    			pred: storage.SelectionPredicate{
    				Label: labels.Everything(),
    				Field: fields.ParseSelectorOrDie("metadata.name!=bar"),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  5. src/net/http/request.go

    	// to a server. Usually the URL field should be used instead.
    	// It is an error to set this field in an HTTP client request.
    	RequestURI string
    
    	// TLS allows HTTP servers and other software to record
    	// information about the TLS connection on which the request
    	// was received. This field is not filled in by ReadRequest.
    	// The HTTP server in this package sets the field for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    			break
    		}
    		p[i] = c.FuncArg(f, pos)
    		gp[i] = &ast.Field{Type: p[i].Go}
    	}
    	var r *Type
    	var gr []*ast.Field
    	if _, ok := base(dtype.ReturnType).(*dwarf.VoidType); ok {
    		gr = []*ast.Field{{Type: c.goVoid}}
    	} else if dtype.ReturnType != nil {
    		r = c.Type(unqual(dtype.ReturnType), pos)
    		gr = []*ast.Field{{Type: r.Go}}
    	}
    	return &FuncType{
    		Params: p,
    		Result: r,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    	}
    
    	return f
    }
    
    // EmbeddedElem = MethodSpec | EmbeddedTerm { "|" EmbeddedTerm } .
    func (p *parser) embeddedElem(f *Field) *Field {
    	if trace {
    		defer p.trace("embeddedElem")()
    	}
    
    	if f == nil {
    		f = new(Field)
    		f.pos = p.pos()
    		f.Type = p.embeddedTerm()
    	}
    
    	for p.tok == _Operator && p.op == Or {
    		t := new(Operation)
    		t.pos = p.pos()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. src/crypto/x509/x509.go

    // policy OIDs. By default, only the PolicyIdentifier is marshaled, but if the
    // GODEBUG setting "x509usepolicies" has the value "1", the Policies field will
    // be marshaled instead of the PolicyIdentifier field. The Policies field can
    // be used to marshal policy OIDs which have components that are larger than 31
    // bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    							Rule: "self.if == 10",
    						},
    						{
    							Rule: "self == 10",
    						},
    					},
    				},
    			},
    			expectedResults: []validationMatcher{
    				invalidError("undefined field 'namespace'"),
    				invalidError("undefined field 'if'"),
    				invalidError("found no matching overload"),
    			},
    		},
    		{
    			name: "transition rule identified",
    			input: schema.Structural{
    				Generic: schema.Generic{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. src/text/template/exec_test.go

    	{"empty with struct", "{{.Empty4}}", "{UinEmpty}", tVal, true},
    	{"empty with struct, field", "{{.Empty4.V}}", "UinEmpty", tVal, true},
    
    	// Edge cases with <no value> with an interface value
    	{"field on interface", "{{.foo}}", "<no value>", nil, true},
    	{"field on parenthesized interface", "{{(.).foo}}", "<no value>", nil, true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top