Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 115 for consuming (0.48 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    To specify custom plugin repositories, use the `repositories{}` block inside `pluginManagement{}`:
    
    ====
    include::sample[dir="snippets/plugins/consuming/kotlin", files="settings.gradle.kts[tags=custom-plugin-repositories]"]
    include::sample[dir="snippets/plugins/consuming/groovy", files="settings.gradle[tags=custom-plugin-repositories]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/stackcheck.go

    		addEdge(sc.callSize, sc.morestack)
    		return maxHeight, edges
    	}
    
    	// This function is nosplit, so it adjusts SP without a split
    	// check.
    	//
    	// Walk through SP adjustments in function, consuming relocs
    	// and following calls.
    	maxLocalHeight := 0
    	relocs, ri := ldr.Relocs(sym), 0
    	pcsp := obj.NewPCIter(uint32(ctxt.Arch.MinLC))
    	for pcsp.Init(ldr.Data(ldr.Pcsp(sym))); !pcsp.Done; pcsp.Next() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    [[sub:declaring_dependency_with_dynamic_version]]
    == Declaring a dynamic version
    
    Projects might adopt a more aggressive approach for consuming dependencies to modules.
    For example you might want to always integrate the latest version of a dependency to consume cutting edge features at any given time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

                for (Node consumer : producingNodeMutations.getNodesYetToConsumeOutput()) {
                    if (doesConsumerDependOnDestroyer(consumer, destroyer)) {
                        // If there's an explicit dependency from consuming node to destroyer,
                        // then we accept that as the will of the user
                        continue;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

            'OtherThing' | 'new OtherThing(name: "free")' | 'new OtherThing(name: "paid")'
        }
    
        def "compatibility and disambiguation rules can be defined by consuming build"() {
            given:
            createDirs("a", "b", "includedBuild")
            file('settings.gradle') << """
                include 'a', 'b'
                includeBuild 'includedBuild'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  6. src/crypto/x509/verify.go

    	// needed to check a certificate exceeds the limit set by
    	// VerifyOptions.MaxConstraintComparisions. This limit exists to
    	// prevent pathological certificates can consuming excessive amounts of
    	// CPU time to verify.
    	TooManyConstraints
    	// CANotAuthorizedForExtKeyUsage results when an intermediate or root
    	// certificate does not permit a requested extended key usage.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

      // Iterate over all of the island groups attempting to merge as many islands
      // groups as possible.
      bool updated = false;
      do {
        updated = false;
    
        // Attempt to merge an island into an island consuming one of its results.
        for (MergedIsland& merged_island : llvm::reverse(merged_islands_)) {
          if (merged_island.islands.empty()) continue;
    
          MergedIsland* candidate =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. src/fmt/doc.go

    Input processed by verbs is implicitly space-delimited: the
    implementation of every verb except %c starts by discarding
    leading spaces from the remaining input, and the %s verb
    (and %v reading into a string) stops consuming input at the first
    space or newline character.
    
    The familiar base-setting prefixes 0b (binary), 0o and 0 (octal),
    and 0x (hexadecimal) are accepted when scanning integers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. docs/config/README.md

    ```
    ~ mc admin config set alias/ scanner
    KEY:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    In practice, the project applying the plugin might not even deal with Java code.
    
    Instead of automatically applying the Java plugin, the plugin could react to the fact that the consuming project applies the Java plugin.
    Only if that is the case, then a certain configuration is applied:
    
    .InhouseConventionJavaPlugin.java
    [source,java]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top