Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,910 for nvalid (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/testdata/client-valid.pem

    deads2k <******@****.***> 1483645449 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 20:06:38 UTC 2017
    - 635 bytes
    - Viewed (0)
  5. src/go/types/labels.go

    				// whose execution terminates."
    				valid := false
    				if t := b.enclosingTarget(name); t != nil {
    					switch t.Stmt.(type) {
    					case *ast.SwitchStmt, *ast.TypeSwitchStmt, *ast.SelectStmt, *ast.ForStmt, *ast.RangeStmt:
    						valid = true
    					}
    				}
    				if !valid {
    					check.errorf(s.Label, MisplacedLabel, "invalid break label %s", name)
    					return
    				}
    
    			case token.CONTINUE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/invalid2.toml

    Louis Jacomet <******@****.***> 1615370565 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 34 bytes
    - Viewed (0)
  7. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/invalid4.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)
  8. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/invalid6.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)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/status_strategy_test.go

    			isValid: true,
    		},
    	}
    
    	for _, tc := range tcs {
    		errs := strategy.ValidateUpdate(ctx, tc.obj, tc.old)
    		if tc.isValid && len(errs) > 0 {
    			t.Errorf("%v: unexpected error: %v", tc.name, errs)
    		}
    		if !tc.isValid && len(errs) == 0 {
    			t.Errorf("%v: unexpected non-error", tc.name)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 22:16:10 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. releasenotes/notes/invalid-rbac-filter.yaml

    dwq <******@****.***> 1678205805 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 07 16:16:45 UTC 2023
    - 238 bytes
    - Viewed (0)
Back to top