Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 344 for differs (0.08 sec)

  1. src/internal/bytealg/equal_riscv64.s

    // For regabi return value in X10.
    TEXT memequal<>(SB),NOSPLIT|NOFRAME,$0
    	BEQ	X10, X11, eq
    
    	MOV	$32, X23
    	BLT	X12, X23, loop4_check
    
    	// Check alignment - if alignment differs we have to do one byte at a time.
    	AND	$7, X10, X9
    	AND	$7, X11, X19
    	BNE	X9, X19, loop4_check
    	BEQZ	X9, loop32_check
    
    	// Check one byte at a time until we reach 8 byte alignment.
    	SUB	X9, X0, X9
    	ADD	$8, X9, X9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/crypto/sha1/sha1block.go

    			j := i * 4
    			w[i] = uint32(p[j])<<24 | uint32(p[j+1])<<16 | uint32(p[j+2])<<8 | uint32(p[j+3])
    		}
    
    		a, b, c, d, e := h0, h1, h2, h3, h4
    
    		// Each of the four 20-iteration rounds
    		// differs only in the computation of f and
    		// the choice of K (_K0, _K1, etc).
    		i := 0
    		for ; i < 16; i++ {
    			f := b&c | (^b)&d
    			t := bits.RotateLeft32(a, 5) + f + e + w[i&0xf] + _K0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/meta/conditions.go

    // conditions must be non-nil.
    //  1. if the condition of the specified type already exists (all fields of the existing condition are updated to
    //     newCondition, LastTransitionTime is set to now if the new status differs from the old status)
    //  2. if a condition of the specified type does not exist (LastTransitionTime is set to now() if unset, and newCondition is appended)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 22 01:13:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. src/internal/bytealg/compare_386.s

    	XORL	$0xffff, BX	// convert EQ to NE
    	JNE	diff16	// branch if at least one byte is not equal
    	ADDL	$16, SI
    	ADDL	$16, DI
    	SUBL	$16, BP
    	JMP	largeloop
    
    diff16:
    	BSFL	BX, BX	// index of first byte that differs
    	XORL	DX, DX
    	MOVB	(SI)(BX*1), CX
    	CMPB	CX, (DI)(BX*1)
    	SETHI	DX
    	LEAL	-1(DX*2), DX	// convert 1/0 to +1/-1
    	MOVL	DX, (AX)
    	RET
    
    mediumloop:
    	CMPL	BP, $4
    	JBE	_0through4
    	MOVL	(SI), BX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  5. pkg/kube/kclient/interfaces.go

    	AddEventHandler(h cache.ResourceEventHandler)
    	// HasSynced returns true when the informer is initially populated and that all handlers added
    	// via AddEventHandler have been called with the initial state.
    	// note: this differs from a standard informer HasSynced, which does not check handlers have been called.
    	HasSynced() bool
    	// ShutdownHandlers terminates all handlers added by AddEventHandler.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:09:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. cluster/images/etcd/README.md

    of etcd that was used to persist data to disk. A "target" version may also be provided
    by the `TARGET_STORAGE` (e.g. "etcd3") and `TARGET_VERSION` (e.g. "3.4.13" )
    environment variables. If the persisted version differs from the target version,
    `migrate-if-needed.sh` will migrate the data from the current to the target
    version.
    
    Upgrades to any target version are supported. The data will be automatically upgraded
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 12:41:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. operator/pkg/util/k8s.go

    	"k8s.io/client-go/kubernetes"
    
    	"istio.io/api/label"
    	iopv1alpha1 "istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/kube"
    )
    
    // GKString differs from default representation of GroupKind
    func GKString(gvk schema.GroupKind) string {
    	return fmt.Sprintf("%s/%s", gvk.Group, gvk.Kind)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. operator/pkg/translate/strategic_port_merge_test.go

    	} {
    		t.Run(tt.name, func(t *testing.T) {
    			actualMergedPorts := strategicMergePorts(tt.basePorts, tt.overlayPorts)
    			if diff := cmp.Diff(actualMergedPorts, tt.expectedMergedPorts); diff != "" {
    				t.Fatalf("expected differs from actual. Diff:\n%s", diff)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:37 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCacheFactory.java

         * This allows the classes to be collected.
         *
         * <p>A map differs from a cache in that entries are not discarded based on memory pressure, but are discarded only when the key is collected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. src/internal/bytealg/compare_riscv64.s

    	MOVBU	0(X12), X9
    	BNE	X8, X9, cmp
    	ADD	$1, X10
    	ADD	$1, X12
    	SUB	$1, X5
    	JMP	compare1
    
    	// Compare 8 bytes of memory in X15/X16 that are known to differ.
    cmp8a:
    	MOV	X15, X17
    	MOV	X16, X18
    
    	// Compare 8 bytes of memory in X17/X18 that are known to differ.
    cmp8b:
    	MOV	$0xff, X19
    cmp8_loop:
    	AND	X17, X19, X8
    	AND	X18, X19, X9
    	BNE	X8, X9, cmp
    	SLLI	$8, X19
    	JMP	cmp8_loop
    
    cmp1a:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top