Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 5,714 for nvalid (0.21 sec)

  1. maven-model-builder/src/test/resources/poms/validation/invalid-aggregator-packaging-pom.xml

    Michael Osipov <******@****.***> 1416744059 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 997 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/validtype.go

    		//           in that issue `type A[P any] [1]P` is a valid type on its own
    		//           and the (uninstantiated) A is recorded in check.valids. As a
    		//           consequence, when checking the remaining declarations, which
    		//           are not valid, the validity check ends prematurely because A
    		//           is considered valid, even though its validity depends on the
    		//           type argument provided to it.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/go/types/validtype.go

    		//           in that issue `type A[P any] [1]P` is a valid type on its own
    		//           and the (uninstantiated) A is recorded in check.valids. As a
    		//           consequence, when checking the remaining declarations, which
    		//           are not valid, the validity check ends prematurely because A
    		//           is considered valid, even though its validity depends on the
    		//           type argument provided to it.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/endpoint.go

    		return host, port, nil
    	}
    
    	return "", "", errors.Errorf("hostport %s: host '%s' must be a valid IP address or a valid RFC-1123 DNS subdomain", hostport, host)
    }
    
    // ParsePort parses a string representing a TCP port.
    // If the string is not a valid representation of a TCP port, ParsePort returns an error.
    func ParsePort(port string) (int, error) {
    	portInt, err := netutils.ParsePort(port, true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 11 15:08:59 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  5. internal/arn/arn_test.go

    			wantErr: false,
    		},
    		{
    			name: "invalid ARN length must fail",
    			args: args{
    				arnStr: "arn:minio:",
    			},
    			wantArn: ARN{},
    			wantErr: true,
    		},
    		{
    			name: "invalid ARN partition must fail",
    			args: args{
    				arnStr: "arn:invalid:iam:us-east-1::role/my-role",
    			},
    			wantArn: ARN{},
    			wantErr: true,
    		},
    		{
    			name: "invalid ARN service must fail",
    			args: args{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 08:31:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. pkg/config/validation/agent/validation.go

    		return fmt.Errorf("domain name %q invalid (top level domain %q cannot be all-numeric)", domain, topLevelDomain)
    	}
    	for i, label := range parts {
    		// Allow the last part to be empty, for unambiguous names like `istio.io.`
    		if i == len(parts)-1 && label == "" {
    			return nil
    		}
    		if !labels.IsDNS1123Label(label) {
    			return fmt.Errorf("domain name %q invalid (label %q invalid)", domain, label)
    		}
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		wantErr string
    		kmsv2   bool
    		kmsv1   bool
    	}{
    		{
    			desc:    "Invalid config file path",
    			config:  "invalid/path",
    			want:    nil,
    			wantErr: `error reading encryption provider configuration file "invalid/path"`,
    		},
    		{
    			desc:    "Empty config file content",
    			config:  "testdata/invalid-configs/kms/invalid-content.yaml",
    			want:    nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/externalcontrolplane-valid-urls.yaml

    Michael Weiner <******@****.***> 1697542898 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 11:41:38 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/unsafe/unsafe.go

    //
    // The following patterns involving Pointer are valid.
    // Code not using these patterns is likely to be invalid today
    // or to become invalid in the future.
    // Even the valid patterns below come with important caveats.
    //
    // Running "go vet" can help find uses of Pointer that do not conform to these patterns,
    // but silence from "go vet" is not a guarantee that the code is valid.
    //
    // (1) Conversion of a *T1 to Pointer to *T2.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. pkg/apis/apiserverinternal/validation/validation.go

    // isValidAPIVersion tests whether the value passed is a valid apiVersion. A
    // valid apiVersion contains a version string that matches DNS_LABEL format,
    // with an optional group/ prefix, where the group string matches DNS_SUBDOMAIN
    // format. If the value is not valid, a list of error strings is returned.
    // Otherwise an empty list (or nil) is returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 21:43:49 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top