Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 8,743 for other2 (0.11 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultProviderTest.groovy

        String someValue() {
            return "s1"
        }
    
        @Override
        String someOtherValue() {
            return "other1"
        }
    
        @Override
        String someOtherValue2() {
            return "other2"
        }
    
        @Override
        String someOtherValue3() {
            return "other3"
        }
    
        @Override
        ManagedFactory managedFactory() {
            return new ManagedFactories.ProviderManagedFactory()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MappingProviderTest.groovy

        @Override
        String someValue() {
            "{s1}"
        }
    
        @Override
        String someOtherValue() {
            "{other1}"
        }
    
        @Override
        String someOtherValue2() {
            "{other2}"
        }
    
        @Override
        String someOtherValue3() {
            "{other3}"
        }
    
        @Override
        ManagedFactory managedFactory() {
            return new ManagedFactories.ProviderManagedFactory()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/AbstractMinimalProviderTest.groovy

        }
    
        @Override
        String someValue() {
            "s2"
        }
    
        @Override
        String someOtherValue() {
            "other1"
        }
    
        @Override
        String someOtherValue2() {
            "other2"
        }
    
        @Override
        String someOtherValue3() {
            "other3"
        }
    
        @Override
        ManagedFactory managedFactory() {
            return new ManagedFactories.ProviderManagedFactory()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.8K 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. 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)
  6. 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)
  7. platforms/jvm/scala/src/test/groovy/org/gradle/api/tasks/ScalaRuntimeTest.groovy

            project.repositories {
                mavenCentral()
            }
    
            when:
            def scalaClasspath = project.scalaRuntime.inferScalaClasspath([new File("other.jar"), new File("other2.jar")])
            scalaClasspath.files
    
            then:
            GradleException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.8K 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