Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 484 for uvarint (0.14 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioCppApplicationProjectIntegrationTest.groovy

        }
    
        @Override
        String getIdeBuildTaskName(String variant) {
            return "install${variant.capitalize()}"
        }
    
        @Override
        List<String> getTasksToBuildFromIde(String variant) {
            return [":compile${variant.capitalize()}Cpp", ":link${variant.capitalize()}", ":install${variant.capitalize()}"]
        }
    
        @Override
        String getVisualStudioProjectName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/ClassifierToVariantResolveIntegrationTest.groovy

         * can match this classified dependency to a proper variant.
         */
        def "reasonable behavior when a Maven library uses a classifier to select a Gradle variant"() {
            def gradleLibrary = mavenHttpRepo.module("org", "lib", "1.0")
                    .adhocVariants()
                    .variant("apiElements", ['org.gradle.usage': Usage.JAVA_API, 'groovy.runtime': 'classic'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/CachingDependencyResultFactoryTest.groovy

            def differentFrom = factory.createResolvedDependency(selector('requested'), newModule('xxx'), selectedModule, variant, false)
            def differentSelected = factory.createResolvedDependency(selector('requested'), fromModule, newModule('xxx'), variant, false)
            def differentConstraint = factory.createResolvedDependency(selector('requested'), fromModule, selectedModule, variant, true)
    
            then:
            dep.is(same)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_data_fuse_map_and_batch.mlir

               metadata = ""} : (tensor<*x!tf_type.variant>) -> tensor<!tf_type.variant>
      %5 = "tf.BatchDatasetV2"(%4, %0, %1) {device = "",
               output_shapes = [#tf_type.shape<>],
               output_types = [i32],
               parallel_copy = false,
               metadata = ""} : (tensor<!tf_type.variant>, tensor<i64>, tensor<i1>) -> tensor<!tf_type.variant>
      func.return %5 : tensor<!tf_type.variant>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/util/proxyconfig.go

    		pc := &meshconfig.ProxyConfig{}
    		if err := protomarshal.ApplyYAML(v, pc); err == nil {
    			if pc.GetImage().GetImageType() != "" {
    				variant = pc.GetImage().GetImageType()
    			}
    		}
    	}
    	if variant == "default" {
    		variant = ""
    	}
    	return variant
    }
    
    func NewEffectiveProxyConfigResolver(c analysis.Context) *EffectiveProxyConfigResolver {
    	mc := &meshconfig.MeshConfig{}
    	rootNamespace := ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 21:07:52 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/DefaultLibraryBinaryIdentifierTest.groovy

            defaultBuildComponentIdentifier.libraryName == 'myLib'
            defaultBuildComponentIdentifier.variant == 'api'
            defaultBuildComponentIdentifier.displayName == /project ':myPath' library 'myLib' variant 'api'/
            defaultBuildComponentIdentifier.toString() == /project ':myPath' library 'myLib' variant 'api'/
        }
    
        def "is instantiated with null project constructor parameter value"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishFeaturesJavaPluginIntegTest.groovy

            then:
            javaLibrary.parsedModuleMetadata.variant("apiElements") {
                noMoreDependencies()
            }
            javaLibrary.parsedModuleMetadata.variant("runtimeElements") {
                noMoreDependencies()
            }
            javaLibrary.parsedModuleMetadata.variant("featureApiElements") {
                noMoreDependencies()
            }
            javaLibrary.parsedModuleMetadata.variant("featureRuntimeElements") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/lift_tflite_flex_ops.mlir

      } : (tensor<!tf_type.variant>) -> tensor<!tf_type.variant>
    
      func.return %0 : tensor<!tf_type.variant>
    // CHECK: "tf.MapDataset"(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/CppUnitTestComponentWithoutComponentIntegrationTest.groovy

            return new CppSimpleUnitTest()
        }
    
        @Override
        protected List<String> getTasksToAssembleDevelopmentBinary(String variant) {
            return [":compileTest${variant.capitalize()}Cpp", ":linkTest${variant.capitalize()}", ":installTest${variant.capitalize()}", ":runTest${variant.capitalize()}"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/CppUnitTestComponentWithBothLibraryLinkageIntegrationTest.groovy

        }
    
        @Override
        protected List<String> getTasksToAssembleDevelopmentBinary(String variant) {
            return [":compileDebugShared${variant.capitalize()}Cpp", ":compileTest${variant.capitalize()}Cpp", ":linkTest${variant.capitalize()}", ":installTest${variant.capitalize()}", ":runTest${variant.capitalize()}"]
        }
    
        @Override
        String getTestedComponentDsl() {
            return "library"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top