Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for mid2 (0.46 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. 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)
  8. 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)
  9. pkg/scheduler/extender_test.go

    				},
    				"node2": {
    					Pods: []*extenderv1.MetaPod{
    						{UID: "uid2"},
    						{UID: "uid4"},
    					},
    					NumPDBViolations: 2,
    				},
    			},
    			nodeNames: []string{"node1", "node2"},
    			podsInNodeList: []*v1.Pod{
    				st.MakePod().Name("pod1").UID("uid1").Obj(),
    				st.MakePod().Name("pod2").UID("uid2").Obj(),
    				st.MakePod().Name("pod3").UID("uid3").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

            def mod2 = file("mod2/build.gradle")
    
            given:
            javaLibrary(mod1)
            javaLibrary(mod2)
            def foo = uncheckedModule("org", "foo")
            def bar = uncheckedModule("org", "bar")
            mod1 << """
                dependencies {
                    implementation "org:foo:1.0"
                }
            """
            mod2 << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top