Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,510 for other2 (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/go/internal/modload/load.go

    			// ones! — is not a Go package, and we can't resolve it to a package
    			// path because that path could plausibly be provided by some other
    			// module.
    			//
    			// Any other error indicates that the package “exists” (at least in the
    			// sense that it cannot exist in any other module), but has some other
    			// problem (such as a syntax error).
    			return "", err
    		}
    	}
    
    	for _, mod := range MainModules.Versions() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top