Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,928 for other2 (0.17 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/internal/build/PlannedNodeGraphTest.groovy

            def transformStep2 = new TestTransformStepNode("transformStep2")
            def other1 = new TestNode("other1")
            def other2 = new TestNode("other2")
    
            dependsOn(task1, [other1])
            dependsOn(other1, [transformStep1])
            dependsOn(transformStep1, [task2, other2])
            dependsOn(other2, [task3])
            dependsOn(task4, [transformStep2])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 21 13:11:56 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            { -> 'spec' }        | ['spec'];
            { -> return 'spec' } | ['spec']
        }
    
        def 'with Spec'() {
            given:
            def other1 = Stub(CopySpecInternal)
            def other2 = Stub(CopySpecInternal)
    
            when:
            spec.with other1, other2
    
            then:
            spec.sourcePaths.empty
            spec.children.size() == 2
        }
    
        def 'into with Closure'() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top