Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 177 for zero (0.53 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    //
    // Before rewrite:
    //   output = SpaceToBatchND(input, block_shape, paddings)
    // Let:
    //   [batch] + spatial_shape + remaining_shape = input.shape
    //   M = spatial_shape.rank
    // After rewrite:
    //   padded = zero-pad input with paddings
    //     The spatial_shape component of input.shape pads with paddings[*, 0]
    //     before each dimension, and paddings[*, 1] after each dimension.
    //   reshaped = reshape padded to:
    //     [batch]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  2. src/testing/testing.go

    		}
    	}()
    	var pc [maxStackLen]uintptr
    	// Skip two extra frames to account for this function
    	// and runtime.Callers itself.
    	n := runtime.Callers(skip+2, pc[:])
    	if n == 0 {
    		panic("testing: zero callers found")
    	}
    	frames := runtime.CallersFrames(pc[:n])
    	var firstFrame, prevFrame, frame runtime.Frame
    	for more := true; more; prevFrame = frame {
    		frame, more = frames.Next()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    // nlzX returns the number of leading zeros.
    func nlz64(x int64) int { return bits.LeadingZeros64(uint64(x)) }
    func nlz32(x int32) int { return bits.LeadingZeros32(uint32(x)) }
    func nlz16(x int16) int { return bits.LeadingZeros16(uint16(x)) }
    func nlz8(x int8) int   { return bits.LeadingZeros8(uint8(x)) }
    
    // ntzX returns the number of trailing zeros.
    func ntz64(x int64) int { return bits.TrailingZeros64(uint64(x)) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar_test.go

    				{
    					Hostname: "bar",
    				},
    				{
    					Hostname: "barprime",
    				},
    			},
    			nil,
    		},
    		{
    			"sidecar-with-zero-egress",
    			configs2,
    			nil,
    			nil,
    			nil,
    			nil,
    		},
    		{
    			"sidecar-with-zero-egress-multiple-service",
    			configs2,
    			services4,
    			nil,
    			[]*Service{
    				{
    					Hostname: "bar",
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				LocalStorageCapacityIsolation: utilpointer.Bool(true),
    				PodLogsDir:                    "/custom/path",
    			},
    		},
    		{
    			"NodeStatusUpdateFrequency is not zero",
    			&v1beta1.KubeletConfiguration{
    				NodeStatusUpdateFrequency: metav1.Duration{Duration: 1 * time.Minute},
    			},
    			&v1beta1.KubeletConfiguration{
    				EnableServer:       utilpointer.Bool(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    	// active.
    	future [3]memRecordCycle
    }
    
    // memRecordCycle
    type memRecordCycle struct {
    	allocs, frees           uintptr
    	alloc_bytes, free_bytes uintptr
    }
    
    // add accumulates b into a. It does not zero b.
    func (a *memRecordCycle) add(b *memRecordCycle) {
    	a.allocs += b.allocs
    	a.frees += b.frees
    	a.alloc_bytes += b.alloc_bytes
    	a.free_bytes += b.free_bytes
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. gradle/verification-metadata.xml

             </artifact>
          </component>
          <component group="net.openhft" name="zero-allocation-hashing" version="0.10.1">
             <artifact name="zero-allocation-hashing-0.10.1.jar">
                <pgp value="CB3808E03CD602A6DC5B882552931F4B72B4F54C"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  8. src/encoding/json/decode_test.go

    				// There's no reason for ptr to point to non-zero data,
    				// as we decode into new(right-type), so the data is
    				// discarded.
    				// This can easily mean tests that silently don't test
    				// what they should. To test decoding into existing
    				// data, see TestPrefilled.
    				t.Fatalf("%s: unmarshalTest.ptr %#v is not a pointer to a zero value", tt.Where, tt.ptr)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. src/math/rand/v2/chacha8_test.go

    	}
    
    	p.Seed(chacha8seed)
    	h.Reset()
    
    	if n, err := p.Read(make([]byte, 0)); err != nil {
    		t.Errorf("zero length read: %v", err)
    	} else if n != 0 {
    		t.Errorf("Read zero length: got %d, expected %d", n, 0)
    	}
    
    	var n int
    	for n < chacha8outlen {
    		if IntN(2) == 0 {
    			out, err := p.MarshalBinary()
    			if err != nil {
    				t.Fatal(err)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 55K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    			},
    			reasons: ConflictReasons{ErrReasonNotEnoughSpace},
    		},
    		"zero-storage": {
    			pvcs: []*v1.PersistentVolumeClaim{provisionedPVC},
    			capacities: []*storagev1.CSIStorageCapacity{
    				makeCapacity("net", waitClassWithProvisioner, node1, "0Mi", ""),
    			},
    			reasons: ConflictReasons{ErrReasonNotEnoughSpace},
    		},
    		"zero-volume-size": {
    			pvcs: []*v1.PersistentVolumeClaim{provisionedPVC},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top