Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,480 for west (0.04 sec)

  1. pkg/registry/authorization/localsubjectaccessreview/rest.go

    }
    
    func (r *REST) New() runtime.Object {
    	return &authorizationapi.LocalSubjectAccessReview{}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *REST) Destroy() {
    	// Given no underlying store, we don't destroy anything
    	// here explicitly.
    }
    
    var _ rest.SingularNameProvider = &REST{}
    
    func (r *REST) GetSingularName() string {
    	return "localsubjectaccessreview"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-plugin-performance/src/templates/project-with-source/Test.java

        @org.junit.Test
        public void testOne() throws Exception {
            if(Boolean.getBoolean("slowTasks")) {
                Thread.sleep(10);
            }
            for (int i = 0; i < 500; i++) {
                System.out.println("Some test output from ${testClassName}.testOne - " + i);
                System.err.println("Some test error  from ${testClassName}.testOne - " + i);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. .github/workflows/test.yml

          - name: Install Dependencies
            if: steps.cache.outputs.cache-hit != 'true'
            run: pip install -r requirements-tests.txt
          - name: Install Pydantic v2
            run: pip install "pydantic>=2.0.2,<3.0.0"
          - name: Lint
            run: bash scripts/lint.sh
    
      test:
        runs-on: ubuntu-latest
        strategy:
          matrix:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. pkg/registry/authorization/selfsubjectaccessreview/rest.go

    }
    
    func (r *REST) New() runtime.Object {
    	return &authorizationapi.SelfSubjectAccessReview{}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *REST) Destroy() {
    	// Given no underlying store, we don't destroy anything
    	// here explicitly.
    }
    
    var _ rest.SingularNameProvider = &REST{}
    
    func (r *REST) GetSingularName() string {
    	return "selfsubjectaccessreview"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top