Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for gemerged (0.19 sec)

  1. cmd/metacache-entries.go

    			merged = append(merged, b[0])
    			b = b[1:]
    		}
    		if limit > 0 && len(merged) >= limit {
    			break
    		}
    	}
    	// Append anything left.
    	if limit < 0 || len(merged) < limit {
    		merged = append(merged, a...)
    		merged = append(merged, b...)
    	}
    	m.o = merged
    }
    
    // filterPrefix will filter m to only contain entries with the specified prefix.
    func (m *metaCacheEntriesSorted) filterPrefix(s string) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

      Operation* first_op_after = islands.back()->getNextNode();
    
      // We create the merged island at the location of the first island that was
      // merged (excluding special TPU input/output ops).
      IslandOp new_island = CreateMergedIsland(island, islands, wrapped_ops);
    
      // Ensure dominance by sorting the range of islands that were merged.
      return SortTopologically(Block::iterator(new_island.getOperation()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

     * is usually a merge function which allows to create a single provider from a list of providers. Mergers of composable providers may
     * produce a merged provider which is more efficient than the naive sequential composite provider.
     *
     * @see org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinDeclarationProvider
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

                                    merged.add(child.plusWithCommonPrefixLength(nextSegment, childCommonPrefix));
                                    matched = true;
                                    continue;
                                }
                            }
                            merged.add(child);
                        }
                        if (!matched) {
                            merged.add(new Node(nextSegment));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/utils/SublistMerger.kt

    /**
     * With each call to [merge], [SublistMerger] can merge all elements of a specific (reified) type into a single element using a supplied
     * constructor and then add it to [destination]. Unmerged elements are added to [destination] using [finish].
     *
     * The purpose of [SublistMerger] is to merge multiple different types of elements from a single origin list without the need for
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinCompositeProviderFactory.kt

                }
            }
    }
    
    /**
     * Uses the given [factory] to merge all providers of type [T] with the given [mergeTargets] strategy. Other providers (not of type [T]) are
     * added to the resulting composite provider unmerged.
     */
    public inline fun <P : KotlinComposableProvider, reified T : P> List<P>.mergeSpecificProviders(
        factory: KotlinCompositeProviderFactory<P>,
        crossinline mergeTargets: (List<T>) -> P,
    ): P {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. doc/README.md

    new files. **Do not add RELNOTE=yes comments in CLs.** Instead, add a file to
    the CL (or ask the author to do so).
    
    At the end of the development cycle, the files will be merged by being
    concatenated in sorted order by pathname. Files in the directory matching the
    glob "*stdlib/*minor" are treated specially. They should be in subdirectories
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

        sealed interface MergeKey {
            /**
             * Nodes having this key are unique and never get merged with any other nodes.
             * Some examples are: elements produced by adding functions; error nodes.
             */
            data object CannotMerge : MergeKey
    
            /**
             * The key for properties that can get merged by shadowing.
             */
            data class CanMergeProperty(
                val propertyName: String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackageProviderFactory.kt

    }
    
    /**
     * [KotlinPackageProviderMerger] allows merging multiple [KotlinPackageProvider]s into a more efficient package provider.
     *
     * Package providers should not be naively merged by combining scopes and calling [createPackageProvider], because there may be additional
     * package providers which do not operate based on scopes (e.g. resolve extension package providers).
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. internal/grid/connection.go

    				}
    				cancel(ErrDisconnected)
    				return
    			}
    			if debugPrint {
    				fmt.Printf("%s Got msg: %v\n", c.Local, m)
    			}
    			if m.Op != OpMerged {
    				c.inMessages.Add(1)
    				c.handleMsg(ctx, m, subID)
    				continue
    			}
    			// Handle merged messages.
    			messages := int(m.Seq)
    			c.inMessages.Add(int64(messages))
    			for i := 0; i < messages; i++ {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top