Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for comp2 (0.04 sec)

  1. 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)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolverTest.groovy

            given:
            def comp1 = Stub(TestComponent) {
                getName() >> "foo"
            }
            def comp2 = Stub(TestComponent) {
                getVariants() >> [comp1]
                getName() >> "bar"
            }
            comp1.getVariants() >> [comp2]
    
            def publication = pub('mock', "pub-group", "pub-name", "pub-version", comp1)
            registry.register(project.identityPath, publication)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. src/encoding/gob/codec_test.go

    		Mstring:  map[string]string{"pi": "3.14", "e": "2.71"},
    		Mintptr:  map[int]*int{meaning: &fingers, fingers: &meaning},
    		Mcomp:    map[complex128]complex128{comp1: comp2, comp2: comp1},
    		Marr:     map[[2]string][2]*float64{arr1: floatArr1, arr2: floatArr2},
    		EmptyMap: make(map[string]int),
    		N:        &[3]float64{1.5, 2.5, 3.5},
    		Strs:     &[2]string{s1, s2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Ordering.java

       * provided to this method.
       *
       * <p>The returned ordering is equivalent to that produced using {@code
       * Ordering.from(comp1).compound(comp2).compound(comp3) . . .}.
       *
       * <p>The returned object is serializable if each of the {@code comparators} is serializable.
       *
       * <p><b>Warning:</b> Supplying an argument with undefined iteration order, such as a {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Ordering.java

       * provided to this method.
       *
       * <p>The returned ordering is equivalent to that produced using {@code
       * Ordering.from(comp1).compound(comp2).compound(comp3) . . .}.
       *
       * <p>The returned object is serializable if each of the {@code comparators} is serializable.
       *
       * <p><b>Warning:</b> Supplying an argument with undefined iteration order, such as a {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentSourceSetIntegrationTest.groovy

    apply plugin: Dump
    
    model {
        components {
            sampleLib(SampleLibrary) {
                sources {
                    compA(LibrarySourceSet) {
                        source.srcDir "src/main/comp-a"
                    }
                    compB(LibrarySourceSet) {
                        source.srcDir "src/main/comp-b"
                    }
                }
                binaries {
                    bin(SampleBinary) {
                        sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  7. src/runtime/race/testdata/chan_test.go

    func TestRaceChanSendClose(t *testing.T) {
    	compl := make(chan bool, 2)
    	c := make(chan int, 1)
    	go func() {
    		defer func() {
    			recover()
    			compl <- true
    		}()
    		c <- 1
    	}()
    	go func() {
    		time.Sleep(10 * time.Millisecond)
    		close(c)
    		compl <- true
    	}()
    	<-compl
    	<-compl
    }
    
    func TestRaceChanSendSelectClose(t *testing.T) {
    	compl := make(chan bool, 2)
    	c := make(chan int, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenGradleModuleMetadataPublishIntegrationTest.groovy

                version = '1.0'
    
                def comp = new TestComponent()
                comp.usages.add(new TestUsage(
                        name: 'api',
                        usage: objects.named(Usage, 'api'),
                        dependencies: configurations.implementation.allDependencies,
                        attributes: testAttributes))
    
                comp.usages.add(new TestUsage(
                        name: 'impl',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/version/version.go

    		semver:     semver,
    	}
    	for i, comp := range components {
    		if (i == 0 || semver) && strings.HasPrefix(comp, "0") && comp != "0" {
    			return nil, fmt.Errorf("illegal zero-prefixed version component %q in %q", comp, str)
    		}
    		num, err := strconv.ParseUint(comp, 10, 0)
    		if err != nil {
    			return nil, fmt.Errorf("illegal non-numeric version component %q in %q: %v", comp, str, err)
    		}
    		v.components[i] = uint(num)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleModuleMetadata.groovy

        }
    
        @Nullable
        Coords getComponent() {
            def comp = values.component
            if (comp == null || comp.url) {
                return null
            }
            return new Coords(comp.group, comp.module, comp.version)
        }
    
        @Nullable
        ModuleReference getOwner() {
            def comp = values.component
            if (comp == null || !comp.url) {
                return null
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top