Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 160 for comp (0.04 sec)

  1. src/go/types/typeset.go

    // xcomp, ycomp are valid only if xterms.isAll() and yterms.isAll() respectively.
    func intersectTermLists(xterms termlist, xcomp bool, yterms termlist, ycomp bool) (termlist, bool) {
    	terms := xterms.intersect(yterms)
    	// If one of xterms or yterms is marked as comparable,
    	// the result must only include comparable types.
    	comp := xcomp || ycomp
    	if comp && !terms.isAll() {
    		// only keep comparable terms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typeset.go

    // xcomp, ycomp are valid only if xterms.isAll() and yterms.isAll() respectively.
    func intersectTermLists(xterms termlist, xcomp bool, yterms termlist, ycomp bool) (termlist, bool) {
    	terms := xterms.intersect(yterms)
    	// If one of xterms or yterms is marked as comparable,
    	// the result must only include comparable types.
    	comp := xcomp || ycomp
    	if comp && !terms.isAll() {
    		// only keep comparable terms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    		if bBlocks[i].Type < bBlocks[j].Type {
    			return true
    		} else if bBlocks[i].Type == bBlocks[j].Type {
    			comp := bytes.Compare(bBlocks[i].Bytes, bBlocks[j].Bytes)
    			return comp <= 0
    		} else {
    			return false
    		}
    	})
    
    	return cmp.Diff(aBlocks, bBlocks)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. pkg/kube/multicluster/secretcontroller.go

    func BuildMultiClusterComponent[T ComponentConstraint](c ComponentBuilder, constructor func(cluster *Cluster) T) *Component[T] {
    	comp := &Component[T]{
    		constructor: constructor,
    		clusters:    make(map[cluster.ID]T),
    	}
    	c.registerHandler(comp)
    	return comp
    }
    
    func (c *Controller) registerHandler(h handler) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/debug/dwarf/entry_test.go

    	// hand-written.
    	tests := []struct {
    		name      string
    		info      []byte
    		addrSize  int
    		byteOrder binary.ByteOrder
    	}{
    		{
    			"32-bit little",
    			[]byte{0x30, 0, 0, 0, // comp unit length
    				4, 0, // DWARF version 4
    				0, 0, 0, 0, // abbrev offset
    				8, // address size
    				0,
    				0, 0, 0, 0, 0, 0, 0, 0,
    				0, 0, 0, 0, 0, 0, 0, 0,
    				0, 0, 0, 0, 0, 0, 0, 0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. platforms/software/publish/src/test/groovy/org/gradle/api/publish/internal/metadata/GradleModuleMetadataWriterTest.groovy

            def id1 = DefaultModuleVersionIdentifier.newId("group", "other-1", "1")
            def comp1 = Stub(TestComponent)
            def publication1 = publication(comp1, id1)
            def id2 = DefaultModuleVersionIdentifier.newId("group", "other-2", "2")
            def comp2 = Stub(TestComponent)
            def publication2 = publication(comp2, id2)
    
            def c1 = Stub(Capability) {
                getGroup() >> 'org.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/compare.go

    		ncs = n.Y
    	case ir.IsConst(n.Y, constant.String):
    		cs = n.Y
    		ncs = n.X
    	}
    	if cs != nil {
    		cmp := n.Op()
    		// Our comparison below assumes that the non-constant string
    		// is on the left hand side, so rewrite "" cmp x to x cmp "".
    		// See issue 24817.
    		if ir.IsConst(n.X, constant.String) {
    			cmp = brrev(cmp)
    		}
    
    		// maxRewriteLen was chosen empirically.
    		// It is the value that minimizes cmd/go file size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  8. cmd/object-api-utils.go

    	"sync"
    	"time"
    	"unicode/utf8"
    
    	"github.com/google/uuid"
    	"github.com/klauspost/compress/s2"
    	"github.com/klauspost/readahead"
    	"github.com/minio/minio-go/v7/pkg/s3utils"
    	"github.com/minio/minio/internal/config/compress"
    	"github.com/minio/minio/internal/config/dns"
    	"github.com/minio/minio/internal/config/storageclass"
    	"github.com/minio/minio/internal/crypto"
    	"github.com/minio/minio/internal/hash"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/config/common.go

    			// After incrementing the k8s MINOR version by one, if this version is equal or greater than the
    			// MCP version, return true.
    			v := k8sVersion.WithMinor(k8sVersion.Minor() + 1)
    			if comp, _ := v.Compare(mcpVersion.String()); comp != -1 {
    				return true
    			}
    		}
    	}
    	return false
    }
    
    // prepareStaticVariables takes a given config and stores values from it in variables
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

    project(":project2") {
        publishing {
            publications {
                extraComp(MavenPublication) {
                    from components.java
                    groupId "extra.group"
                    artifactId "extra-comp"
                    version "extra"
                }
                extra(MavenPublication) {
                    groupId "extra.group"
                    artifactId "extra"
                    version "extra"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top