Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for 000000001s (0.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    				expectedFair:                []bool{true}, // "fair" is a bit odd-sounding here, but it "expectFair" here means expect `expectedAverages`
    				expectedAverages:            []float64{7.5},
    				expectedFairnessMargin:      []float64{0.00000001},
    				expectAllRequests:           true,
    				evalInqueueMetrics:          false,
    				evalExecutingMetrics:        true,
    				clk:                         clk,
    				counter:                     counter,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		in     string
    		expect string
    	}{
    		{"1Ki", "1Ki"},
    		{"1Mi", "1Mi"},
    		{"1Gi", "1Gi"},
    		{"1024Mi", "1Gi"},
    		{"1000M", "1G"},
    		{".001Ki", "1024m"},
    		{".000001Ki", "1024u"},
    		{".000000001Ki", "1024n"},
    		{".000000000001Ki", "2n"},
    	}
    
    	for _, item := range table {
    		q, err := ParseQuantity(item.in)
    		if err != nil {
    			t.Errorf("Couldn't parse %v", item.in)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. src/time/time.go

    }
    
    // format formats the representation of d into the end of buf and
    // returns the offset of the first character.
    func (d Duration) format(buf *[32]byte) int {
    	// Largest time is 2540400h10m10.000000000s
    	w := len(buf)
    
    	u := uint64(d)
    	neg := d < 0
    	if neg {
    		u = -u
    	}
    
    	if u < uint64(Second) {
    		// Special case: if duration is smaller than a second,
    		// use smaller units, like 1.2ms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    	{ASHRW, Ycx, Yrl, Yml, movDoubleShift, [4]uint8{Pe, 0xac, 0xad, 0}},
    
    	// load TLS base
    	{AMOVL, Ytls, Ynone, Yrl, movTLSReg, [4]uint8{0, 0, 0, 0}},
    	{AMOVQ, Ytls, Ynone, Yrl, movTLSReg, [4]uint8{0, 0, 0, 0}},
    	{0, 0, 0, 0, 0, [4]uint8{}},
    }
    
    func isax(a *obj.Addr) bool {
    	switch a.Reg {
    	case REG_AX, REG_AL, REG_AH:
    		return true
    	}
    
    	return a.Index == REG_AX
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // CHECK:           %[[DIVISOR:.*]] = "mhlo.reduce_window"(%[[ALL_ONES]], %[[ZERO]])
    // CHECK-SAME:        padding = dense<{{\[\[}}0, 0], [0, 0], [0, 0], [0, 1], [1, 1]]>
    // CHECK-SAME:        window_dimensions = dense<[1, 1, 1, 2, 3]>
    // CHECK-SAME:        window_strides = dense<[1, 1, 1, 4, 4]>
    // CHECK:           ^bb0(%[[ARG1:.*]]: tensor<f32>, %[[ARG2:.*]]: tensor<f32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top