Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,693 for Fast (0.08 sec)

  1. platforms/documentation/docs/src/snippets/testing/junitplatform-tagging/groovy/src/main/java/org/gradle/junitplatform/Fast.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    import org.junit.jupiter.api.Tag;
    
    @Target({ ElementType.TYPE, ElementType.METHOD })
    @Retention(RetentionPolicy.RUNTIME)
    @Tag("fast")
    public @interface Fast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 358 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/junitplatform-tagging/kotlin/src/main/java/org/gradle/junitplatform/Fast.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    import org.junit.jupiter.api.Tag;
    
    @Target({ ElementType.TYPE, ElementType.METHOD })
    @Retention(RetentionPolicy.RUNTIME)
    @Tag("fast")
    public @interface Fast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 358 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/performance/parallel-task-fast.png

    parallel-task-fast.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepositoryTest.groovy

            false             | MetadataFetchingCost.FAST      | MetadataFetchingCost.FAST
            false             | MetadataFetchingCost.EXPENSIVE | MetadataFetchingCost.FAST
            true              | MetadataFetchingCost.CHEAP     | MetadataFetchingCost.CHEAP
            true              | MetadataFetchingCost.FAST      | MetadataFetchingCost.FAST
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. test/inline_sync.go

    // are function calls rather than intrinsics, since this prevents inlining
    // of the sync fast paths. This test should be re-enabled once the problem
    // is solved.
    
    package foo
    
    import (
    	"sync"
    )
    
    var mutex *sync.Mutex
    
    func small5() { // ERROR "can inline small5"
    	// the Unlock fast path should be inlined
    	mutex.Unlock() // ERROR "inlining call to sync\.\(\*Mutex\)\.Unlock"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 21:01:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractJvmFailFastIntegrationSpec.groovy

            where:
            description       | taskList                   | buildConfig
            'failFast = true' | ['test']                   | 'test { failFast = true }'
            '--fail-fast'     | ['test', '--fail-fast']    | ''
        }
    
        def "ensure fail fast with forkEvery #forkEvery, maxWorkers #maxWorkers, omittedTests #testOmitted"() {
            given:
            buildFile.text = generator.initBuildFile(maxWorkers, forkEvery)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestOptionsIntegrationSpec.groovy

    import org.junit.jupiter.api.Tag;
    
    @Tag("fast")
    public class SomeTestClass {
        @Test
        public void ok1() {
        }
    
        @Test
        public void ok2() {
        }
    }
            """
            file("src/integTest/java/org/example/SomeIntegTestClass.java") << """
    package org.example;
    
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.Tag;
    
    @Tag("fast")
    public class SomeIntegTestClass {
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. test/fixedbugs/bug369.dir/main.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"flag"
    	"os"
    	"runtime"
    	"testing"
    
    	fast "./fast"
    	slow "./slow"
    )
    
    var buf = make([]byte, 1048576)
    
    func BenchmarkFastNonASCII(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		fast.NonASCII(buf, 0)
    	}
    }
    
    func BenchmarkSlowNonASCII(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		slow.NonASCII(buf, 0)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 19:54:30 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  9. test/fixedbugs/bug369.go

    	os.WriteFile(tmp("importcfg"), []byte(importcfg), 0644)
    
    	run("go", "tool", "compile", "-importcfg="+tmp("importcfg"), "-p=test/slow", "-N", "-o", tmp("test/slow.o"), "pkg.go")
    	run("go", "tool", "compile", "-importcfg="+tmp("importcfg"), "-p=test/fast", "-o", tmp("test/fast.o"), "pkg.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/MetadataFetchingCost.java

         * even if it's cheap to tell it's missing. Use {@link #CHEAP} in that case.
         */
        FAST,
        /**
         * Can return metadata in a cheap way, or tell that it's missing in a cheap way. The difference with
         * {@link #FAST} is that we can use it for missing metadata.
         */
        CHEAP,
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top