Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 166 for slowTest (0.4 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/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)
  6. 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)
  7. 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)
  8. 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)
  9. src/testing/slogtest/run_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package slogtest_test
    
    import (
    	"bytes"
    	"encoding/json"
    	"log/slog"
    	"testing"
    	"testing/slogtest"
    )
    
    func TestRun(t *testing.T) {
    	var buf bytes.Buffer
    
    	newHandler := func(*testing.T) slog.Handler {
    		buf.Reset()
    		return slog.NewJSONHandler(&buf, nil)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 20:37:12 UTC 2023
    - 623 bytes
    - Viewed (0)
  10. src/log/slog/example_log_level_test.go

    // 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"
    	"log/slog"
    	"log/slog/internal/slogtest"
    	"os"
    )
    
    // This example shows how to use slog.SetLogLoggerLevel to change the minimal level
    // of the internal default handler for slog package before calling slog.SetDefault.
    func ExampleSetLogLoggerLevel_log() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top