Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 363 for fadds (0.07 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         */
        @Internal
        String getPath();
    
        /**
         * <p>Adds the given {@link Action} to the beginning of this task's action list.</p>
         *
         * @param action The action to add
         * @return the task object this method is applied to
         */
        Task doFirst(Action<? super Task> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. platforms/software/antlr/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Adds support for generating parsers from Antlr grammars."
    
    errorprone {
        disabledChecks.addAll(
            "DefaultCharset", // 1 occurrences
            "Finally", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":core"))
        api(project(":core-api"))
        api(project(":files"))
        api(project(":model-core"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/build.gradle.kts

        integTestImplementation(libs.groovyTest)
    
        integTestDistributionRuntimeOnly(project(":distributions-basics")) {
            because("Requires test-kit: 'java-gradle-plugin' is used in integration tests which always adds the test-kit dependency.")
        }
    }
    
    testFilesCleanup.reportOnly = true
    
    description = """Provides functionality for resolving and managing plugins during their application to projects."""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/internal/trace/generation.go

    	}
    	// Sort the CPU samples.
    	slices.SortFunc(g.cpuSamples, func(a, b cpuSample) int {
    		return cmp.Compare(a.time, b.time)
    	})
    	return g, spill, spillErr
    }
    
    // processBatch adds the batch to the generation.
    func processBatch(g *generation, b batch) error {
    	switch {
    	case b.isStringsBatch():
    		if err := addStrings(&g.strings, b); err != nil {
    			return err
    		}
    	case b.isStacksBatch():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. internal/grid/trace.go

    type TraceParamsKey struct{}
    
    // traceRequests adds request tracing to the connection.
    func (c *Connection) traceRequests(p *pubsub.PubSub[madmin.TraceInfo, madmin.TraceType]) {
    	c.trace = &tracer{
    		Publisher: p,
    		TraceType: madmin.TraceInternal,
    		Prefix:    "grid",
    		Local:     c.Local,
    		Remote:    c.Remote,
    		Subroute:  "",
    	}
    }
    
    // subroute adds a specific subroute to the request.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. subprojects/composite-builds/build.gradle.kts

        integTestImplementation(project(":launcher"))
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("Requires test-kit: 'java-gradle-plugin' is used in some integration tests which always adds the test-kit dependency.  The 'java-platform' plugin from the JVM platform is used in some tests.")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/build.gradle.kts

        api(project(":problems-api"))
        api(project(":snapshots"))
    
        implementation(projects.time)
        implementation(project(":logging"))
        implementation(projects.enterpriseOperations) {
            because("Adds generic build operations for the execution engine")
        }
    
        implementation(libs.commonsLang)
        implementation(libs.commonsIo)
    
        testImplementation(project(":native"))
        testImplementation(project(":logging"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/jvm/ear/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Adds support for assembling web application EAR files"
    
    errorprone {
        disabledChecks.addAll(
            "DefaultCharset", // 2 occurrences
            "StringCaseLocaleUsage", // 1 occurrences
        )
    }
    
    dependencies {
        api(libs.groovy)
        api(libs.inject)
        api(libs.jsr305)
    
        api(project(":base-services"))
        api(project(":core-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r50/ArgumentPassingCrossVersionTest.groovy

            then:
            env2.java.jvmArguments.contains(JVM_ARG_1)
            env2.java.jvmArguments.contains(JVM_ARG_2)
        }
    
        def "Adds multiple JVM arguments at once"() {
            when:
            BuildEnvironment env1 = loadBuildEnvironment { builder -> builder.addJvmArguments(JVM_ARG_1, JVM_ARG_2) }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. platforms/jvm/java-platform/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Adds support for creating dependency platforms for JVM projects"
    
    errorprone {
        disabledChecks.addAll(
            "InlineFormatString", // 1 occurrences
        )
    }
    
    dependencies {
        api(project(":core-api"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top