Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for comp2 (0.06 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/component/DefaultSoftwareComponentContainerIntegrationTest.groovy

                task verify {
                    assert components.comp1.name == "comp1"
                    assert components.comp1.value.get() == 2
                    assert components.comp1 instanceof DefaultTestComponent
    
                    assert components.comp2.name == "comp2"
                    assert components.comp2.value.get() == 20
                    assert components.comp2 instanceof DefaultTestComponent
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 14 22:59:22 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/plugins/ComponentModelBasePluginTest.groovy

                            }
                        }
                        comp2(ComponentSpec)
                    }
                }
            }
    
            then:
            def tasks = realizeTasks()
            def components = realizeComponents()
            tasks.comp1Bin1 == components.comp1.binaries.bin1.tasks.build
            tasks.comp1Bin2 == components.comp1.binaries.bin2.tasks.build
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/software/test-suites-base/src/test/groovy/org/gradle/testing/base/plugins/TestingModelBasePluginTest.groovy

                model {
                    testSuites {
                        comp1(TestSuiteSpec) {
                            binaries {
                                bin1(BinarySpec)
                                bin2(BinarySpec)
                            }
                        }
                        comp2(TestSuiteSpec)
                    }
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %comp1 = "tf.Complex"(%con11, %con12) : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xcomplex<f32>>
      %comp2 = "tf.Complex"(%con21, %con22) : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xcomplex<f32>>
      %comp3 = "tf.Complex"(%con31, %con32) : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xcomplex<f32>>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top