Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for invalidPort (0.28 sec)

  1. security/pkg/k8s/chiron/utils_test.go

    		k8sCaCertFile     string
    		secretNames       []string
    		dnsNames          []string
    		serviceNamespaces []string
    
    		secretName      string
    		secretNameSpace string
    
    		invalidCert     bool
    		expectFail      bool
    		certificateData []byte
    	}{
    		{
    			name:              "read signed cert should succeed",
    			gracePeriodRatio:  0.6,
    			k8sCaCertFile:     "./test-data/example-ca-cert.pem",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/HostAndPort.java

       * @throws IllegalArgumentException if {@code host} contains a port number, or {@code port} is out
       *     of range.
       */
      public static HostAndPort fromParts(String host, int port) {
        checkArgument(isValidPort(port), "Port out of range: %s", port);
        HostAndPort parsedHost = fromString(host);
        checkArgument(!parsedHost.hasPort(), "Host has a port: %s", host);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/HostAndPort.java

       * @throws IllegalArgumentException if {@code host} contains a port number, or {@code port} is out
       *     of range.
       */
      public static HostAndPort fromParts(String host, int port) {
        checkArgument(isValidPort(port), "Port out of range: %s", port);
        HostAndPort parsedHost = fromString(host);
        checkArgument(!parsedHost.hasPort(), "Host has a port: %s", host);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

            result.executionReasons == ["No history is available."]
        }
    
        def "out of date when work fails validation"() {
            given:
            execute(unitOfWork)
    
            def invalidWork = builder
                .withValidator { context ->
                    context
                        .forType(UnitOfWork, false)
                        .visitPropertyProblem {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  5. cmd/erasure-multipart.go

    		partID := parts[i].PartNumber
    		if part.Error != "" || !part.Exists {
    			return oi, InvalidPart{
    				PartNumber: partID,
    			}
    		}
    
    		var pfi FileInfo
    		_, err := pfi.UnmarshalMsg(part.Data)
    		if err != nil {
    			// Maybe crash or similar.
    			bugLogIf(ctx, err)
    			return oi, InvalidPart{
    				PartNumber: partID,
    			}
    		}
    
    		partI := pfi.Parts[0]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/webhook/webhook_test.go

    			test:       "invalid server CA",
    			clientCert: clientCert, clientKey: clientKey, clientCA: caCert,
    			serverCert: serverCert, serverKey: serverKey, serverCA: invalidCert,
    			errRegex: errBadCertificate,
    		},
    		{
    			test:       "invalid client certificate",
    			clientCert: invalidCert, clientKey: clientKey, clientCA: caCert,
    			serverCert: serverCert, serverKey: serverKey, serverCA: caCert,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  7. cmd/object-api-errors.go

    	UploadID string
    }
    
    func (e InvalidUploadID) Error() string {
    	return "Invalid upload id " + e.UploadID
    }
    
    // InvalidPart One or more of the specified parts could not be found
    type InvalidPart struct {
    	PartNumber int
    	ExpETag    string
    	GotETag    string
    }
    
    func (e InvalidPart) Error() string {
    	return fmt.Sprintf("Specified part could not be found. PartNumber %d, Expected %s, got %s",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 22:19:00 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. cmd/utils.go

    		err = BucketPolicyNotFound{}
    	case "NoSuchLifecycleConfiguration":
    		err = BucketLifecycleNotFound{}
    	case "InvalidBucketName":
    		err = BucketNameInvalid{Bucket: bucket}
    	case "InvalidPart":
    		err = InvalidPart{}
    	case "NoSuchBucket":
    		err = BucketNotFound{Bucket: bucket}
    	case "NoSuchKey":
    		if object != "" {
    			err = ObjectNotFound{Bucket: bucket, Object: object}
    		} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
Back to top