Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 123 for SAME (0.07 sec)

  1. src/crypto/x509/verify_test.go

    	// matches, as due to root store semantics it is plausible that (at least on the system
    	// verifiers) multiple identical (looking) chains may be returned when two roots with the
    	// same subject are present.
    	for _, expectedChain := range test.expectedChains {
    		var match bool
    		for _, chain := range chains {
    			if doesMatch(expectedChain, chain) {
    				match = true
    				break
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			// On Windows, time.Now() is not as precise, 2 consecutive calls may return the same timestamp.
    			// Thus, all the QueuedPodInfos can have the same timestamps, which can be an issue
    			// when we're expecting them to be popped in a certain order (the Less function
    			// sorts them by Timestamps if they have the same Pod Priority).
    			// Using a fake clock for the queue and incrementing it after each added Pod will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    			}
    			// Setup tests for various forms of the API
    			// TODO: it may be necessary to vary the inputs of the hash and ensure we get a different backend
    			// But its pretty hard to test that, so for now just ensure we hit the same one.
    			t.RunTraffic(TrafficTestCase{
    				name:   "source ip " + c.Config().Service,
    				config: svc + tmpl.MustEvaluate(destRule, "useSourceIp: true"),
    				call:   c.CallOrFail,
    				opts:   callOpts,
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				ValsEqualThemselvesAndDataLiteral("self.val5", "self.val6", fmt.Sprintf("%d", math.MaxInt64)),
    				"self.val1 == self.val6", // integer with no format is the same as int64
    				"type(self.val1) == int",
    				fmt.Sprintf("self.val3 + 1 == %d + 1", math.MaxInt32), // CEL integers are 64 bit
    				"type(self.val3) == int",
    				"type(self.val5) == int",
    			},
    			errors: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

              // TODO(b/287306548): we need more rigorous check to make sure the
              // node we're updating is the right one for now we're just ensuring
              // they have the same number of input, output and first output is
              // the same
              if (key_inputs.size() == inputs.size() &&
                  key_outputs.size() == outputs.size() &&
                  key_outputs[0] == outputs[0]) {
                ret &=
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one_test.go

    			}
    		})
    	}
    }
    
    // The point of this test is to show that you:
    //   - get the same priority for a zero-request pod as for a pod with the defaults requests,
    //     both when the zero-request pod is already on the node and when the zero-request pod
    //     is the one being scheduled.
    //   - don't get the same score no matter what we schedule.
    func TestZeroRequest(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    	if a1 == a2 {
    		t.Logf("made two requests from a single conn %q (as expected)", a1)
    	} else {
    		t.Errorf("server reported requests from %q and %q; expected same connection", a1, a2)
    	}
    
    	// The two requests should have used the same connection,
    	// and there should not have been a second connection that
    	// was created by racing dial against reuse.
    	// (The first get was completed when the second get started.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top