Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 144 for Resolvable (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    Here is how to setup the `minified` attribute so that the above works.
    You need to register the new attribute in the schema, add it to all JAR artifacts and request it on all resolvable configurations.
    
    .Artifact transform attribute setup
    ====
    include::sample[dir="snippets/dependencyManagement/artifactTransforms-minify/kotlin",files="build.gradle.kts[tags=artifact-transform-attribute-setup]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_edit.txt

    env GO111MODULE=on
    
    # Test that go mod edits and related mod flags work.
    # Also test that they can use a dummy name that isn't resolvable. golang.org/issue/24100
    
    # go mod init
    ! go mod init
    stderr 'cannot determine module path'
    ! exists go.mod
    
    go mod init x.x/y/z
    stderr 'creating new go.mod: module x.x/y/z'
    cmpenv go.mod $WORK/go.mod.init
    
    ! go mod init
    cmpenv go.mod $WORK/go.mod.init
    
    # go mod edits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

            then:
            output.contains """
    compile
    +--- org.utils:api:1.3 -> 0.1
    \\--- org.original:original:1.0 -> org.other:another:0.1
    """
        }
    
        void "doesn't fail if a configuration is not resolvable"() {
            mavenRepo.module("foo", "foo", '1.0').publish()
            mavenRepo.module("foo", "bar", '2.0').publish()
    
            file("build.gradle") << """
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

                            (missingAnnotationMessage { type('com.android.build.gradle.internal.TaskManager.ConfigAttrTask').property('resolvable').missingInputOrOutput().includeLink() }): ERROR,
                        ])
                    }
                } else {
                    alwaysPasses()
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. cmd/prepare-storage.go

    // https://github.com/minio/minio/issues/5667
    var errErasureV3ThisEmpty = fmt.Errorf("Erasure format version 3 has This field empty")
    
    // isServerResolvable - checks if the endpoint is resolvable
    // by sending a naked HTTP request with liveness checks.
    func isServerResolvable(endpoint Endpoint, timeout time.Duration) error {
    	serverURL := &url.URL{
    		Scheme: endpoint.Scheme,
    		Host:   endpoint.Host,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    For more information, see the sections on <<declaring_dependencies.adoc#sec:what-are-dependency-configurations,dependency configurations>> as well as <<declaring_dependencies.adoc#sec:resolvable-consumable-configs,resolvable and consumable configurations>>.
    
    NOTE: The word "configuration" is an overloaded term and has a different meaning outside of the context of dependency management.
    
    [[sub:terminology_dependency]]
    == Dependency
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

        }
    
        void "deprecations are passed to copies when corresponding role is #baseRole"() {
            ConfigurationRole role = new DefaultConfigurationRole("test", baseRole.consumable, baseRole.resolvable, baseRole.declarable, true, true, true)
            def configuration = prepareConfigurationForCopyTest(conf("conf", ":", ":", role))
            def resolutionStrategyCopy = Mock(ResolutionStrategyInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

         *     <li>Other configurations with names containing the 'test' substring (case ignored)</li>
         * </ul>
         * <p>
         * Note, that this property should contain resolvable configurations only.
         *
         * @since 7.5
         */
        @Incubating
        public SetProperty<Configuration> getTestConfigurations() {
            return testConfigurations;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    * The configurations in pink, also known as consumable denoted by \(C), are the ones used when a component runs against the library
    * The configurations in blue, also known as resolvable denoted by \(R), are internal to the component, for its own use
    
    The following configurations are used to declare dependencies:
    
    `implementation`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                        }
                    }
                }
            """
            buildFile << """
                configurations {
                    dependencyScope("deps")
                    resolvable("res") {
                        extendsFrom(deps)
                        attributes {
                            attribute(CUSTOM_ATTRIBUTE, "foo")
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top