Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,430 for other2 (0.13 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/BroadcastDispatchTest.groovy

            empty.add(other1).add(listener).remove(listener).remove(other1).empty
            empty.add(other1).add(listener).removeAll([listener, listener]).remove(other1).empty
            empty.add(other1).add(other2).add(listener).remove(listener).removeAll([other1, other2]).empty
            empty.add(other1).add(other2).add(listener).removeAll([listener]).removeAll([other1, other2]).empty
    
            // Add duplicates
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/util/DefaultJavaForkOptionsTest.groovy

            def other2 = new DefaultJavaForkOptions(resolver, fileCollectionFactory, new DefaultJavaDebugOptions())
    
            when:
            other2.executable = "/foo/bar"
    
            then:
            options.isCompatibleWith(other1)
            !options.isCompatibleWith(other2)
        }
    
        def "cannot determine compatibility with jvmArgumentProviders"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

            buildFile << """
                task otherBuild(type:GradleBuild) {
                    dir = 'other'
                    tasks = ['resolve']
                }
            """
            createDirs("other", "other/a", "other/b")
            file("other/settings.gradle") << """
                include 'a', 'b'
            """
            file("other/build.gradle") << """
                allprojects { configurations.create('default') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

            given:
            ivyRepo.module("org.gradle", "test", "1.45")
                .dependsOn("org.gradle", "other", "preview-1")
                .nonTransitive('default')
                .publish()
            ivyRepo.module("org.gradle", "other", "preview-1").dependsOn("org.gradle", "other2", "7").publish()
            ivyRepo.module("org.gradle", "other2", "7").publish()
    
            and:
            buildFile << """
    repositories { ivy { url "${ivyRepo.uri}" } }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            System.properties['java.version'] = "1.$version" as String
    
            expect:
            jvm.javaVersion."java$version"
            !jvm.javaVersion."java$other1"
            !jvm.javaVersion."java$other2"
    
            where:
            version | other1 | other2
            5       | 6      | 7
            6       | 7      | 5
            7       | 5      | 6
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/tests/end2end.mlir

    // CHECK-LABEL: my_map_and_batch_dataset
    func.func @my_map_and_batch_dataset(%input: tensor<*x!tf_type.variant>,
                                   %other1: tensor<*xf32>,
                                   %other2: tensor<*xi32>) -> tensor<*x!tf_type.variant> {
      %0 = "tf.MyMapAndBatchDataset"(%input, %other1, %other2)
        {batch_size=1000 : i64, num_parallel_calls = 8 : i64, drop_remainder = 0 : i1,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/IvyDependencyDescriptorTest.groovy

            def toConfig2 = configuration(toComponent, "to-2")
            fromConfig.hierarchy >> ImmutableSet.of("from")
            fromConfig2.hierarchy >> ImmutableSet.of("other")
            fromConfig3.hierarchy >> ImmutableSet.of("other2")
            toConfig1.visible >> true
            toConfig2.visible >> true
            toComponent.metadata >> toComponentMetadata
            toComponent.getConfigurationNames() >> ["to-1", "to-2"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/encoding/xml/read_test.go

    	Lang   string `xml:"http://www.w3.org/XML/1998/namespace lang,attr,omitempty"`
    	Other1 string `xml:"http://golang.org/xml/ other,attr,omitempty"`
    	Other2 string `xml:"http://golang.org/xmlfoo/ other,attr,omitempty"`
    	Other3 string `xml:"http://golang.org/json/ other,attr,omitempty"`
    	Other4 string `xml:"http://golang.org/2/json/ other,attr,omitempty"`
    }
    
    var tableAttrs = []struct {
    	xml string
    	tab TableAttrs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultPropertyTest.groovy

        String someValue() {
            return "value1"
        }
    
        @Override
        String someOtherValue() {
            return "other1"
        }
    
        @Override
        String someOtherValue2() {
            return "other2"
        }
    
        @Override
        String someOtherValue3() {
            return "other3"
        }
    
        @Override
        ManagedFactory managedFactory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildRegistryTest.groovy

        }
    
        def "can add multiple builds with same dir base name"() {
            def dir1 = tmpDir.createDir("b1")
            def dir2 = tmpDir.createDir("other/b1")
            def dir3 = tmpDir.createDir("other2/b1")
            def buildDefinition1 = build(dir1, "b1")
            def buildDefinition2 = build(dir2, "b2")
            def buildDefinition3 = build(dir3, "b3")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 14:36:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top