Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,284 for mergeFn (0.15 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    // Test if RLWINM feeding into SRDconst can be merged. Return the encoded RLIWNM constant,
    // or 0 if they cannot be merged.
    func mergePPC64SldiRlwinm(sldi, rlw int64) int64 {
    	r_1, mb, me, mask_1 := DecodePPC64RotateMask(rlw)
    	if mb > me || mb < sldi {
    		// Wrapping masks cannot be merged as the upper 32 bits are effectively undefined in this case.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. cmd/data-usage-cache.go

    	}
    	for k, v := range d.Cache {
    		clone.Cache[k] = v.clone()
    	}
    	return clone
    }
    
    // merge root of other into d.
    // children of root will be flattened before being merged.
    // Last update time will be set to the last updated.
    func (d *dataUsageCache) merge(other dataUsageCache) {
    	existingRoot := d.root()
    	otherRoot := other.root()
    	if existingRoot == nil && otherRoot == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

     *       //but before gradle build information is merged
     *       beforeMerged { classpath -&gt;
     *         //you can tinker with the {@link Classpath} here
     *       }
     *
     *       //closure executed after .classpath content is loaded from existing file
     *       //and after gradle build information is merged
     *       whenMerged { classpath -&gt;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/testdata/swagger-merge-item-v3.json

                  "default": {},
                  "allOf": [
                    {"$ref": "#/components/schemas/mergeItem"}
                  ]
                },
                "x-kubernetes-patch-merge-key": "name",
                "x-kubernetes-patch-strategy": "merge"
              },
              "nonMergingList": {
                "description": "NonMergingList field.",
                "type": "array",
                "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/fingerprinting_utils.cc

    using tools::proto_splitter::GetChunkMetadata;
    using tools::proto_splitter::GetFieldTypes;
    using tools::proto_splitter::GetMutableField;
    using tools::proto_splitter::GetRiegeliReader;
    using tools::proto_splitter::Merger;
    using tools::proto_splitter::MutableFieldResult;
    using tools::proto_splitter::ReadChunk;
    
    namespace fingerprinting_utils_internal {
    
    using ::tensorflow::protobuf::Map;
    using ::tensorflow::protobuf::Message;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/UnknownFileSystemNode.java

        public Optional<MetadataSnapshot> getSnapshot() {
            return Optional.empty();
        }
    
        @Override
        protected FileSystemNode withIncompleteChildren(ChildMap<? extends FileSystemNode> merged) {
            return new UnknownFileSystemNode(merged);
        }
    
        @Override
        protected Optional<FileSystemNode> withAllChildrenRemoved() {
            return Optional.empty();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/trim.go

    		// then the merged phi is
    		//    v = φ(v0, v1, ..., u0, ..., vk, u1, ..., un)
    		v.SetArg(i, u.Args[0])
    		v.AddArgs(u.Args[1:]...)
    	} else {
    		// If the original block contained u = φ(u0, u1, ..., un) and
    		// the current phi is
    		//    v = φ(v0, v1, ...,  vi, ..., vk)
    		// i.e. it does not use a value from the predecessor block,
    		// then the merged phi is
    		//    v = φ(v0, v1, ..., vk, vi, vi, ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

     *       //but before gradle build information is merged
     *       beforeMerged { project -&gt;
     *         //if you want skip merging natures... (a very abstract example)
     *         project.natures.clear()
     *       }
     *
     *       //closure executed after .project content is loaded from existing file
     *       //and after gradle build information is merged
     *       whenMerged { project -&gt;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/RangeMap.java

       * merge does not affect its value. For example, if {@code rangeMap} had one entry {@code [1, 5]
       * => 3} then {@code rangeMap.merge(Range.closed(0,2), 3, Math::max)} could yield a map with the
       * entries {@code [0, 1) => 3, [1, 2] => 3, (2, 5] => 3}.
       *
       * @since 28.1
       */
      void merge(
          Range<K> range,
          @CheckForNull V value,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenMetadata.java

        }
    
        @Deprecated
        public void merge(File existing, File result) throws RepositoryException {
            merge(existing != null ? existing.toPath() : null, result != null ? result.toPath() : null);
        }
    
        @Override
        public void merge(Path existing, Path result) throws RepositoryException {
            Metadata recessive = read(existing);
    
            merge(recessive);
    
            write(result, metadata);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top