Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 531 for Cmp (0.04 sec)

  1. istioctl/pkg/writer/ztunnel/configdump/services.go

    	zDump := c.ztunnelDump
    
    	svcs := slices.Filter(zDump.Services, filter.Verify)
    	slices.SortFunc(svcs, func(a, b *ZtunnelService) int {
    		if r := cmp.Compare(a.Namespace, b.Namespace); r != 0 {
    			return r
    		}
    		if r := cmp.Compare(a.Name, b.Name); r != 0 {
    			return r
    		}
    		return cmp.Compare(a.Hostname, b.Hostname)
    	})
    	fmt.Fprintln(w, "NAMESPACE\tSERVICE NAME\tSERVICE VIP\tWAYPOINT")
    
    	for _, svc := range svcs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. src/internal/bytealg/equal_arm64.s

    	// short path to handle 0-byte case
    	CBZ	R2, equal
    	// short path to handle equal pointers
    	CMP	R0, R1
    	BEQ	equal
    	B	memeqbody<>(SB)
    equal:
    	MOVD	$1, R0
    	RET
    
    // memequal_varlen(a, b unsafe.Pointer) bool
    TEXT runtime·memequal_varlen<ABIInternal>(SB),NOSPLIT,$0-17
    	CMP	R0, R1
    	BEQ	eq
    	MOVD	8(R26), R2    // compiler stores size at offset 8 in the closure
    	CBZ	R2, eq
    	B	memeqbody<>(SB)
    eq:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 16:07:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/dist_list_missing.txt

    env GOROOT=$TESTGO_GOROOT
    go build -o dist.exe cmd/dist
    
    exec ./dist.exe list
    cmp stdout tool.txt
    
    exec ./dist.exe list -v
    cmp stdout tool-v.txt
    
    exec ./dist.exe list -broken
    cmp stdout tool-broken.txt
    
    exec ./dist.exe list -json
    cmp stdout tool-json.txt
    
    exec ./dist.exe list -json -broken
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:52:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_diff.txt

    ! go mod tidy -diff
    stdout 'diff current/go.mod tidy/go.mod'
    ! stdout 'diff current/go.sum tidy/go.sum'
    cmp go.mod.orig go.mod
    
    # go.sum requires updates, should return non-zero exit code.
    go mod tidy
    cp go.sum.orig go.sum
    ! go mod tidy -diff
    ! stdout 'diff current/go.mod tidy/go.mod'
    stdout 'diff current/go.sum tidy/go.sum'
    cmp go.sum.orig go.sum
    
    # go.mod and go.sum require updates, should return non-zero exit code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/config_test.go

    package echo
    
    import (
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    
    	"istio.io/istio/pkg/test/framework/components/namespace"
    )
    
    func TestParseConfigs(t *testing.T) {
    	cfgs, err := ParseConfigs([]byte(`
    - Service: "foo"
      Namespace: "bar"
      DeployAsVM: true
      VMDistro: "Centos8"
    `))
    	if err != nil {
    		t.Fatal(err)
    	}
    	if diff := cmp.Diff(cfgs, []Config{{
    		Service:    "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 03 21:37:39 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/sys_linux_arm.s

    	MOVW	addr+0(FP), R0
    	MOVW	(R0), R1
    
    	MOVB	runtime·goarm(SB), R11
    	CMP	$7, R11
    	BGE	native_barrier
    	BL	memory_barrier<>(SB)
    	B	end
    native_barrier:
    	DMB	MB_ISH
    end:
    	MOVW	R1, ret+4(FP)
    	RET
    
    TEXT	·Store(SB),NOSPLIT,$0-8
    	MOVW	addr+0(FP), R1
    	MOVW	v+4(FP), R2
    
    	MOVB	runtime·goarm(SB), R8
    	CMP	$7, R8
    	BGE	native_barrier
    	BL	memory_barrier<>(SB)
    	B	store
    native_barrier:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/repro_build.txt

    env GOMAXPROCS=17
    go build -a -o http17.o net/http
    cmp -q http16.o http17.o
    env GOMAXPROCS=18
    go build -a -o http18.o net/http
    cmp -q http16.o http18.o
    
    # Check that goroutine scheduling does not affect linker output.
    env GOMAXPROCS=16
    go build -a -o gofmt16.exe cmd/gofmt
    env GOMAXPROCS=17
    go build -a -o gofmt17.exe cmd/gofmt
    cmp -q gofmt16.exe gofmt17.exe
    env GOMAXPROCS=18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 18:59:19 UTC 2023
    - 686 bytes
    - Viewed (0)
  8. pkg/apis/flowcontrol/v1beta3/conversion_test.go

    				t.Errorf("Expected no error, but got: %v", err)
    			}
    			if !cmp.Equal(test.expected, out) {
    				t.Errorf("Expected a match, diff: %s", cmp.Diff(test.expected, out))
    			}
    			if want, got := copy.ObjectMeta.Annotations, test.in.ObjectMeta.Annotations; !cmp.Equal(want, got) {
    				t.Errorf("Did not expect the 'Annotations' field of the source to be mutated, diff: %s", cmp.Diff(want, got))
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. src/internal/bytealg/count_arm64.s

    	MOVD	$0, R11
    	// short path to handle 0-byte case
    	CBZ	R2, done
    	CMP	$0x20, R2
    	// jump directly to tail if length < 32
    	BLO	tail
    	ANDS	$0x1f, R0, R9
    	BEQ	chunk
    	// Work with not 32-byte aligned head
    	BIC	$0x1f, R0, R3
    	ADD	$0x20, R3
    	PCALIGN $16
    head_loop:
    	MOVBU.P	1(R0), R5
    	CMP	R5, R1
    	CINC	EQ, R11, R11
    	SUB	$1, R2, R2
    	CMP	R0, R3
    	BNE	head_loop
    	// Work with 32-byte aligned chunks
    chunk:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 17:00:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/internal/bytealg/count_ppc64x.s

    	RET
    
    #else
    tail:	// Count the last 0 - 31 bytes.
    	CMP	R4, $16
    	BLT	tail_8
    	MOVD	(R3), R12
    	MOVD	8(R3), R14
    	CMPB	R12, R5, R12
    	CMPB	R14, R5, R14
    	POPCNTD	R12, R12
    	POPCNTD	R14, R14
    	ADD	R12, R18, R18
    	ADD	R14, R18, R18
    	ADD	$16, R3, R3
    	ADD	$-16, R4, R4
    
    tail_8:	// Count the remaining 0 - 15 bytes.
    	CMP	R4, $8
    	BLT	tail_4
    	MOVD	(R3), R12
    	CMPB	R12, R5, R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 20:30:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top