Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 360 for 87 (0.02 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteDeferredWorkProgressDetails.java

    package org.gradle.operations.execution;
    
    import javax.annotation.Nullable;
    
    /**
     * Fired when a deferred work execution finishes.
     *
     * @since 8.7
     */
    public interface ExecuteDeferredWorkProgressDetails {
    
        /**
         * Type of work being executed.
         * <p>
         * @since 8.7
         * @see ExecuteWorkBuildOperationType.Details#getWorkType()
         */
        @Nullable
        String getWorkType();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:13:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyConstraintFactory.java

         * @since 8.7
         */
        DependencyConstraint create(CharSequence dependencyConstraintNotation);
    
        /**
         * Create a {@link DependencyConstraint} from a series of strings.
         *
         * @param group the group (optional)
         * @param name the name
         * @param version the version (optional)
         * @return the new dependency constraint
         * @since 8.7
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/provider/SupportsConvention.java

     * </p>
     *
     * @since 8.7
     */
    @Incubating
    public interface SupportsConvention {
        /**
         * Unsets this object's explicit value, allowing the convention to be
         * selected when evaluating this object's value.
         *
         * @since 8.7
         */
        SupportsConvention unset();
    
        /**
         * Unsets this object's convention value.
         *
         * @since 8.7
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 13:51:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/testdata/hist.dlv-dbg.nexts

    84:		t := 0
    85:		n := 0
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    88:				continue
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    90:			t += i * a
    91:			n += a
    92:			fmt.Fprintf(os.Stderr, "%d\t%d\t%d\t%d\t%d\n", i, a, n, i*a, t) //gdb-dbg=(n,i,t)
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    90:			t += i * a
    91:			n += a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 3.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/testdata/hist.dlv-opt.nexts

    82:			hist[int(i)]++
    74:		for scanner.Scan() { //gdb-opt=(scanner/A)
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    92:			fmt.Fprintf(os.Stderr, "%d\t%d\t%d\t%d\t%d\n", i, a, n, i*a, t) //gdb-dbg=(n,i,t)
    91:			n += a
    90:			t += i * a
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 04 20:41:52 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/testdata/hist.gdb-opt.nexts

    82:			hist[int(i)]++
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    a = 0
    n = 0
    t = 0
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    a = 3
    n = 0
    t = 0
    92:			fmt.Fprintf(os.Stderr, "%d\t%d\t%d\t%d\t%d\n", i, a, n, i*a, t) //gdb-dbg=(n,i,t)
    91:			n += a
    90:			t += i * a
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    a = 3
    n = 3
    t = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 04 20:41:52 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/testdata/hist.gdb-dbg.nexts

    84:		t := 0
    85:		n := 0
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    88:				continue
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    90:			t += i * a
    91:			n += a
    92:			fmt.Fprintf(os.Stderr, "%d\t%d\t%d\t%d\t%d\n", i, a, n, i*a, t) //gdb-dbg=(n,i,t)
    n = 3
    i = 1
    t = 3
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    90:			t += i * a
    91:			n += a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 04 20:41:52 UTC 2019
    - 4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/FailureContainer.java

    import javax.annotation.Nullable;
    
    /**
     * Holds an exception for a problem.
     *
     * @since 8.7
     */
    @Incubating
    public interface FailureContainer {
    
        /**
         * Failure that caused the problem.
         * <p>
         * The method will always return <code>null</code> if run against a Gradle version prior to 8.8.
         * @since 8.7
         */
        @Nullable
        Failure getFailure();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:20 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r87/ProblemsServiceModelBuilderCrossVersionTest.groovy

    import static org.gradle.integtests.fixtures.AvailableJavaHomes.getJdk8
    import static org.gradle.integtests.tooling.r86.ProblemsServiceModelBuilderCrossVersionTest.getBuildScriptSampleContent
    
    @TargetGradleVersion(">=8.7")
    @ToolingApiVersion("=8.7")
    class ProblemsServiceModelBuilderCrossVersionTest extends ToolingApiSpecification {
    
        ProblemProgressEventCrossVersionTest.ProblemProgressListener listener
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/mutator/ClearArtifactTransformCacheWithoutInstrumentedJarsMutatorTest.groovy

            def cachesDir = new File(gradleUserHome, "caches")
            createFile(new File(cachesDir, "8.7-rc-4/transforms/first/transformed/file"))
            createFile(new File(cachesDir, "8.7-rc-4/transforms/first/metadata.bin"))
            createFile(new File(cachesDir, "8.7-rc-4/transforms/first/transformed/instrumented/file"))
            createFile(new File(cachesDir, "8.7-rc-4/transforms/second/transformed/original/file"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 12:30:06 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top