Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for 20th (0.04 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/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)
  3. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    foregoing Observations._ Having given my Observations of these Colours, before I make use of them to unfold the Causes of the Colours of natural Bodies, it is convenient that by the simplest of them, such as are the 2d, 3d, 4th, 9th, 12th, 18th, 20th, and 24th, I first explain the more compounded. And first to shew how the Colours in the fourth and eighteenth Observations are produced, let there be taken in any Right Line from the Point Y, [in _Fig._ 6.] the Lengths YA, YB, YC, YD, YE, YF, YG, YH, in...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  4. src/testdata/Isaac.Newton-Opticks.txt

    Having given my Observations of these Colours, before I make use of them
    to unfold the Causes of the Colours of natural Bodies, it is convenient
    that by the simplest of them, such as are the 2d, 3d, 4th, 9th, 12th,
    18th, 20th, and 24th, I first explain the more compounded. And first to
    shew how the Colours in the fourth and eighteenth Observations are
    produced, let there be taken in any Right Line from the Point Y, [in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/cli-runtime/pkg/printers/bench_test.go

    		Rows: []metav1.TableRow{},
    	}
    	for _, pod := range newBenchmarkList().Items {
    		raw, _ := json.Marshal(pod)
    		table.Rows = append(table.Rows, metav1.TableRow{
    			Cells: []interface{}{pod.GetName(), "1/1", "Ready", int64(0), "20h"},
    			Object: runtime.RawExtension{
    				Raw:    raw,
    				Object: &pod,
    			},
    		})
    	}
    	return table
    }
    
    func BenchmarkDiscardingPrinter(b *testing.B) {
    	data := newBenchmarkList()
    	b.ResetTimer()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 00:36:07 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  8. src/runtime/mpagealloc_32bit.go

    		mappedReady = scavIndexSize
    	} else {
    		// Set up the scavenge index.
    		s.chunks = scavengeIndexArray[:]
    	}
    	s.min.Store(1) // The 0th chunk is never going to be mapped for the heap.
    	s.max.Store(uintptr(len(s.chunks)))
    	return
    }
    
    // sysGrow is a no-op on 32-bit platforms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 20:08:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-default-attr.pbtxt

    76\035\023\262\2762)\275>\220\310\202\272\036\310\343\276Zw\372\274\254\343\020?\262\t\254\276\270\217\363>\032\013\241\271K\006\353>y\246\324\267\221\334\217\276u\'\335\270\300\356.=1\264\224>\370\213V8k\202z>j\360\t<\031\244\2027\373\216\032\275\202H\235\270-\205a\275\352\257\034\276#\227\323\267\343\002\336;\264|p=]b`;\200\000\013\276z\021\341\267\205\2665\267%8\245\266\002Y!\277\345`6\274x\240g\277?\221\204\272/\254+\277\234\302\204\275\243w\022\276\334%:\275\372\375>?\213\326\202\271\216\34...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:32:15 UTC 2020
    - 12K bytes
    - Viewed (0)
Back to top