Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,344 for valid (0.73 sec)

  1. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

        final Iterable<String> invalidCases =
            Iterables.concat(INVALID_NAME, VALID_IP_ADDRS, INVALID_IP_ADDRS);
    
        for (String valid : validCases) {
          assertTrue(valid, InternetDomainName.isValid(valid));
        }
    
        for (String invalid : invalidCases) {
          assertFalse(invalid, InternetDomainName.isValid(invalid));
        }
      }
    
      public void testToString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/link.go

    	s   string
    	cut int // before this index, no valid domains
    }
    
    func (v *validDomainChecker) skip(i int) {
    	v.s = v.s[i:]
    	v.cut -= i
    }
    
    // parseValidDomain parses a valid domain.
    // https://github.github.com/gfm/#valid-domain
    //
    // If s starts with a valid domain, parseValidDomain returns
    // the length of that domain and true. If s does not start with
    // a valid domain, parseValidDomain returns n, false,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. pkg/api/v1/pod/util_test.go

    		name       string
    		containers []v1.Container
    		port       intstr.IntOrString
    		expected   int
    		pass       bool
    	}{{
    		name:       "valid int, no ports",
    		containers: []v1.Container{{}},
    		port:       intstr.FromInt32(93),
    		expected:   93,
    		pass:       true,
    	}, {
    		name: "valid int, with ports",
    		containers: []v1.Container{{Ports: []v1.ContainerPort{{
    			Name:          "",
    			ContainerPort: 11,
    			Protocol:      "TCP",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  4. src/go/token/position.go

    //
    //	file:line:column    valid position with file name
    //	file:line           valid position with file name but no column (column == 0)
    //	line:column         valid position without file name
    //	line                valid position without file name and no column (column == 0)
    //	file                invalid position with file name
    //	-                   invalid position without file name
    func (pos Position) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/scope.go

    // The results are guaranteed to be valid only if the type-checked
    // AST has complete position information. The extent is undefined
    // for Universe and package scopes.
    func (s *Scope) Pos() syntax.Pos { return s.pos }
    func (s *Scope) End() syntax.Pos { return s.end }
    
    // Contains reports whether pos is within the scope's extent.
    // The result is guaranteed to be valid only if the type-checked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/go/types/scope.go

    // The results are guaranteed to be valid only if the type-checked
    // AST has complete position information. The extent is undefined
    // for Universe and package scopes.
    func (s *Scope) Pos() token.Pos { return s.pos }
    func (s *Scope) End() token.Pos { return s.end }
    
    // Contains reports whether pos is within the scope's extent.
    // The result is guaranteed to be valid only if the type-checked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. cmd/endpoint-ellipses_test.go

    		{":9000", []string{"/export1{1...32}", "/export1{1...32}"}, false},
    		// Same host cannot export same disk on two ports - special case localhost.
    		{":9001", []string{"http://localhost:900{1...2}/export{1...64}"}, false},
    		// Valid inputs.
    		{":9000", []string{"/export1"}, true},
    		{":9000", []string{"/export1", "/export2", "/export3", "/export4"}, true},
    		{":9000", []string{"/export1{1...64}"}, true},
    		{":9000", []string{"/export1{01...64}"}, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_podschedulingcontext_test.go

    					"apps.kubernetes.io/name": "test",
    				}
    				return schedulingCtx
    			}(),
    		},
    		"bad-labels": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:18:08 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    					"apps.kubernetes.io/name": "test",
    				}
    				return template
    			}(),
    		},
    		"bad-labels": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModule.java

        }
    
        /**
         * Modifies a dependency.
         *
         * @param dependencyNotation dependency to modify
         * @return the modified dependency
         * @see DependencyFactory#create(CharSequence) Valid dependency notation for this method
         * @since 8.0
         */
        public static ExternalModuleDependency call(DependencyModifier self, CharSequence dependencyNotation) {
            return self.modify(dependencyNotation);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top