Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Dests (0.07 sec)

  1. pkg/apis/core/validation/validation_test.go

    	delete(missingBasicAuthUsernamePasswordKeys.Data, core.BasicAuthPasswordKey)
    
    	tests := map[string]struct {
    		secret core.Secret
    		valid  bool
    	}{
    		"valid":                         {validBasicAuthSecret(), true},
    		"missing username and password": {missingBasicAuthUsernamePasswordKeys, false},
    	}
    
    	for name, tc := range tests {
    		errs := ValidateSecret(&tc.secret)
    		if tc.valid && len(errs) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.19.md

    - Resolves flakes in the Ingress conformance tests due to conflicts with controllers updating the Ingress object ([#98430](https://github.com/kubernetes/kubernetes/pull/98430), [@liggitt](https://github.com/liggitt)) [SIG Network and Testing]
    
    ## Dependencies
    
    ### Added
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  3. RELEASE.md

    *   Add `is_cpu_target_available`, which indicates whether or not TensorFlow was
        built with support for a given CPU target. This can be useful for skipping
        target-specific tests if a target is not supported.
    
    *   `tf.data`
        * Support `data.experimental.distribued_save`. `distribued_save` uses
          tf.data service
          (https://www.tensorflow.org/api_docs/python/tf/data/experimental/service)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/gateway-api-crd.yaml

                    items:
                      description: |-
                        SupportedFeature is used to describe distinct features that are covered by
                        conformance tests.
                      type: string
                    maxItems: 64
                    type: array
                    x-kubernetes-list-type: set
                type: object
            required:
            - spec
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/arithConst_test.go

    	test_int8{fn: xor_127_int8, fnname: "xor_127_int8", in: 127, want: 0},
    	test_int8{fn: xor_int8_127, fnname: "xor_int8_127", in: 127, want: 0}}
    
    // TestArithmeticConst tests results for arithmetic operations against constants.
    func TestArithmeticConst(t *testing.T) {
    	for _, test := range tests_uint64 {
    		if got := test.fn(test.in); got != test.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 633.8K bytes
    - Viewed (0)
Back to top