Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for 11th (0.21 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/util/NumberUtilTest.groovy

            input | ordinal
            0     | "0th"
            1     | "1st"
            2     | "2nd"
            3     | "3rd"
            4     | "4th"
            10    | "10th"
            11    | "11th"
            12    | "12th"
            13    | "13th"
            14    | "14th"
            20    | "20th"
            21    | "21st"
            22    | "22nd"
            23    | "23rd"
            24    | "24th"
            100   | "100th"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. pkg/controller/nodeipam/ipam/cidrset/cidr_set_test.go

    			description:    "1st IP address indexed with IPv4",
    		},
    		{
    			clusterCIDRStr: "127.123.0.0/16",
    			subnetMaskSize: 24,
    			index:          15,
    			CIDRBlock:      "127.123.15.0/24",
    			description:    "16th IP address indexed with IPv4",
    		},
    		{
    			clusterCIDRStr: "192.168.5.219/28",
    			subnetMaskSize: 32,
    			index:          5,
    			CIDRBlock:      "192.168.5.213/32",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 08:53:03 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  3. testing/performance/src/templates/generateLotsOfDeprecationWarnings/build.gradle

     * limitations under the License.
     */
    
    @groovy.transform.CompileStatic
    void createDeprecations(int iterations) {
        for (int i = 0; i < iterations; i++) {
            // every 10th deprecation should have a different message
            if (i % 10 == 0) {
                nagUserOfDeprecated("Some unique deprecation No #\$i")
            }
            nagUserOfDeprecated("Some repetitive Deprecation")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    connate with the Rays, and immutable; as may appear by the 13th, 14th, and 15th Observations, compared with the fourth and eighteenth. By the Precedent Observations it appears also, that whiteness is a dissimilar mixture of all Colours, and that Light is a mixture of Rays endued with all those Colours. For, considering the multitude of the Rings of Colours in the 3d, 12th, and 24th Observations, it is manifest, that although in the 4th and 18th Observations there appear no more than eight or nine of...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  5. src/testdata/Isaac.Newton-Opticks.txt

    immutable; as may appear by the 13th, 14th, and 15th Observations,
    compared with the fourth and eighteenth.
    
    By the Precedent Observations it appears also, that whiteness is a
    dissimilar mixture of all Colours, and that Light is a mixture of Rays
    endued with all those Colours. For, considering the multitude of the
    Rings of Colours in the 3d, 12th, and 24th Observations, it is manifest,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/NumberUtil.java

                return result.toPlainString() + UNITS.get(baseExponent);
            }
        }
    
        /**
         * gets ordinal String representation of given value (e.g. 1 -&gt; 1st, 12 -&gt; 12th, 22 -&gt; 22nd, etc.)
         */
        public static String ordinal(int value) {
            switch (value % 100) {
                case 11:
                case 12:
                case 13:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer_test.go

    			checker: func(t *testing.T, c []gcCycleResult) {
    				n := len(c)
    				if n > 13 {
    					// After the 12th GC, the heap will stop growing. Now, just make sure that:
    					// 1. Utilization isn't varying _too_ much, and
    					// 2. The pacer is mostly keeping up with the goal.
    					// We start at the 13th here because we want to use the 12th as a reference.
    					assertInRange(t, "goal ratio", c[n-1].goalRatio(), 0.95, 1.05)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  8. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    		assert.Empty(t, tracker.pods)
    		metrics.PodStartSLIDuration.Reset()
    	})
    }
    
    func TestSinglePodMultipleDownloadsAndRestartsRecorded(t *testing.T) {
    
    	t.Run("single pod; started in 30s, image pulling between 10th and 20th seconds", func(t *testing.T) {
    
    		wants := `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. cmd/data-usage.go

    		if err != nil {
    			scannerLogIf(ctx, err)
    			continue
    		}
    		if attempts > 10 {
    			saveConfig(ctx, objAPI, dataUsageObjNamePath+".bkp", dataUsageJSON) // Save a backup every 10th update.
    			attempts = 1
    		}
    		if err = saveConfig(ctx, objAPI, dataUsageObjNamePath, dataUsageJSON); err != nil {
    			scannerLogOnceIf(ctx, err, dataUsageObjNamePath)
    		}
    		attempts++
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/encoding/binary/varint_test.go

    			in:        []byte{0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01},
    			wantN:     -11,
    			wantValue: 0,
    		},
    		{
    			name:      "invalid: 10th byte",
    			in:        []byte{0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f},
    			wantN:     -10,
    			wantValue: 0,
    		},
    	}
    
    	for _, tt := range tests {
    		tt := tt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 16 23:09:19 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top