Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,342 for Handles (0.2 sec)

  1. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/GuidesContributeIncludeProcessor.java

            super(new HashMap<>());
        }
    
        public GuidesContributeIncludeProcessor(Map<String, Object> config) {
            super(config);
        }
    
        @Override
        public boolean handles(String target) {
            return target.equals(CONTRIBUTE);
        }
    
        // This method adheres the asciidoctorj 1.6.0 API
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 10:37:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

    \u001B[1m> Task :1:log\u001B[m\u001B[0K
    Output from 1
    
    \u001B[1m> Task :2:log\u001B[m
    Output from 2
    More output from 2
    
    \u001B[1m> Task :3:log\u001B[m
    Output from 3
    
    
    
    Handles lots of newline characters
    
    
    \u001B[32;1mBUILD SUCCESSFUL\u001B[0;39m in 2s
    3 actionable tasks: 3 executed
    \u001B[2K
    """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

            when:
            run 'copy'
    
            then:
            result.assertTasksSkipped(":copy")
        }
    
        def "handles gzip compressed tars"() {
            given:
            TestFile tar = file('tar-contents')
            tar.create {
                someDir {
                    file '1.txt'
                    file '2.txt'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_pgo.txt

    # Test go build -pgo flag.
    # Specifically, the build cache handles profile content correctly.
    
    [short] skip 'compiles and links executables'
    
    # Set up fresh GOCACHE.
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    # build without PGO
    go build triv.go
    
    # build with PGO, should trigger rebuild
    # starting with an empty profile (the compiler accepts it)
    go build -x -pgo=prof -o triv.exe triv.go
    stderr 'preprofile.*-i.*prof'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadataStore.java

    import org.gradle.internal.reflect.validation.TypeValidationContext;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A validating metadata store that handles annotations on types and their JavaBeans properties.
     *
     * <p>
     * The store considers property annotations to belong to {@linkplain AnnotationCategory categories}.
     * Each property can have at most one annotation per category.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/BuildEventsParallelIntegrationTest.groovy

                    dependsOn("a")
                }
            """
    
            when:
            def handleA = server.expectAndBlock("handle:a")
            server.expect("handle:b")
            server.expect("serviceClosed")
    
            def build = executer.withTasks("b").start()
    
            handleA.waitForAllPendingCalls()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileInjector.java

    import org.apache.maven.api.model.Model;
    import org.apache.maven.api.model.Profile;
    import org.apache.maven.api.services.ModelBuilderRequest;
    import org.apache.maven.api.services.ModelProblemCollector;
    
    /**
     * Handles profile injection into the model.
     *
     */
    public interface ProfileInjector {
    
        /**
         * Merges values from the specified profile into the given model. Implementations are expected to keep the profile
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/generators/go122-create-syscall-reuse-thread-id.go

    	b0.Event("GoDestroySyscall")
    
    	// A new Go-created thread with the same ID appears and
    	// starts running, then tries to steal the P from the
    	// first thread. The stealing is interesting because if
    	// the parser handles GoDestroySyscall wrong, then we
    	// have a self-steal here potentially that doesn't make
    	// sense.
    	b1 := g.Batch(trace.ThreadID(0), 0)
    	b1.Event("ProcStatus", trace.ProcID(1), go122.ProcIdle)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. pkg/volume/secret/secret.go

    	volume.MetricsProvider
    }
    
    var _ volume.Volume = &secretVolume{}
    
    func (sv *secretVolume) GetPath() string {
    	return getPath(sv.podUID, sv.volName, sv.plugin.host)
    }
    
    // secretVolumeMounter handles retrieving secrets from the API server
    // and placing them into the volume on the host.
    type secretVolumeMounter struct {
    	*secretVolume
    
    	source    v1.SecretVolumeSource
    	pod       v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/Receiver.java

    import org.gradle.process.internal.worker.problem.WorkerProblemProtocol;
    
    import javax.annotation.Nullable;
    import java.util.concurrent.ArrayBlockingQueue;
    import java.util.concurrent.BlockingQueue;
    
    /**
     * Receives and handles messages about a given worker action executed by a worker process.
     * <p>
     * This receiver is used per worker action.
     */
    @NonNullApi
    public class Receiver implements ResponseProtocol, StreamCompletion, StreamFailureHandler {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top