Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 9,309 for west (0.07 sec)

  1. testing/performance/src/templates/with-testng/Test.java

    import static org.testng.Assert.*;
    
    public class ${testClassName} {
        private final ${productionClassName} production = new ${productionClassName}("value");
    
    <% 20.times { index -> %>
        @Test
        public void test${index}() {
            assertEquals(production.getProperty(), "value");
        }
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 360 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/test.go

    	"github.com/google/cel-go/common/types/ref"
    )
    
    // Test provides a test() function that returns true.
    func Test(options ...TestOption) cel.EnvOption {
    	t := &testLib{version: math.MaxUint32}
    	for _, o := range options {
    		t = o(t)
    	}
    	return cel.Lib(t)
    }
    
    type testLib struct {
    	version uint32
    }
    
    func (*testLib) LibraryName() string {
    	return "k8s.test"
    }
    
    type TestOption func(*testLib) *testLib
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/test.cc

    #include "tensorflow/core/platform/cpu_info.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/platform/test_benchmark.h"
    
    // Macros that expand to tokens based on the entry point name.
    // clang-format off
    #define CPP_CLASS {{TFCOMPILE_CPP_CLASS}}  // NOLINT(whitespace/braces)
    #define TEST_NAME {{TFCOMPILE_NAME}}Test   // NOLINT(whitespace/braces)
    #define BM_NAME   BM_{{TFCOMPILE_NAME}}    // NOLINT(whitespace/braces)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/with-verbose-junit/Test.java

        @org.junit.Test
        public void testOne() {
            for (int i = 0; i < 1000; i++) {
                System.out.println("Some test output from ${testClassName}.testOne - " + i);
                System.err.println("Some test error  from ${testClassName}.testOne - " + i);
            }
            assertEquals(production.getProperty(), "value");
        }
    
        @org.junit.Test
        public void testTwo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 991 bytes
    - Viewed (0)
  5. src/cmd/internal/test2json/testdata/timeout.test

    === RUN   Test
    panic: test timed out after 1s
    
    FAIL	p	1.111s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 66 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/scala/compilerPlugin/groovy/src/main/scala/org/gradle/sample/Test.scala

    package org.gradle.sample
    
    object Test {
        def main(args: Array[String]): Unit = {
            class A[X[_]]
            new A[Map[Int, *]]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 142 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/scala/compilerPlugin/kotlin/src/main/scala/org/gradle/sample/Test.scala

    package org.gradle.sample
    
    object Test {
        def main(args: Array[String]): Unit = {
            class A[X[_]]
            new A[Map[Int, *]]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 142 bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/test.go

    //   - pmain, the package main corresponding to the test binary (running tests in ptest and pxtest).
    //   - ptest, the package p compiled with added "package p" test files.
    //   - pxtest, the result of compiling any "package p_test" (external) test files.
    //
    // If the package has no "package p_test" test files, pxtest will be nil.
    // If the non-test compilation of package p can be reused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  9. pkg/monitoring/monitortest/test.go

    	"go.opentelemetry.io/otel/attribute"
    
    	"istio.io/istio/pkg/lazy"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/monitoring"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    type MetricsTest struct {
    	t      test.Failer
    	reg    prometheus.Gatherer
    	deltas map[metricKey]float64
    }
    
    type metricKey struct {
    	name  string
    	attrs attribute.Set
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. testing/performance/src/templates/project-with-source/Test.scala

    package ${packageName}
    
    import org.junit.Assert._
    
    class ${testClassName} {
        val production = new ${productionClassName}("value")
    
        @org.junit.Test
        def test() {
            assertEquals(production.property, "value")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 229 bytes
    - Viewed (0)
Back to top