Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for jmh (0.02 sec)

  1. platforms/core-configuration/model-core/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.jmh")
    }
    
    description = "Implementation of configuration model types and annotation metadata handling (Providers, software model, conventions)"
    
    errorprone {
        disabledChecks.addAll(
            "UnusedVariable", // This cannot really be turned off, because of the false positive in errorprone (https://github.com/google/error-prone/issues/4409)
        )
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/DirectoryProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import org.openjdk.jmh.annotations.Level;
    
    import java.nio.file.Path;
    
    public interface DirectoryProvider {
        Path getRoot(Level level);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 802 bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/InMemoryDataAccessor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import org.openjdk.jmh.annotations.Level;
    
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.publish-public-libraries")
        id("gradlebuild.jmh")
    }
    
    description = "Implementation of build cache controller and factories"
    
    dependencies {
        api(project(":build-cache-base"))
        api(project(":build-cache-packaging"))
        api(project(":build-cache-spi"))
        api(project(":build-operations"))
        api(project(":enterprise-operations"))
        api(project(":files"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. build.gradle.kts

    }
    
    description = "Adaptable, fast automation for all"
    
    dependencyAnalysis {
        issues {
            all {
                ignoreSourceSet("archTest", "crossVersionTest", "docsTest", "integTest", "jmh", "peformanceTest", "smokeTest", "testInterceptors", "testFixtures", "smokeIdeTest")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 11:54:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/TaskOutputPackagingBufferBenchmark.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import org.openjdk.jmh.annotations.Param;
    
    public class TaskOutputPackagingBufferBenchmark extends AbstractTaskOutputPackagingBenchmark {
        @Param({"tar.snappy.small", "tar.snappy.large"})
        String packer;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. build-logic/jvm/src/main/kotlin/gradlebuild.strict-compile.gradle.kts

    tasks.withType<JavaCompile>().configureEach {
        // Generated classes may not adhere to the strict no-warning policy that we apply to handwritten code
        // For example, external JMH plugin generates code that produces compiler warnings
        if (!name.contains("CompileGeneratedClasses")) {
            options.compilerArgs.addAll(strictCompilerArgs)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:31 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.jmh")
    }
    
    description = "Logging infrastructure"
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
        api(projects.serviceProvider)
        api(projects.time)
        api(project(":base-services"))
        api(project(":build-operations"))
        api(project(":build-option"))
        api(project(":cli"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/AbstractFileAccessor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import org.openjdk.jmh.annotations.Level;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.nio.file.StandardOpenOption;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. build-logic/profiling/src/main/kotlin/gradlebuild/jmh/tasks/JmhHTMLReport.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.jmh.tasks
    
    import org.gradle.api.DefaultTask
    import org.gradle.api.file.DirectoryProperty
    import org.gradle.api.file.RegularFileProperty
    import org.gradle.api.tasks.InputFile
    import org.gradle.api.tasks.OutputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 4.1K bytes
    - Viewed (0)
Back to top