Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 99999999ss (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/limits.go

    	MaxDurationSizeJSON = 32
    	// MaxDatetimeSizeJSON
    	// OpenAPI datetime strings follow RFC 3339, section 5.6, and the longest possible
    	// such string is 9999-12-31T23:59:59.999999999Z, which has length 30 - we add 2
    	// to allow for quotation marks
    	MaxDatetimeSizeJSON = 32
    	// MinDurationSizeJSON
    	// Golang allows a string of 0 to be parsed as a duration, so that plus 2 to account for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/JdkVersionProfileActivator.java

                } else if (token.isEmpty()) {
                    ranges.add(new RangeValue("", false));
                }
            }
            if (ranges.size() < 2) {
                ranges.add(new RangeValue("99999999", false));
            }
            return ranges;
        }
    
        private static class RangeValue {
            private String value;
    
            private boolean closed;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java

                } else if (token.isEmpty()) {
                    ranges.add(new RangeValue("", false));
                }
            }
            if (ranges.size() < 2) {
                ranges.add(new RangeValue("99999999", false));
            }
            return ranges;
        }
    
        private static class RangeValue {
            private String value;
    
            private boolean closed;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/time/format_test.go

    	// 9 digits
    	{"2021-09-29T16:04:33.000000000Z", 0},
    	{"2021-09-29T16:04:33.000000001Z", 1},
    	{"2021-09-29T16:04:33.100000000Z", 100_000_000},
    	{"2021-09-29T16:04:33.100000001Z", 100_000_001},
    	{"2021-09-29T16:04:33.999999999Z", 999_999_999},
    	{"2021-09-29T16:04:33.012345678Z", 12_345_678},
    	// 10 digits, truncates
    	{"2021-09-29T16:04:33.0000000000Z", 0},
    	{"2021-09-29T16:04:33.0000000001Z", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  5. pkg/config/validation/agent/validation_test.go

    		{
    			duration: &durationpb.Duration{Seconds: 1},
    			isValid:  true,
    		},
    		{
    			duration: &durationpb.Duration{Seconds: 31},
    			isValid:  true,
    		},
    		{
    			duration: &durationpb.Duration{Seconds: 999999999},
    			isValid:  false,
    		},
    	}
    
    	for _, check := range checks {
    		if got := ValidateConnectTimeout(check.duration); (got == nil) != check.isValid {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    func TestHandlerFinishSkipBigContentLengthRead(t *testing.T) {
    	setParallel(t)
    	conn := newTestConn()
    	conn.readBuf.WriteString(
    		"POST / HTTP/1.1\r\n" +
    			"Host: test\r\n" +
    			"Content-Length: 9999999999\r\n" +
    			"\r\n" + strings.Repeat("a", 1<<20))
    
    	ls := &oneConnListener{conn}
    	var inHandlerLen int
    	go Serve(ls, HandlerFunc(func(rw ResponseWriter, req *Request) {
    		inHandlerLen = conn.readBuf.Len()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top