Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for mid2 (0.04 sec)

  1. src/crypto/x509/oid_test.go

    		{oid: OID{}, oid2: OID{}, eq: true},
    		{oid: OID{}, oid2: mustNewOIDFromInts(t, []uint64{2, 33, 23}), eq: false},
    	}
    
    	for _, tt := range cases {
    		if eq := tt.oid.Equal(tt.oid2); eq != tt.eq {
    			t.Errorf("(%v).Equal(%v) = %v, want %v", tt.oid, tt.oid2, eq, tt.eq)
    		}
    	}
    }
    
    var (
    	_ encoding.BinaryMarshaler   = OID{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/IvyResolverTest.groovy

            newId(mid("", ""), "")          | IvyArtifactRepository.GRADLE_IVY_PATTERN
            newId(mid("", ""), "")          | "[module]"
            newId(mid("group", ""), "1")    | IvyArtifactRepository.GRADLE_IVY_PATTERN
            newId(mid("group", ""), "1")    | "[module]"
            newId(mid("", "name"), "1")     | IvyArtifactRepository.GRADLE_IVY_PATTERN
            newId(mid("", "name"), "1")     | "[organisation]/[module]"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/IntersectionsTest.groovy

            anyOf(ivy("org", "mod", artifact("mod"), "exact"), ivy("org", "mod2", artifact("mod"), "exact"))               | group("org")                                                                           | allOf(anyOf(ivy("org", "mod", artifact("mod"), "exact"), ivy("org", "mod2", artifact("mod"), "exact")), group("org"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. src/syscall/security_windows.go

    }
    
    // Copy creates a duplicate of security identifier sid.
    func (sid *SID) Copy() (*SID, error) {
    	b := make([]byte, sid.Len())
    	sid2 := (*SID)(unsafe.Pointer(&b[0]))
    	e := CopySid(uint32(len(b)), sid2, sid)
    	if e != nil {
    		return nil, e
    	}
    	return sid2, nil
    }
    
    // LookupAccount retrieves the name of the account for this sid
    // and the name of the first domain on which this sid is found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/sort/gen_sort_variants.go

    		if a > 0 && !{{Less "data" "a-1" "pivot"}} {
    			mid := partitionEqual{{.FuncSuffix}}(data, a, b, pivot {{.ExtraArg}})
    			a = mid
    			continue
    		}
    
    		mid, alreadyPartitioned := partition{{.FuncSuffix}}(data, a, b, pivot {{.ExtraArg}})
    		wasPartitioned = alreadyPartitioned
    
    		leftLen, rightLen := mid-a, b-mid
    		balanceThreshold := length / 8
    		if leftLen < rightLen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ModuleVersionNotFoundExceptionTest.groovy

      - file:/somewhere""")
        }
    
        def "can add incoming paths to exception"() {
            def a = DefaultModuleComponentIdentifier.newId(mid("org", "a"), "1.2")
            def b = DefaultModuleComponentIdentifier.newId(mid("org", "b"), "5")
            def c = DefaultModuleComponentIdentifier.newId(mid("org", "c"), "1.0")
    
            def exception = new ModuleVersionNotFoundException(newId("a", "b", "c"), ["http://somewhere"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. src/sort/zsortfunc.go

    		// elements equal to and elements greater than the pivot.
    		if a > 0 && !data.Less(a-1, pivot) {
    			mid := partitionEqual_func(data, a, b, pivot)
    			a = mid
    			continue
    		}
    
    		mid, alreadyPartitioned := partition_func(data, a, b, pivot)
    		wasPartitioned = alreadyPartitioned
    
    		leftLen, rightLen := mid-a, b-mid
    		balanceThreshold := length / 8
    		if leftLen < rightLen {
    			wasBalanced = leftLen >= balanceThreshold
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineParser.java

                String min2 = Collections.min(option2.getOptions(), new OptionStringComparator());
                // Group opposite option pairs together
                min1 = min1.startsWith(DISABLE_OPTION_PREFIX) ? min1.substring(DISABLE_OPTION_PREFIX.length()) + "-" : min1;
                min2 = min2.startsWith(DISABLE_OPTION_PREFIX) ? min2.substring(DISABLE_OPTION_PREFIX.length()) + "-" : min2;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/claiminfo_test.go

    						},
    						{
    							Name:  "cdi.k8s.io/test-plugin1_claim-uid2",
    							Value: "vendor.com/device=device2",
    						},
    					},
    					"test-plugin2": {
    						{
    							Name:  "cdi.k8s.io/test-plugin2_claim-uid1",
    							Value: "vendor.com/device=device1",
    						},
    						{
    							Name:  "cdi.k8s.io/test-plugin2_claim-uid2",
    							Value: "vendor.com/device=device2",
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. src/sort/zsortinterface.go

    		if a > 0 && !data.Less(a-1, pivot) {
    			mid := partitionEqual(data, a, b, pivot)
    			a = mid
    			continue
    		}
    
    		mid, alreadyPartitioned := partition(data, a, b, pivot)
    		wasPartitioned = alreadyPartitioned
    
    		leftLen, rightLen := mid-a, b-mid
    		balanceThreshold := length / 8
    		if leftLen < rightLen {
    			wasBalanced = leftLen >= balanceThreshold
    			pdqsort(data, a, mid, limit)
    			a = mid + 1
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.2K bytes
    - Viewed (0)
Back to top