Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for dsts (0.05 sec)

  1. tests/integration/pilot/common/routing.go

    `,
    			checkForN: func(src echo.Caller, dests echo.Services, opts *echo.CallOptions) echo.Checker {
    				return check.And(
    					check.OK(),
    					func(result echo.CallResult, err error) error {
    						errorThreshold := 10
    						if len(split) != len(dests) {
    							// shouldn't happen
    							return fmt.Errorf("split configured for %d destinations, but framework gives %d", len(split), len(dests))
    						}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/validation/validation_test.go

    			ClientConfig: validClientConfig,
    			SideEffects:  &noSideEffect,
    		},
    		}, true),
    		expectedError: `webhooks[1].name: Invalid value: "k8s.io": should be a domain with at least three segments separated by dots, webhooks[2].name: Required value`,
    	}, {
    		name: "Webhooks must have unique names when created",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name:         "webhook.k8s.io",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  3. pkg/apis/apps/validation/validation_test.go

    		name: "zero-length name",
    		set:  mkStatefulSet(&validPodTemplate, tweakName("")),
    		errs: field.ErrorList{
    			field.Required(field.NewPath("metadata", "name"), ""),
    		},
    	}, {
    		name: "name-with-dots",
    		set:  mkStatefulSet(&validPodTemplate, tweakName("abc.123")),
    		errs: field.ErrorList{
    			field.Invalid(field.NewPath("metadata", "name"), "abc.123", ""),
    		},
    	}, {
    		name: "long name",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.cc

                                                 int src_index, TF_Output dst) {
      opts->tensor_id_data.push_back(src_name);
      const string& src_name_str = opts->tensor_id_data.back();
      // We don't need to store dst's name in tensor_id_data, since `dst` must
      // outlive the ImportGraphDef call.
      opts->opts.input_map[TensorId(src_name_str, src_index)] = ToTensorId(dst);
    }
    
    void TF_ImportGraphDefOptionsRemapControlDependency(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

            p1 = path1.lastIndexOf('/');
            p2 = path2.lastIndexOf('/');
            l1 = path1.length() - p1;
            l2 = path2.length() - p2;
    
            // anything with dots voids comparison
            if (l1 > 1 && path1.charAt(p1 + 1) == '.')
                return true;
            if (l2 > 1 && path2.charAt(p2 + 1) == '.')
                return true;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    		gatewaySemantics := cfg.Annotations[constants.InternalGatewaySemantics] == constants.GatewaySemanticsGateway
    
    		v := Validation{}
    
    		// Gateway name must conform to the DNS label format (no dots)
    		if !labels.IsDNS1123Label(name) && !gatewaySemantics {
    			v = AppendValidation(v, fmt.Errorf("invalid gateway name: %q", name))
    		}
    		value, ok := cfg.Spec.(*networking.Gateway)
    		if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. src/crypto/x509/x509_test.go

    	{"", ".", false},
    	{".", "", false},
    	{".", ".", false},
    	{"example.com", "example.com.", true},
    	{"example.com.", "example.com", false},
    	{"example.com.", "example.com.", true}, // perfect matches allow trailing dots in patterns
    	{"*.com.", "example.com.", false},
    	{"*.com.", "example.com", false},
    	{"*.com", "example.com", true},
    	{"*.com", "example.com.", true},
    	{"foo:bar", "foo:bar", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			pathOfFieldPath: path,
    			schema:          &sts,
    			errDetail:       "does not refer to a valid field",
    		},
    		{
    			name:            "Duplicate dots",
    			fieldPath:       ".a..b",
    			pathOfFieldPath: path,
    			schema:          &sts,
    			errDetail:       "does not refer to a valid field",
    		},
    		{
    			name:            "object of array",
    			fieldPath:       ".list.a-b.34",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

            "properties": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
Back to top