Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 144 for Resolvable (0.19 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

                        sha512: getChecksum(foo, "sha512", "pom")
                    )
                }
            }
    
            where:
            stop << [true, false]
        }
    
        def "generates checksums for resolvable configurations only"() {
            given:
            javaLibrary()
            def foo = uncheckedModule("org", "foo", "1.0")
            def foo1 = uncheckedModule("org", "foo", "1.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

        void "batched up conflicts with conflicted parent and child"() {
            /*
            Dependency tree:
    
            a->c1
            b->c2->x1
            d->x1
            f->x2
    
            Everything is resolvable but not x2
    
            Scenario:
             - We have batched up conflicts
             - root of one conflicted version is also conflicted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    Resolving these configurations was never an intended use case and only possible because in earlier Gradle versions _every_ configuration was resolvable.
    For declaring dependencies, please use the configurations provided by the plugins you use, for example by the <<java_library_plugin.adoc#sec:java_library_configurations_graph,Java Library plugin>>.
    
    [[changes_6.2]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf_test.go

    		// Does it have an abstract origin?
    		ooff, originOK := die.Val(dwarf.AttrAbstractOrigin).(dwarf.Offset)
    		if !originOK {
    			continue
    		}
    
    		// All abstract origin references should be resolvable.
    		abscount += 1
    		originDIE := ex.EntryFromOffset(ooff)
    		if originDIE == nil {
    			ex.DumpEntry(i, false, 0)
    			t.Fatalf("unresolved abstract origin ref in DIE at offset 0x%x\n", die.Offset)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Executing this command line will cause Gradle to:
    
    * resolve all <<declaring_dependencies.adoc#sec:resolvable-consumable-configs,resolvable configurations>>, which includes:
    ** configurations from the root project
    ** configurations from all subprojects
    ** configurations from `buildSrc`
    ** included builds configurations
    ** configurations used by plugins
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Controls whether to use of Mesh Configuration Protocol to distribute configuration.
      google.protobuf.BoolValue useMCP = 35;
    
      // Specifies the Istio control plane’s pilot Pod IP address or remote cluster DNS resolvable hostname.
      string remotePilotAddress = 48;
    
      // Specifies the configution of istiod
      IstiodConfig istiod = 54;
    
      // Configure the Pilot certificate provider.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    We will show you in this section how to apply the Android Plugin to a single-project build or the root project of a multi-project build.
    The goal is to instruct your build on how to map the `com.android.application` plugin identifier to a resolvable artifact.
    This is done in two steps:
    
    * Add a plugin repository to the build's settings script
    * Map the plugin ID to the corresponding artifact coordinates
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

         |    \\--- project :impl
         |         \\--- compileClasspath
         \\--- org:leaf1:1.0
              \\--- project :impl (*)
    
    """
        }
    
        void "fails a configuration is not resolvable"() {
            mavenRepo.module("foo", "foo", '1.0').publish()
            mavenRepo.module("foo", "bar", '2.0').publish()
    
            buildFile << """
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.20.md

      - A cluster-scoped object with an ownerReference referencing a uid of a namespaced kind is now consistently treated as though that owner is not resolvable, and the child object is ignored by the garbage collector. ([#92743](https://github.com/kubernetes/kubernetes/pull/92743), [@liggitt](https://github.com/liggitt)) [SIG API Machinery, Apps and Testing]
    
    
    ## Changes by Kind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/UsageDescriberSpec.groovy

        def "can describe usage for role"() {
            given:
            def role = ConfigurationRolesForMigration.RESOLVABLE_DEPENDENCY_SCOPE_TO_RESOLVABLE
    
            expect:
            UsageDescriber.describeRole(role) == "\tResolvable - this configuration can be resolved by this project to a set of files\n" +
                    "\tDeclarable - this configuration can have dependencies added to it (but this behavior is marked deprecated)"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top