Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 84 for attacher (0.14 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            when:
            setToNull(property)
    
            then:
            assertHasProducer(property, task)
        }
    
        def "producer task of upstream provider is ignored when producer task attached to property"() {
            def task = Mock(Task)
            def upstream = Mock(Task)
            def property = propertyWithNoValue()
            property.set(supplierWithProducer(upstream))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/java/jcifs/smb/SmbSessionImpl.java

            this.netbiosName = netbiosName;
        }
    
    
        /**
         * @return the context this session is attached to
         */
        @Override
        public CIFSContext getContext () {
            return this.transport.getContext();
        }
    
    
        /**
         * @return the transport this session is attached to
         */
        @Override
        public SmbTransportImpl getTransport () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

            setStartDate:...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
Back to top