Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for testmovk (0.36 sec)

  1. operator/cmd/mesh/manifest_shared_test.go

    	allClusterGVKs = helmreconciler.ClusterResources
    )
    
    func init() {
    	if kubeBuilderInstalled() {
    		// TestMode is required to not wait in the go client for resources that will never be created in the test server.
    		helmreconciler.TestMode = true
    		// Add install and controller to the list of commands to run tests against.
    		testedManifestCmds = append(testedManifestCmds, cmdApply, cmdController)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/tasks/compile/GroovyCompileOptionsTest.groovy

            assertNull(compileOptions.configurationScript)
            assertFalse(compileOptions.javaAnnotationProcessing)
            assertFalse(compileOptions.parameters)
        }
    
        @Test
        void testFork() {
            compileOptions.fork = false
            assertNull(compileOptions.forkOptions.memoryMaximumSize)
    
            compileOptions.fork([memoryMaximumSize: '1g'])
            assertTrue(compileOptions.fork)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnit3FilteringIntegrationTest.groovy

            file("src/test/java/FooTest.java") << """
                import junit.framework.*;
    
                public class FooTest extends TestCase {
                    public void testPass() {}
                    public void testOk() {}
                }
            """.stripIndent()
    
            when:
            succeeds("test", "--tests", "FooTest.testPass")
    
            then:
            def result = new DefaultTestExecutionResult(testDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            1 * processor.started({ it.id == 1 }, { it.parentId == null })
            1 * processor.started({ it.id == 2 && it.name == "testOk" && it.className == AJunit3TestClass.name }, { it.parentId == 1 })
            1 * processor.completed(2, { it.resultType == null })
            1 * processor.started({ it.id == 3 && it.name == "testOk" && it.className == BJunit3TestClass.name }, { it.parentId == 1 })
            1 * processor.completed(3, { it.resultType == null })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/CountingInputStreamTest.java

        assertEquals(-1, counter.read(new byte[30]));
        assertEquals(20, counter.getCount());
      }
    
      @SuppressWarnings("CheckReturnValue") // calling read() to skip a byte
      public void testMark() throws Exception {
        assertTrue(counter.markSupported());
        assertEquals(10, counter.read(new byte[10]));
        assertEquals(10, counter.getCount());
        counter.mark(5);
        counter.read();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. src/internal/gover/gover_test.go

    	{"1.21.0", Version{"1", "21", "0", "", ""}},
    	{"1.24", Version{"1", "24", "", "", ""}},
    	{"1.24rc3", Version{"1", "24", "", "rc", "3"}},
    	{"1.24.0", Version{"1", "24", "0", "", ""}},
    	{"1.999testmod", Version{"1", "999", "", "testmod", ""}},
    	{"1.99999999999999999", Version{"1", "99999999999999999", "", "", ""}},
    }
    
    func TestLang(t *testing.T) { test1(t, langTests, "Lang", Lang) }
    
    var langTests = []testCase1[string, string]{
    	{"1.2rc3", "1.2"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4TestClassDetectionIntegrationTest.groovy

                    public class NonStaticInner {
                        @Test public void ok() { }
                    }
    
                    public class NonStaticInnerTestCase extends TestCase {
                        public void testOk() { }
                    }
                }
            """.stripIndent()
            writeCustomRunnerClass('CustomRunnerOrExtension')
            buildFile << """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. src/net/http/request_test.go

    		b.Fatalf("Failed to copy %d bytes: %v", n, err)
    	}
    
    	run(b, func(b *testing.B, mode testMode) {
    		runFileAndServerBenchmarks(b, mode, f, n)
    	}, []testMode{http1Mode, https1Mode, http2Mode})
    }
    
    func runFileAndServerBenchmarks(b *testing.B, mode testMode, f *os.File, n int64) {
    	handler := HandlerFunc(func(rw ResponseWriter, req *Request) {
    		defer req.Body.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  9. test/typeparam/list2.go

    		panic(fmt.Sprintf("e.value = %d, want 1", e.Value))
    	}
    	if e.Next() != nil {
    		panic(fmt.Sprintf("e.Next() != nil"))
    	}
    	if e.Prev() != nil {
    		panic(fmt.Sprintf("e.Prev() != nil"))
    	}
    }
    
    func TestMove() {
    	l := _New[int]()
    	e1 := l.PushBack(1)
    	e2 := l.PushBack(2)
    	e3 := l.PushBack(3)
    	e4 := l.PushBack(4)
    
    	l.MoveAfter(e3, e3)
    	checkListPointers(l, []*(_Element[int]){e1, e2, e3, e4})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/matchconditions/matcher_test.go

    	}
    
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			m := NewMatcher(&fakeCelFilter{
    				evaluations: tc.evaluations,
    				throwError:  tc.throwError,
    			}, tc.failPolicy, "webhook", "test", "testhook")
    			ctx := context.TODO()
    			matchResult := m.Match(ctx, fakeVersionedAttr, nil, nil)
    
    			if matchResult.Error != nil {
    				if len(tc.expectError) == 0 {
    					t.Fatal(matchResult.Error)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 00:53:08 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top