Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,399 for _Merge (0.27 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/FileToRawModelMerger.java

            // don't merge
        }
    
        @Override
        protected void mergeBuildBase_Resources(
                BuildBase.Builder builder,
                BuildBase target,
                BuildBase source,
                boolean sourceDominant,
                Map<Object, Object> context) {
            // don't merge
        }
    
        @Override
        protected void mergeBuildBase_TestResources(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedmanager.go

    }
    
    // TODO: replace with merge.Conflicts.ToSet()
    func conflictsToSet(conflicts merge.Conflicts) *fieldpath.Set {
    	conflictSet := fieldpath.NewSet()
    	for _, conflict := range []merge.Conflict(conflicts) {
    		conflictSet.Insert(conflict.Path)
    	}
    	return conflictSet
    }
    
    func conflictsDifference(conflicts merge.Conflicts, s *fieldpath.Set) merge.Conflicts {
    	newConflicts := []merge.Conflict{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/ManifestMergeDetails.java

         */
        String getMergeValue();
    
        /**
         * Returns the value for the key of the manifest after the merge takes place. By default this is the value
         * of the source for the merge.
         */
        String getValue();
    
        /**
         * Set's the value for the key of the manifest after the merge takes place.
         */
        void setValue(String value);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. maven-repository-metadata/src/test/java/org/apache/maven/artifact/repository/metadata/MetadataTest.java

        @Test
        void mergeEmptyMetadata() throws Exception {
            Metadata metadata = new Metadata();
            assertFalse(metadata.merge(new Metadata()));
        }
    
        @Test
        void mergeDifferentGAV() throws Exception {
            // merge implicitly assumes that merge is only called on the same GAV and does not perform any validation here!
            Metadata source = new Metadata();
            source.setArtifactId("source-artifact");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/legalize_tfg_with_control_flow.mlir

        %Merge:2, %ctl_2 = Merge(%Enter, %NextIteration) name("while/Merge") {N = 2 : i64, T = i32} : (tensor<*xi32>, tensor<*xi32>) -> (tensor<*xi32>, tensor<*xi32>)
        %Const_3, %ctl_4 = Const [%ctl_2] name("while/Less/y") {dtype = i32, value = dense<10> : tensor<i32>} : () -> (tensor<i32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 06 18:31:38 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyIntegrationTest.groovy

            when:
            run("merge")
    
            then:
            result.assertTasksExecuted(":createFile", ":merge")
            file("output/merged.txt").text == 'file1'
    
            when:
            run("merge")
    
            then:
            result.assertTasksNotSkipped()
    
            when:
            file("file-source.txt").text = "new-file1"
            run("merge")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-while-loop.pbtxt

          i: 10
        }
      }
    }
    node {
      name: "while/Merge"
      op: "Merge"
      input: "while/Enter"
      input: "while/NextIteration"
      attr {
        key: "N"
        value {
          i: 2
        }
      }
      attr {
        key: "T"
        value {
          type: DT_INT32
        }
      }
    }
    node {
      name: "while/Less/y"
      op: "Const"
      input: "^while/Merge"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 27 18:14:13 UTC 2020
    - 3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/legalize_tfg_arg_control_dep.mlir

        %NextIteration, %ctl_1 = NextIteration(%Const) [%arg.ctl] name("while/NextIteration") {T = i32} : (tensor<i32>) -> (tensor<*xi32>)
        %Merge:2, %ctl_2 = Merge(%Enter, %NextIteration) [%arg.ctl] name("while/Merge") {N = 2 : i64, T = i32} : (tensor<*xi32>, tensor<*xi32>) -> (tensor<*xi32>, tensor<i32>)
        %Less, %ctl_5 = Less(%Merge#0, %Const) [%arg.ctl] name("while/Less") {T = i32} : (tensor<*xi32>, tensor<i32>) -> (tensor<*xi1>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 06 02:08:28 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/compilerapi/constants/ConstantToDependentsMappingMergerTest.groovy

            ConstantToDependentsMapping mapping = merger.merge(newMapping, oldMapping, ["a", "b"] as Set)
    
            then:
            mapping.getConstantDependentsForClass("a").accessibleDependentClasses == ["1"] as Set
            mapping.getConstantDependentsForClass("b").accessibleDependentClasses == [] as Set
        }
    
        def "does not remove classes that are not in new mapping from mapping on merge"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/envoyfilter/cluster_patch.go

    			if err != nil {
    				log.Debugf("Merge of transport socket failed for cluster: %v", err)
    				continue
    			}
    			applied = true
    			if !tsMerged {
    				merge.Merge(c, cp.Value)
    			}
    		}
    		IncrementEnvoyFilterMetric(cp.Key(), Cluster, applied)
    	}
    	return c
    }
    
    // Test if the patch contains a config for TransportSocket
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top