Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for Combine (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    4. *Put a file called `init.gradle(.kts)`* in the `$<<installation.adoc#sec:linux_macos_users_2,__GRADLE_HOME__>>/init.d/` directory.
    +
    This lets you package a custom Gradle distribution containing custom build logic and plugins. You can combine this with the <<gradle_wrapper.adoc#gradle_wrapper_reference,Gradle wrapper>> to make custom logic available to all builds in your enterprise.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Combiners.java

     * Promote to a more shared subproject if useful.
     */
    public abstract class Combiners {
    
        /**
         * We know the stream we are processing is handled sequentially, and hence there is no need for a combiner.
         */
        public static <T> BinaryOperator<T> nonCombining() {
            return Combiners::unsupportedCombineOperation;
        }
    
        private static <T> T unsupportedCombineOperation(T a, T b) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:06 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProviderFactory.kt

     * may be based on an index which doesn't contain the declarations provided by file-based declaration providers.
     *
     * Hence, [KotlinDeclarationProvider]s cannot just be combined by combining the scopes of all declaration providers and calling
     * [createDeclarationProvider]. [KotlinDeclarationProviderMerger] should implement proper merging logic that takes these concerns into
     * account.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/packages/KotlinStandalonePackageProvider.kt

                project.createPackageProvider(combinedScope).apply {
                    check(this is KotlinStandalonePackageProvider) {
                        "`${KotlinStandalonePackageProvider::class.simpleName}` can only be merged into a combined package provider of the same type."
                    }
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/ClassLoaderStructureProvider.java

            return new HierarchicalClassLoaderStructure(gradleApiFilter)
                    .withChild(userSpec);
        }
    
        /**
         * Returns a spec representing the combined "user" classloader for the given classes and additional classpath.  The user classloader assumes it is used as a child of a classloader with the Gradle API.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. build/pause/CHANGELOG.md

    * The pause container is built with the correct "Architecture" metadata. ([#87954](https://prs.k8s.io/87954), [@BenTheElder](https://github.com/BenTheElder))
    
    # 3.1
    
    * The pause container gains a signal handler to clean up orphaned zombie processes. ([#36853](https://prs.k8s.io/36853), [@verb](https://github.com/verb))
    * `pause -v` will return build information for the pause binary. ([#56762](https://prs.k8s.io/56762), [@verb](https://github.com/verb))
    
    # 3.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

    import static org.gradle.integtests.fixtures.SuggestionsMessages.STACKTRACE_MESSAGE
    
    /**
     * These test cases document the current behavior when dependency constraints are combined
     * with other dependency management mechanisms. They do not represent recommended use cases.
     * If dependency constraints and component metadata rules are used, using other mechanisms
     * should not be required.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/types/ExternalPluginsInstrumentationTypeRegistry.java

    import java.util.Set;
    import java.util.concurrent.ConcurrentHashMap;
    import java.util.stream.Collectors;
    
    /**
     * {@link InstrumentationTypeRegistry} for checking type information for external plugins.
     * It combines data of direct super types that when visiting external plugins classes and Gradle core types data, to calculated final information for external types.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 10:00:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. pkg/kube/krt/join.go

    	}
    	log.Errorf("< END DUMP (join %v)", j.collectionName)
    }
    
    func (j *join[T]) Synced() Syncer {
    	return channelSyncer{
    		name:   j.collectionName,
    		synced: j.synced,
    	}
    }
    
    // JoinCollection combines multiple Collection[T] into a single
    // Collection[T] merging equal objects into one record
    // in the resulting Collection
    func JoinCollection[T any](cs []Collection[T], opts ...CollectionOption) Collection[T] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/ir/ConvertConst.cc

      auto newConstValue =
          quantizeAttr(value, quantizedElementType, newConstValueType);
      if (!newConstValue) {
        return failure();
      }
    
      // When creating the new const op, use a fused location that combines the
      // original const and the qbarrier that led to the quantization.
      auto fusedLoc = rewriter.getFusedLoc(
          {qbarrier.getArg().getDefiningOp()->getLoc(), qbarrier.getLoc()});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top