Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 165 for Identical (0.26 sec)

  1. src/cmd/go/internal/script/cmds.go

    			Summary: "compare files for differences",
    			Detail: []string{
    				"By convention, file1 is the actual data and file2 is the expected data.",
    				"The command succeeds if the file contents are identical.",
    				"File1 can be 'stdout' or 'stderr' to compare the stdout or stderr buffer from the most recent command.",
    			},
    		},
    		func(s *State, args ...string) (WaitFunc, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    Missing task inputs can cause incorrect cache hits, where different results are treated as identical because the same cache key is used by both executions.
    Missing task outputs can cause build failures if Gradle does not completely capture all outputs for a given task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/Types.java

        }
    
        @Override
        public boolean equals(@CheckForNull Object obj) {
          if (NativeTypeVariableEquals.NATIVE_TYPE_VARIABLE_ONLY) {
            // equal only to our TypeVariable implementation with identical bounds
            if (obj != null
                && Proxy.isProxyClass(obj.getClass())
                && Proxy.getInvocationHandler(obj) instanceof TypeVariableInvocationHandler) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/math/rand/v2/rand.go

    	hi, lo := bits.Mul64(r.Uint64(), n)
    	if lo < n {
    		thresh := -n % n
    		for lo < thresh {
    			hi, lo = bits.Mul64(r.Uint64(), n)
    		}
    	}
    	return hi
    }
    
    // uint32n is an identical computation to uint64n
    // but optimized for 32-bit systems.
    func (r *Rand) uint32n(n uint32) uint32 {
    	if n&(n-1) == 0 { // n is power of two, can mask
    		return uint32(r.Uint64()) & (n - 1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/runtime/mpallocbits.go

    //
    // If find fails to find any free space, it returns an index of ^uint(0) and
    // the new searchIdx should be ignored.
    //
    // Note that if npages == 1, the two returned values will always be identical.
    func (b *pallocBits) find(npages uintptr, searchIdx uint) (uint, uint) {
    	if npages == 1 {
    		addr := b.find1(searchIdx)
    		return addr, addr
    	} else if npages <= 64 {
    		return b.findSmallN(npages, searchIdx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/internal/trace/event.go

    	// a particular resource. The relevant resource should be obtained from the
    	// Event that produced these details. The corresponding RangeEnd will have
    	// an identical name.
    	Name string
    
    	// Scope is the resource that the range is scoped to.
    	//
    	// For example, a ResourceGoroutine scope means that the same goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. pkg/kube/inject/inject_test.go

    			// on Pods, but the inputs are Deployments/StatefulSets/etc. As a result, we need
    			// to convert these to pods, then run the injection This test will *not*
    			// overwrite golden files, as we do not have identical textual output as
    			// kube-inject. Instead, we just compare the desired/actual pod specs.
    			t.Run("webhook", func(t *testing.T) {
    				env := &model.Environment{}
    				env.SetPushContext(&model.PushContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. src/runtime/type.go

    	tp := _typePair{t, v}
    	if _, ok := seen[tp]; ok {
    		return true
    	}
    
    	// mark these types as seen, and thus equivalent which prevents an infinite loop if
    	// the two types are identical, but recursively defined and loaded from
    	// different modules
    	seen[tp] = struct{}{}
    
    	if t == v {
    		return true
    	}
    	kind := t.Kind_ & abi.KindMask
    	if kind != v.Kind_&abi.KindMask {
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. tests/joins_test.go

    	if db5.Error != nil {
    		t.Errorf("Should not raise error for join where identical fields in different tables. Error: %s", db5.Error.Error())
    	}
    
    	var users6 []User
    	DB.Joins("inner join pets on pets.user_id = users.id AND pets.name = @Name", user.Pets[0]).Where("users.name = ?", user.Name).First(&users6)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. guava/src/com/google/common/reflect/Types.java

        }
    
        @Override
        public boolean equals(@CheckForNull Object obj) {
          if (NativeTypeVariableEquals.NATIVE_TYPE_VARIABLE_ONLY) {
            // equal only to our TypeVariable implementation with identical bounds
            if (obj != null
                && Proxy.isProxyClass(obj.getClass())
                && Proxy.getInvocationHandler(obj) instanceof TypeVariableInvocationHandler) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top