Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 226 for slowTest (0.18 sec)

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

    package org.gradle.junitplatform;
    
    import org.junit.jupiter.api.*;
    
    public class TagTest {
        @Fast
        @Test
        public void fastTest() {
        }
    
        @Tag("slow")
        @Test
        public void slowTest(){
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 210 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/junitplatform-tagging/kotlin/src/test/java/org/gradle/junitplatform/TagTest.java

    package org.gradle.junitplatform;
    
    import org.junit.jupiter.api.*;
    
    public class TagTest {
        @Fast
        @Test
        public void fastTest() {
        }
    
        @Tag("slow")
        @Test
        public void slowTest(){
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 210 bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterTestTaskIntegrationTest.groovy

                      Assertions.assertEquals(1,1);
                   }
    
                   @Test
                   @Tag("MyTest\$Slow")
                   public void slowTest() {
                      System.out.println(System.getProperty("java.version"));
                      Assertions.assertEquals(1,1);
                   }
                }
            """.stripIndent()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4TestTaskIntegrationTest.groovy

                      System.out.println(System.getProperty("java.version"));
                      Assert.assertEquals(1,1);
                   }
    
                   @Test
                   @Category(Slow.class)
                   public void slowTest() {
                      System.out.println(System.getProperty("java.version"));
                      Assert.assertEquals(1,1);
                   }
    
                   interface Fast {}
                   interface Slow {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/log/slog/internal/slogtest/slogtest.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package slogtest contains support functions for testing slog.
    package slogtest
    
    import "log/slog"
    
    // RemoveTime removes the top-level time attribute.
    // It is intended to be used as a ReplaceAttr function,
    // to make example output deterministic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 20:33:11 UTC 2023
    - 553 bytes
    - Viewed (0)
  6. src/testing/slogtest/slogtest.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package slogtest implements support for testing implementations of log/slog.Handler.
    package slogtest
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"log/slog"
    	"reflect"
    	"runtime"
    	"testing"
    	"time"
    )
    
    type testCase struct {
    	// Subtest name.
    	name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. src/net/netip/slow_test.go

    sivchari <******@****.***> 1710167310 +0900
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/metrics/metrics.go

    		// the lowest bucket was based around the 180ns/op figure for BenchmarkAccess,
    		// plus some additional leeway to account for the apiserver doing other things
    		// the largest bucket was chosen based on the fact that benchmarks indicate the
    		// same Xeon running a CEL expression close to the estimated cost limit takes
    		// around 760ms, so that bucket should only ever have the slowest CEL expressions
    		// in it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    Click on the _"Configuration"_ tab to break this stage into component parts,
    exposing the cause of the slowness.
    
    image::performance/build-scan-configuration-breakdown.png[title="Build scan configuration breakdown"]
    
    Here you can see the scripts and plugins applied to the project in descending order of how long they took to apply.
    The slowest plugin and script applications are good candidates for optimization.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/log/slog/example_logvaluer_secret_test.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package slog_test
    
    import (
    	"log/slog"
    	"log/slog/internal/slogtest"
    	"os"
    )
    
    // A token is a secret value that grants permissions.
    type Token string
    
    // LogValue implements slog.LogValuer.
    // It avoids revealing the token.
    func (Token) LogValue() slog.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:32:54 UTC 2023
    - 906 bytes
    - Viewed (0)
Back to top