Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 683 for varints (0.19 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ProjectVariantResolutionIntegrationTest.groovy

                                variants {
                                    create("broken") {
                                        artifact(b.flatMap { it.output })
                                        artifact(b.flatMap { throw new RuntimeException("broken variant artifact") })
                                    }
                                }
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/dependencies/implementation.go

    func (r *RealDependencies) DetectIptablesVersion(ipV6 bool) (IptablesVersion, error) {
    	// Begin detecting
    	//
    	// iptables variants all have ipv6 variants, so decide which set we're looking for
    	var nftBin, legacyBin, plainBin string
    	if ipV6 {
    		nftBin = ip6tablesNftBin
    		legacyBin = ip6tablesLegacyBin
    		plainBin = ip6tablesBin
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportVariantDetailsIntegrationTest.groovy

        }
    
        def "shows published variant details"() {
            given:
            mavenRepo.with {
                def leaf = module('org.test', 'leaf', '1.0')
                    .withModuleMetadata()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            if (findingExternalVariants) {
                // There is a cycle in the external variants
                LOGGER.warn("Detecting cycle in external variants for :\n" + computePathToRoot());
                findingExternalVariants = false;
                return null;
            }
            findingExternalVariants = true;
            // An external variant must have exactly one outgoing edge
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMavenModuleResolveMetadataTest.groovy

        }
    
        def "each configuration contains a single variant containing the status attribute and the artifacts of the configuration"() {
            when:
            def runtime = metadata.getConfiguration("runtime")
    
            then:
            runtime.variants.size() == 1
            def firstVariant = runtime.variants.first()
            assertHasOnlyStatusAttribute(firstVariant.attributes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    project :A FAILED
       Failures:
          - Could not resolve project :A.
            Creating consumable variants is explained in more detail at https://docs.gradle.org/${GradleVersion.current().version}/userguide/declaring_dependencies.html#sec:resolvable-consumable-configs.
              - Unable to find a matching variant of project :A:
                  - No variants exist.
    
    project :A FAILED
    \\--- conf
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. tensorflow/c/kernels_experimental.cc

        return VariantBinaryAddFunc(
            cc_ctx, cc_a.scalar<Variant>()(), cc_b.scalar<Variant>()(),
            cc_out->scalar<Variant>().data(), binary_add_func);
      } else {
        binary_add_func(ctx, a, b, out);
        return cc_ctx->status();
      }
    }
    
    static Status VariantBinaryAddFunc(
        ::tensorflow::OpKernelContext* cc_ctx, const Variant& a, const Variant& b,
        Variant* out,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

        @Unroll("Selects variant #expectedVariant using custom attribute value #attributeValue")
        def "attribute value is used during selection"() {
            given:
            repository {
                'org:test:1.0' {
                    variant('api') {
                        attribute('custom', 'c1')
                    }
                    variant('runtime') {
                        attribute('custom', 'c2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

            ModelContainer<?> model,
            CalculatedValueContainerFactory calculatedValueContainerFactory
        ) {
            // Perform any final mutating actions for this configuration and its parents.
            // Then, lock this configuration and its parents from mutation.
            // After we observe a configuration (by building its metadata), its state should not change.
            configuration.runDependencyActions();
            configuration.markAsObserved();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPlugin.java

                }
                // TODO - move this to a base plugin
                // Setup the dependency on the main binary
                // This should all be replaced by a single dependency that points at some "testable" variants of the main binary
    
                // Inherit implementation dependencies
                testExecutable.getImplementationDependencies().extendsFrom(((DefaultCppBinary) testedBinary).getImplementationDependencies());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top