Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 209 for derp (0.04 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         */
        void addDependency(Node node, Dependency dep, Predicate<PathType> filter, Path path) throws IOException {
            nodes.add(node);
            if (dep == null) {
                return;
            }
            if (dependencies.put(dep, path) != null) {
                throw new IllegalStateException("Duplicated key: " + dep);
            }
            if (path == null) {
                return;
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            externalRuntimeDep = dependencyCache.file("com.something/3.4.5/b4b02fa623c5a618e68478d9a4a67e1e87c023c6/dep-1.2.jar")
            distDir.zipTo(externalRuntimeDep)
            runtimeDep = distDir.createZip("lib/dep-1.2.jar")
    
            resourcesDir = tmpDir.createDir("some-module/build/resources/main")
            save(
                properties(runtime: 'dep-1.2.jar', projects: ''),
                resourcesDir.file("gradle-some-module-classpath.properties"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. api/maven-api-metadata/src/main/mdo/metadata.mdo

        <default>
          <key>package</key>
          <value>org.apache.maven.artifact.repository.metadata</value>
        </default>
      </defaults>
      <classes>
        <class rootElement="true" xml.tagName="metadata" java.clone="deep">
          <name>Metadata</name>
          <version>1.0.0+</version>
          <fields>
            <field xml.attribute="true" xml.tagName="modelVersion">
              <name>modelVersion</name>
              <version>1.1.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileInjector.java

     *
     */
    public interface ProfileInjector {
    
        /**
         * Merges values from the specified profile into the given model. Implementations are expected to keep the profile
         * and model completely decoupled by injecting deep copies rather than the original objects from the profile.
         *
         * @param model The model into which to merge the values defined by the profile, must not be <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/IvyDependencyDescriptorTest.groovy

        }
    
        def "excludes nothing when no exclude rules provided"() {
            def dep = createWithExcludes(requested, [])
            def moduleExclusions = new ModuleExclusions()
    
            expect:
            moduleExclusions.excludeAny(copyOf(dep.getConfigurationExcludes(configuration("from").hierarchy))) == NOTHING
            moduleExclusions.excludeAny(copyOf(dep.getConfigurationExcludes(configuration("anything").hierarchy))) == NOTHING
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/graph_builder.go

    			for _, dep := range potentiallyInvalidDependents {
    				if len(observedIdentity.Namespace) > 0 && dep.identity.Namespace != observedIdentity.Namespace {
    					// Namespace mismatch, this is definitely wrong
    					logger.V(2).Info("item references an owner but does not match namespaces",
    						"item", dep.identity,
    						"owner", observedIdentity,
    					)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. src/internal/profilerecord/profilerecord.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package profilerecord holds internal types used to represent profiling
    // records with deep stack traces.
    //
    // TODO: Consider moving this to internal/runtime, see golang.org/issue/65355.
    package profilerecord
    
    type StackRecord struct {
    	Stack []uintptr
    }
    
    type MemProfileRecord struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 815 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

        }
    
        def "resolved configurations in composite builds are exposed via build operation"() {
            setup:
            def m1 = mavenHttpRepo.module('org.foo', 'app-dep').publish()
            def m2 = mavenHttpRepo.module('org.foo', 'root-dep').publish()
    
            setupComposite()
            buildFile << """
                allprojects {
                    apply plugin: "java"
                    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

                    tasks.create('dep', SlowTask)
                    tasks.create('task', SlowTask) {
                        dependsOn 'dep'
                    }
                }
                project(':finalized') {
                    tasks.create('dep', SlowTask)
                    tasks.create('task', SlowTask) {
                        finalizedBy ':finalizer:task'
                        dependsOn 'dep'
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

            buildA.buildFile << """
                dependencies {
                    implementation "org.external:external-dep:1.0"
                }
            """
    
            when:
            checkDependencies()
    
            then:
            checkGraph {
                module("org.external:external-dep:1.0") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top