Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,714 for nvalid (0.26 sec)

  1. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/invalid5.toml

    Louis Jacomet <******@****.***> 1615370565 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 32 bytes
    - Viewed (0)
  2. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/invalid8.toml

    Louis Jacomet <******@****.***> 1615370565 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 33 bytes
    - Viewed (0)
  3. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/invalid9.toml

    Louis Jacomet <******@****.***> 1615370565 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 52 bytes
    - Viewed (0)
  4. src/crypto/x509/platform_test.go

    				SerialNumber: big.NewInt(1),
    				DNSNames:     []string{"valid.testing.golang.invalid"},
    				NotBefore:    now.Add(-time.Hour),
    				NotAfter:     now.Add(time.Hour),
    				ExtKeyUsage:  []ExtKeyUsage{ExtKeyUsageServerAuth},
    			},
    			dnsName:     "invalid.testing.golang.invalid",
    			expectedErr: "x509: certificate is valid for valid.testing.golang.invalid, not invalid.testing.golang.invalid",
    		},
    		{
    			name: "expired (future)",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 17:18:29 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/validation/validation_test.go

    				field.Invalid(newPath.Child("NodePortAddresses[1]"), "::1", "must be a valid CIDR")},
    		},
    		"invalid ipv6 ip format": {
    			addresses:    []string{"::1/128", "2001:db8::/32", "2001:db8:xyz/64"},
    			expectedErrs: field.ErrorList{field.Invalid(newPath.Child("NodePortAddresses[2]"), "2001:db8:xyz/64", "must be a valid CIDR")},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. src/go/types/decl.go

    			check.trace(obj.Pos(), "## cycle contains: %d values, %d type definitions", nval, ndef)
    		}
    		defer func() {
    			if valid {
    				check.trace(obj.Pos(), "=> cycle is valid")
    			} else {
    				check.trace(obj.Pos(), "=> error: cycle is invalid")
    			}
    		}()
    	}
    
    	if !tparCycle {
    		// A cycle involving only constants and variables is invalid but we
    		// ignore them here because they are reported via the initialization
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/HostSpecifier.java

          ParseException parseException = new ParseException("Invalid host specifier: " + specifier, 0);
          parseException.initCause(e);
          throw parseException;
        }
      }
    
      /**
       * Determines whether {@code specifier} represents a valid {@link HostSpecifier} as described in
       * the documentation for {@link #fromValid(String)}.
       */
      public static boolean isValid(String specifier) {
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/environment/environment_test.go

    						t.Fatal(err)
    					}
    					for _, valid := range tc.validExpressions {
    						if ok, err := isValid(validationEnv, valid, activation); !ok {
    							if err != nil {
    								t.Errorf("expected expression to be valid but got %v", err)
    							}
    							t.Error("expected expression to return true")
    						}
    					}
    					for _, invalid := range tc.invalidExpressions {
    						if ok, _ := isValid(validationEnv, invalid, activation); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser_test.go

    		{"//line :x:1\n", valid, ":x", 1, 0},
    		{"//line foo ::1\n", valid, "foo :", 1, 0},
    		{"//line foo:123abc:1\n", valid, "foo:123abc", 1, 0},
    		{"//line foo :123:1\n", valid, "foo ", 123, 1},
    		{"//line ::123\n", valid, ":", 123, 0},
    
    		// effect of valid //line directives on columns
    		{"//line :x:1:10\n", valid, ":x", 1, 10},
    		{"//line foo ::1:2\n", valid, "foo :", 1, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 16:30:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/evex.go

    		}
    	}
    	return badOpSuffix
    }
    
    // IsValid reports whether suffix is valid.
    // Empty suffixes are valid.
    func (suffix opSuffix) IsValid() bool {
    	return suffix != badOpSuffix
    }
    
    // String returns suffix printed representation.
    //
    // It matches the string that was used to create suffix with NewX86Suffix()
    // for valid suffixes.
    // For all invalid suffixes, special marker is returned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
Back to top