Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,399 for _Merge (0.24 sec)

  1. src/cmd/go/testdata/script/mod_get_pseudo_other_branch.txt

    echo v0.2.1 >v0.2.1
    git add v0.2.1
    git commit -m v0.2.1
    git tag v0.2.1
    
    git checkout b
    echo v0.2.2 >v0.2.2
    git add v0.2.2
    git commit -m v0.2.2
    git tag v0.2.2
    
    git checkout master
    git merge b -m merge
    
    zip -r ../tagtests.zip .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java

         */
        public void merge(
                org.apache.maven.model.Model target,
                org.apache.maven.model.Model source,
                boolean sourceDominant,
                Map<?, ?> hints) {
            Objects.requireNonNull(target, "target cannot be null");
            if (source == null) {
                return;
            }
            target.update(merge(target.getDelegate(), source.getDelegate(), sourceDominant, hints));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

            t2.setAttribute("attr2", "value2");
            t2.setValue("t2Value");
            t2.setInputLocation("t2top");
    
            // merge and check results.
            Xpp3Dom result = Xpp3Dom.mergeXpp3Dom(t1, t2);
    
            // this is still 2, since we're not using the merge-control attribute.
            assertEquals(2, result.getAttributeNames().length);
    
            assertNull(result.getValue());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/rc_patch.go

    		portMap = proxy.MergedGateway.PortMap
    	}
    
    	// only merge is applicable for route configuration.
    	for _, rp := range efw.Patches[networking.EnvoyFilter_ROUTE_CONFIGURATION] {
    		if rp.Operation != networking.EnvoyFilter_Patch_MERGE {
    			continue
    		}
    		if commonConditionMatch(patchContext, rp) &&
    			routeConfigurationMatch(patchContext, routeConfiguration, rp, portMap) {
    			merge.Merge(routeConfiguration, rp.Value)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tutorial/manifest/groovy/build.gradle

                   "Implementation-Version": version)
    }
    tasks.register('fooJar', Jar) {
        manifest = java.manifest {
            from sharedManifest
        }
    }
    // end::custom-manifest[]
    
    // tag::merge[]
    tasks.register('barJar', Jar) {
        manifest {
            attributes key1: 'value1'
            from sharedManifest, 'src/config/basemanifest.txt'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tutorial/manifest/kotlin/build.gradle.kts

            "Implementation-Version" to version
        )
    }
    
    tasks.register<Jar>("fooJar") {
        manifest = java.manifest {
            from(sharedManifest)
        }
    }
    // end::custom-manifest[]
    
    // tag::merge[]
    tasks.register<Jar>("barJar") {
        manifest {
            attributes("key1" to "value1")
            from(sharedManifest, "src/config/basemanifest.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-expected.xml

            <artifactId>default</artifactId>
            <version>3.0</version>
            <configuration>
              <defaults><!-- equivalent to combine.children="merge" combine.self="merge" -->
                <!-- merge the content of the configuration element according to element name -->
                <parent>child</parent>
                <child>child</child>
                <parent-only>parent</parent-only>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  8. maven-model/src/main/java/org/apache/maven/model/InputLocation.java

            result.setLocations(locations);
    
            return result;
        } // -- InputLocation merge( InputLocation, InputLocation, boolean )
    
        /**
         * Method merge.
         *
         * @param target
         * @param indices
         * @param source
         * @return InputLocation
         */
        public static InputLocation merge(
                InputLocation target, InputLocation source, java.util.Collection<Integer> indices) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 19 07:06:15 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/patches/patches_test.go

    			name: "valid: patch a kube-apiserver target using merge patch; json patch is applied first",
    			patchTarget: &PatchTarget{
    				Name:                      "kube-apiserver",
    				StrategicMergePatchObject: v1.Pod{},
    				Data:                      []byte("foo: bar\nbaz: qux\n"),
    			},
    			expectedData: []byte(`{"baz":"qux","foo":"patched"}`),
    			files: []*file{
    				{
    					name: "kube-apiserver+merge.yaml",
    					data: "foo: patched",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

            repositoryEventDispatcher.dispatch(event.build());
        }
    
        private void merge(
                Artifact artifact, Map<String, VersionInfo> infos, Versioning versioning, ArtifactRepository repository) {
            if (versioning.getRelease() != null && !versioning.getRelease().isEmpty()) {
                merge(RELEASE, infos, versioning.getLastUpdated(), versioning.getRelease(), repository);
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top