Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 544 for uvarint (0.12 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishFeaturesJavaPluginIntegTest.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: Sat Dec 02 01:52:06 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolvedComponentResult.java

         * </p>
         *
         * @param variant the variant to find the dependencies for
         * @throws IllegalStateException if the variant is not a selected variant of this component
         * @since 5.6
         */
        List<DependencyResult> getDependenciesForVariant(ResolvedVariantResult variant);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 05 19:24:33 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. 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)
Back to top