Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for 99999999ss (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/seat_seconds_test.go

    		expectFloat float64
    		expectStr   string
    	}{
    		{ss: SeatSeconds(1), expectFloat: 1.0 / ssScale, expectStr: "0.00000001ss"},
    		{ss: SeatSeconds(ssScale - 1), expectFloat: (ssScale - 1) / ssScale, expectStr: "0.99999999ss"},
    		{ss: 0, expectFloat: 0, expectStr: "0.00000000ss"},
    		{ss: SeatsTimesDuration(1, time.Second), expectFloat: 1, expectStr: "1.00000000ss"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 29 20:20:16 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. src/time/export_test.go

    	stdFracSecond9 | 5<<stdArgShift: ".99999",
    	stdFracSecond9 | 6<<stdArgShift: ".999999",
    	stdFracSecond9 | 7<<stdArgShift: ".9999999",
    	stdFracSecond9 | 8<<stdArgShift: ".99999999",
    	stdFracSecond9 | 9<<stdArgShift: ".999999999",
    }
    
    var Quote = quote
    
    var AppendInt = appendInt
    var AppendFormatAny = Time.appendFormat
    var AppendFormatRFC3339 = Time.appendFormatRFC3339
    var ParseAny = parse
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 19:23:32 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. src/text/tabwriter/tabwriter_test.go

    	},
    
    	{
    		"13c",
    		8, 8, 1, '\t', FilterHTML,
    		"4444\t333\t22\t1\t333\n" +
    			"999999999\t22\n" +
    			"7\t22\n" +
    			"\t\t\t88888888\n" +
    			"\n" +
    			"666666\t666666\t666666\t4444\n" +
    			"1\t1\t<font color=red attr=日本語>999999999</font>\t0000000000\n",
    
    		"4444\t\t333\t22\t1\t333\n" +
    			"999999999\t22\n" +
    			"7\t\t22\n" +
    			"\t\t\t\t88888888\n" +
    			"\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_clean_cache.txt

    go clean -r -modcache
    ! exists ./test.out
    ! exists ../replaced/test.out  # BUG: should still exist
    
    # 'go clean -modcache' should not download anything before cleaning.
    go mod edit -require rsc.io/quote@v1.99999999.0-not-a-real-version
    go clean -modcache
    ! stderr 'finding rsc.io'
    go mod edit -droprequire rsc.io/quote
    
    ! go clean -modcache m
    stderr 'go: clean -modcache cannot be used with package arguments'
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. 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)
  6. okhttp/src/test/java/okhttp3/internal/idn/PunycodeTest.kt

        assertNull(Punycode.decode("xn--cat-ñ3h"))
      }
    
      @Test fun unterminatedCodePoint() {
        assertNull(Punycode.decode("xn--cat-n"))
      }
    
      @Test fun overflowI() {
        assertNull(Punycode.decode("xn--99999999"))
      }
    
      @Test fun overflowMaxCodePoint() {
        assertNull(Punycode.decode("xn--a-b.net"))
        assertNull(Punycode.decode("xn--a-9b.net"))
        assertEquals("a՚.net", Punycode.decode("xn--a-99b.net"))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. pkg/kubelet/pod/pod_manager_test.go

    			Namespace:   "default",
    			Annotations: map[string]string{kubetypes.ConfigSourceAnnotationKey: "file"},
    		},
    	}
    
    	expectedPods := []*v1.Pod{
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				UID:         "999999999",
    				Name:        "taco",
    				Namespace:   "default",
    				Annotations: map[string]string{kubetypes.ConfigSourceAnnotationKey: "api"},
    			},
    		},
    		staticPod,
    	}
    	updates := append(expectedPods, mirrorPod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/go/internal/fsys/fsys_test.go

    -- overlayfiles/subdir7_asubsubdir_file.txt --
    -- overlayfiles/subdir7_zsubsubdir_file.txt --
    -- overlayfiles/parentoverwritten_subdir1 --
    x
    -- overlayfiles/subdir9_this_file_is_overlaid.txt --
    99999999
    -- overlayfiles/subdir11 --
    -- overlayfiles/this_is_a_directory/file.txt --
    -- overlayfiles/textfile_txt_file.go --
    x
    `
    
    func TestReadDir(t *testing.T) {
    	initOverlay(t, readDirOverlay)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
Back to top