Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 81 for attacher (0.2 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                LOGGER.warn("artifact '{}' already attached, replacing previous instance", artifact);
                attachedArtifacts.set(index, artifact);
            } else {
                attachedArtifacts.add(artifact);
            }
        }
    
        /**
         * Returns a read-only list of the attached artifacts to this project.
         *
         * @return the attached artifacts of this project
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

        }
    
        // Documents existing behaviour. The absolute path of the input artifact is baked into the workspace identity
        // for incremental transforms, and so when the path changes the outputs are invalidated
        def "can attach #description to input artifact property with incrementally transformed artifact but it has no effect when not caching"() {
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                }
                noMoreDependencies()
            }
        }
    
        @Issue("gradle/gradle#5450")
        def "doesn't fail with NPE if no component is attached to a publication"() {
            createBuildScripts("""
            publishing {
                publications {
                    java(IvyPublication) {
                        artifact jar
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

                }
            }
    
            expect:
            registry.realize("b", Bean).value == "b-mutate a-defaults"
            registry.realize("a", Bean).value == "a-mutate"
        }
    
        def "can attach a mutator with inputs to all elements linked from an element"() {
            given:
            registry.register("parent") { it.unmanagedNode Integer, { MutableModelNode node ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            return loggingServices;
        }
    
        @Override
        public GradleExecuter withTestConsoleAttached() {
            return withTestConsoleAttached(ConsoleAttachment.ATTACHED);
        }
    
        @Override
        public GradleExecuter withTestConsoleAttached(ConsoleAttachment consoleAttachment) {
            this.consoleAttachment = consoleAttachment;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. cmd/sts-handlers_test.go

    		})
    		if err != nil {
    			c.Fatalf("export %d: Unable to attach policy: %v", caseNum, err)
    		}
    	}
    
    	for groupDN, policies := range content.ldapGroupPolicyMappings {
    		_, err := s.adm.AttachPolicyLDAP(ctx, madmin.PolicyAssociationReq{
    			Policies: policies,
    			Group:    groupDN,
    		})
    		if err != nil {
    			c.Fatalf("export %d: Unable to attach group policy: %v", caseNum, err)
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	xdsNamespace                       = "namespace"
    	xdsSelector                        = "selector"
    )
    
    // app a has one pod
    // the waypoint has two pods with different service accounts
    // the waypoint is namespace attached
    func setupPolicyTest(t *testing.T, s *ambientTestServer) {
    	s.addPods(t, "127.0.0.1", "pod1", "sa1", map[string]string{"app": "a"}, nil, true, corev1.PodRunning)
    	s.assertEvent(t, s.podXdsName("pod1"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  8. src/net/http/request.go

    			host = ""
    		} else {
    			return errors.New("http: invalid Host header")
    		}
    	}
    
    	// According to RFC 6874, an HTTP client, proxy, or other
    	// intermediary must remove any IPv6 zone identifier attached
    	// to an outgoing URI.
    	host = removeZone(host)
    
    	ruri := r.URL.RequestURI()
    	if usingProxy && r.URL.Scheme != "" && r.URL.Opaque == "" {
    		ruri = r.URL.Scheme + "://" + host + ruri
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            then: // have seen these inputs before
            result.assertTasksNotSkipped(":common:producer", ":app:resolveGreen")
            assertTransformationsExecuted()
        }
    
        def "can attach @PathSensitive(NONE) to dependencies property"() {
            given:
            setupBuildWithNoSteps()
            buildFile << """
    allprojects {
        dependencies {
            registerTransform(NoneTransform) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	// waits between successive executions
    	reconcilerLoopSleepDuration = 1 * time.Nanosecond
    	// waitForAttachTimeout is the maximum amount of time a
    	// operationexecutor.Mount call will wait for a volume to be attached.
    	waitForAttachTimeout         = 1 * time.Second
    	nodeName                     = k8stypes.NodeName("mynodename")
    	kubeletPodsDir               = "fake-dir"
    	testOperationBackOffDuration = 100 * time.Millisecond
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
Back to top