Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 934 for Cmp (0.04 sec)

  1. 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)
  2. android/guava/src/com/google/common/collect/TreeMultiset.java

          return 0;
        }
        // The cast is safe because we call this method only if hasLowerBound().
        int cmp =
            comparator()
                .compare(uncheckedCastNullableTToT(range.getLowerEndpoint()), node.getElement());
        if (cmp < 0) {
          return aggregateBelowRange(aggr, node.left);
        } else if (cmp == 0) {
          switch (range.getLowerBoundType()) {
            case OPEN:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultOrderedCompatibilityRule.java

            T consumerValue = details.getConsumerValue();
            T producerValue = details.getProducerValue();
            int cmp = comparator.compare(consumerValue, producerValue);
            if (reverse) {
                cmp = -cmp;
            }
            if (cmp >= 0) {
                details.compatible();
            } else {
                details.incompatible();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/internal/bytealg/compare_ppc64x.s

    #endif
    
    TEXT cmpbody<>(SB),NOSPLIT|NOFRAME,$0-0
    start:
    	CMP	R9,$16,CR0
    	CMP	R9,$32,CR1
    	CMP	R9,$64,CR2
    	MOVD	$16,R10
    	BLT	cmp8
    	BLT	CR1,cmp16
    	BLT	CR2,cmp32
    
    cmp64:	// >= 64B
    	DCBT	(R5)		// optimize for size>=64
    	DCBT	(R6)		// cache hint
    
    	SRD	$6,R9,R14	// There is at least one iteration.
    	MOVD	R14,CTR
    	ANDCC   $63,R9,R9
    	CMP	R9,$16,CR1	// Do setup for tail check early on.
    	CMP	R9,$32,CR2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:33:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/matcher/metadata_test.go

    // limitations under the License.
    
    package matcher
    
    import (
    	"testing"
    
    	matcher "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    )
    
    func TestMetadataStringMatcher(t *testing.T) {
    	m := &matcher.StringMatcher{
    		MatchPattern: &matcher.StringMatcher_Exact{
    			Exact: "exact",
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/ztunnel/configdump/connections.go

    	d := c.ztunnelDump
    	workloads := maps.Values(d.WorkloadState)
    	workloads = slices.SortFunc(workloads, func(a, b WorkloadState) int {
    		if r := cmp.Compare(a.Info.Namespace, b.Info.Namespace); r != 0 {
    			return r
    		}
    		return cmp.Compare(a.Info.Namespace, b.Info.Namespace)
    	})
    	workloads = slices.FilterInPlace(workloads, func(state WorkloadState) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_vendor_embed.txt

    go mod vendor
    cmp vendor/example.com/a/samedir_embed.txt a/samedir_embed.txt
    cmp vendor/example.com/a/subdir/embed.txt a/subdir/embed.txt
    cmp vendor/example.com/a/subdir/test/embed.txt a/subdir/test/embed.txt
    cmp vendor/example.com/a/subdir/test/xtest/embed.txt a/subdir/test/xtest/embed.txt
    
    cd broken_no_matching_files
    ! go mod vendor
    stderr '^go: resolving embeds in example.com/brokendep: pattern foo.txt: no matching files found$'
    go mod vendor -e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:14:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top