Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 107 for req2 (0.28 sec)

  1. staging/src/k8s.io/apimachinery/pkg/fields/selector.go

    			next = append(next, n)
    		}
    	}
    	return andTerm(next), nil
    }
    
    func (t andTerm) Requirements() Requirements {
    	reqs := make([]Requirement, 0, len(t))
    	for _, s := range []Selector(t) {
    		rs := s.Requirements()
    		reqs = append(reqs, rs...)
    	}
    	return reqs
    }
    
    func (t andTerm) String() string {
    	var terms []string
    	for _, q := range t {
    		terms = append(terms, q.String())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 23 20:40:07 UTC 2020
    - 12.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/pin-ops-with-side-effects.mlir

    // CHECK-NEXT: %[[TMP2:.*]], %[[SEQ1:.*]] = tfl.control_node(%[[SEQ0]]) controls "tfl.add"(%[[VAR]], %[[TMP1]])
    // CHECK-NEXT: %[[TMP3:.*]] = tfl.add %[[TMP2]], %[[TMP1]]
    // CHECK-NEXT: %[[TMP4:.*]], %[[SEQ2:.*]] = tfl.control_node(%[[SEQ1]]) controls "tfl.while"(%[[TMP3]]) ({
    // CHECK-NEXT:   ^bb0(%[[ARG_COND:.*]]: tensor<1xf32>):
    // CHECK-NEXT:   %[[RESULT_COND:.*]] = tfl.greater(%[[ARG_COND]], %[[CONST]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 10:45:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    func TestConcurrentMerge(t *testing.T) {
    	reqA := &PushRequest{Reason: make(ReasonStats)}
    	reqB := &PushRequest{Reason: NewReasonStats(ServiceUpdate, ProxyUpdate)}
    	for i := 0; i < 50; i++ {
    		go func() {
    			reqA.CopyMerge(reqB)
    		}()
    	}
    	if reqA.Reason.Count() != 0 {
    		t.Fatalf("reqA modified: %v", reqA.Reason)
    	}
    	if reqB.Reason.Count() != 2 {
    		t.Fatalf("reqB modified: %v", reqB.Reason)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/dependency-notations.toml

    incremental2.module = "group:name"
    incremental2.version = { strictly = "[1.0, 2.0[", prefer = "1.5" }
    
    groovy-with-ref = { group = "org.codehaus.groovy", name = "groovy", version.ref = "groovy" }
    groovy-with-ref2 = { group = "org.codehaus.groovy", name = "groovy", version.ref = "rich-groovy" }
    groovy-with-ref3 = { group = "org.codehaus.groovy", name = "groovy", version.ref = "version-with-bang" }
    
    strict-with-bang = "g:a:1.1!!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    	P ProcID
    	M ThreadID
    }
    
    // validateCtx ensures that ctx conforms to some reqs, returning an error if
    // it doesn't.
    func validateCtx(ctx schedCtx, reqs event.SchedReqs) error {
    	// Check thread requirements.
    	if reqs.Thread == event.MustHave && ctx.M == NoThread {
    		return fmt.Errorf("expected a thread but didn't have one")
    	} else if reqs.Thread == event.MustNotHave && ctx.M != NoThread {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    //
    //	C / NEQ(t) .
    //
    // However, sometimes there are fewer than C requests available to
    // execute.  For a given queue "q", let us also write "reqs(q, t)" for
    // the number of requests of that queue that are executing at that
    // time.  The total number of requests executing is sum[over q]
    // reqs(q, t) and if that is less than C then virtual time is not
    // advancing as fast as it would if all C seats were occupied; in this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. pkg/kubelet/server/stats/testing/mock_stats_provider.go

    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetCgroupStats", cgroupName, updateStats)
    	ret0, _ := ret[0].(*v1alpha1.ContainerStats)
    	ret1, _ := ret[1].(*v1alpha1.NetworkStats)
    	ret2, _ := ret[2].(error)
    	return ret0, ret1, ret2
    }
    
    // GetCgroupStats indicates an expected call of GetCgroupStats.
    func (mr *MockProviderMockRecorder) GetCgroupStats(cgroupName, updateStats any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/match_test.go

    			APIVersion:        "v1",
    			Namespace:         "",
    			Resource:          "goodrscs",
    			Name:              "eman",
    			Parts:             []string{"goodrscs", "eman"},
    		},
    		User: ui,
    	}
    	reqN := RequestDigest{
    		RequestInfo: &request.RequestInfo{
    			IsResourceRequest: false,
    			Path:              "/openapi/v2",
    			Verb:              "goodverb",
    		},
    		User: ui,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. src/net/http/client.go

    			// their CheckRedirect func.
    			copyHeaders(req)
    
    			// Add the Referer header from the most recent
    			// request URL to the new one, if it's not https->http:
    			if ref := refererForURL(reqs[len(reqs)-1].URL, req.URL, req.Header.Get("Referer")); ref != "" {
    				req.Header.Set("Referer", ref)
    			}
    			err = c.checkRedirect(req, reqs)
    
    			// Sentinel error to let users select the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  10. tests/integration/pilot/locality_test.go

    				return fmt.Errorf("unexpected hostname: %v", r)
    			}
    			gotHost := parts[0]
    			got[gotHost]++
    		}
    		scopes.Framework.Infof("Got responses: %+v", got)
    		for svc, reqs := range got {
    			expect := expected[svc]
    			if !common.AlmostEquals(reqs, expect, 3) {
    				return fmt.Errorf("unexpected request distribution. Expected: %+v, got: %+v", expected, got)
    			}
    		}
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top