Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 852 for haninge (0.15 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/TaskFinishEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.task;
    
    import org.gradle.tooling.events.FinishEvent;
    
    /**
     * An event that informs about a task having finished its execution. You can query the result of the task using {@link #getResult()}.
     *
     * @since 2.5
     */
    public interface TaskFinishEvent extends TaskProgressEvent, FinishEvent {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestStartEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.test;
    
    import org.gradle.tooling.events.StartEvent;
    
    /**
     * An event that informs about a test having started its execution.
     *
     * @since 2.4
     */
    public interface TestStartEvent extends TestProgressEvent, StartEvent {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 871 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/work/WorkItemFinishEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.work;
    
    import org.gradle.tooling.events.FinishEvent;
    
    /**
     * An event that informs about a work item having finished its execution.
     *
     * @since 5.1
     */
    public interface WorkItemFinishEvent extends WorkItemProgressEvent, FinishEvent {
        @Override
        WorkItemOperationResult getResult();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 943 bytes
    - Viewed (0)
  4. docs/en/docs/benchmarks.md

        * If you are comparing Uvicorn, compare it against Daphne, Hypercorn, uWSGI, etc. Application servers.
    * **Starlette**:
        * Will have the next best performance, after Uvicorn. In fact, Starlette uses Uvicorn to run. So, it probably can only get "slower" than Uvicorn by having to execute more code.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestFinishEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.test;
    
    import org.gradle.tooling.events.FinishEvent;
    
    /**
     * An event that informs about a test having finished its execution. You can query the result of the
     * test using {@link #getResult()}.
     *
     * @since 2.4
     */
    public interface TestFinishEvent extends TestProgressEvent, FinishEvent {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/EmptyLineTrimmerOutputNormalizer.groovy

    import java.util.regex.Pattern
    
    /**
     * Allows a blank empty line in your sample output to match a blank line with any number of spaces in the actual output.
     *
     * This exists to avoid having to measure out "prefix" whitespace indentation and match it exactly in your sample output.
     */
    class EmptyLineTrimmerOutputNormalizer implements OutputNormalizer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/Network.java

       *       involving {@code view} will throw)
       *   <li>{@code hashCode()} does not throw
       *   <li>if {@code node} is re-added to the network after having been removed, {@code view}'s
       *       behavior is undefined
       * </ul>
       *
       * @throws IllegalArgumentException if {@code node} is not an element of this network
       */
      Set<N> adjacentNodes(N node);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. docs/tr/docs/how-to/general.md

    ## Dokümantasyon Etiketleri - OpenAPI
    
    *Yol operasyonlarınıza* etiketler ekleyerek dokümantasyon arayüzünde gruplar halinde görünmesini sağlamak için, [Tutorial - Path Operation Configurations - Tags](../tutorial/path-operation-configuration.md#tags){.internal-link target=_blank} sayfasını okuyun.
    
    ## Dokümantasyon Özeti ve Açıklaması - OpenAPI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 27 16:20:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiShutdownIntegrationTest.groovy

    import spock.lang.Retry
    import spock.lang.Timeout
    
    @Ignore
    class ToolingApiShutdownIntegrationTest extends AbstractIntegrationSpec {
    
        @Retry(count = 3)
        @Timeout(30)
        def "tooling api can disconnect from hanging daemon"() {
            setup:
            settingsFile << "rootProject.name = 'client-runner'"
            buildFile << """
                plugins {
                    id 'java'
                }
    
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/log/slog/internal/buffer/buffer.go

    // license that can be found in the LICENSE file.
    
    // Package buffer provides a pool-allocated byte buffer.
    package buffer
    
    import "sync"
    
    // buffer adapted from go/src/fmt/print.go
    type Buffer []byte
    
    // Having an initial size gives a dramatic speedup.
    var bufPool = sync.Pool{
    	New: func() any {
    		b := make([]byte, 0, 1024)
    		return (*Buffer)(&b)
    	},
    }
    
    func New() *Buffer {
    	return bufPool.Get().(*Buffer)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top