Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 126 for because3 (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    // Makes testing simpler.
    func matchPodName(names ...string) storage.SelectionPredicate {
    	// Note: even if pod name is a field, we have to use labels,
    	// because field selector doesn't support "IN" operator.
    	l, err := labels.NewRequirement("name", selection.In, names)
    	if err != nil {
    		panic("Labels requirement must validate successfully")
    	}
    	return storage.SelectionPredicate{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. src/reflect/value.go

    // (as opposed to a zero value received because the channel is closed).
    // Select supports a maximum of 65536 cases.
    func Select(cases []SelectCase) (chosen int, recv Value, recvOK bool) {
    	if len(cases) > 65536 {
    		panic("reflect.Select: too many cases (max 65536)")
    	}
    	// NOTE: Do not trust that caller is not modifying cases data underfoot.
    	// The range is safe because the caller cannot modify our copy of the len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    // even IgnoredGoFiles, because some subcommands consider them.
    // The go/build package filtered others out (like foo_wrongGOARCH.s)
    // and that's OK.
    func (p *Package) AllFiles() []string {
    	files := str.StringList(
    		p.GoFiles,
    		p.CgoFiles,
    		// no p.CompiledGoFiles, because they are from GoFiles or generated by us
    		p.IgnoredGoFiles,
    		// no p.InvalidGoFiles, because they are from GoFiles
    		p.IgnoredOtherFiles,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

          // independent of the initial capacity, except that it won't be lower than the threshold
          // computed from that capacity. Because the internal table is only allocated on the first
          // write, we won't see copying because of the new threshold. So it is always OK to use the
          // calculation here.
          return (int) Math.ceil(expectedSize / 0.75);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

          // independent of the initial capacity, except that it won't be lower than the threshold
          // computed from that capacity. Because the internal table is only allocated on the first
          // write, we won't see copying because of the new threshold. So it is always OK to use the
          // calculation here.
          return (int) Math.ceil(expectedSize / 0.75);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⎶":                        "\u23b6",
    	"≌":                           "\u224c",
    	"б":                             "\u0431",
    	"„":                           "\u201e",
    	"∵":                          "\u2235",
    	"∵":                         "\u2235",
    	"⦰":                         "\u29b0",
    	"϶":                           "\u03f6",
    	"ℬ":                          "\u212c",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CacheTest.kt

        server.enqueue(builder.build())
        if (responseCode == HttpURLConnection.HTTP_CLIENT_TIMEOUT) {
          // 408's are a bit of an outlier because we may repeat the request if we encounter this
          // response code. In this scenario, there are 2 responses: the initial 408 and then the 200
          // because of the retry. We just want to ensure the initial 408 isn't cached.
          expectedResponseCode = 200
          server.enqueue(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		})
    	}
    }
    
    func TestPodStatusChange(t *testing.T) {
    	fakeNow := metav1.Date(2015, 1, 1, 12, 0, 0, 0, time.UTC)
    
    	// Because of the logic that prevents NC from evicting anything when all Nodes are NotReady
    	// we need second healthy node in tests. Because of how the tests are written we need to update
    	// the status of this Node.
    	healthyNodeNewStatus := v1.NodeStatus{
    		Conditions: []v1.NodeCondition{
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  9. src/net/http/server.go

    		// this is a pipelined HTTP request. Prior to Go 1.11 we used to
    		// send on the CloseNotify channel and cancel the context here,
    		// but the behavior was documented as only "may", and we only
    		// did that because that's how CloseNotify accidentally behaved
    		// in very early Go releases prior to context support. Once we
    		// added context support, people used a Handler's
    		// Request.Context() and passed it along. Having that context
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// fields that are unknown because they were not specified on the object schema are included in equality checks
    				"self.withUnknownList[0] != self.withUnknownList[1]",
    				"self.withUnknownList[1] == self.withUnknownList[2]",
    				"self.withUnknownList[3] == self.withUnknownList[4]",
    
    				// fields specified on the object schema that are unknown because the field's schema is unknown are also included equality checks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top