Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 393 for test32 (0.15 sec)

  1. istioctl/pkg/authz/analyzer_test.go

    						},
    						LastUpdated: timestamppb.Now(),
    					},
    					ClientStatus: 453,
    				},
    			},
    		},
    	}
    	tests := []struct {
    		name  string
    		input *envoy_admin.ListenersConfigDump_DynamicListener
    	}{
    		{
    			name: "Test2",
    			input: &envoy_admin.ListenersConfigDump_DynamicListener{
    				Name: "First_Listener",
    				ActiveState: &envoy_admin.ListenersConfigDump_DynamicListenerState{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultBinaryCollectionTest.groovy

            def action = Mock(Action)
            def binary1 = Stub(SwiftBinary)
            binary1.name >> "test1"
            def binary2 = Stub(SwiftBinary)
            binary2.name >> "test2"
    
            when:
            def p = container.getByName("test1")
            p.configure(action)
    
            container.add(binary1)
            container.add(binary2)
    
            then:
            0 * action._
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

                    "_id", "001", //
                    "config_id", "W01", //
                    "url", "http://test.com/001"//
            )));
            docList.add(new HashMap<>(Map.of(//
                    "_id", "002", //
                    "thumbnail", "http://test.com/002", //
                    "url", "http://test.com/002"//
            )));
            indexingHelper.sendDocuments(client, docList);
            assertEquals(0, docList.size());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/ipset/ipset_test.go

    			test.set.setIPSetDefaults()
    			if !reflect.DeepEqual(test.set, test.expect) {
    				t.Errorf("expected ipset struct: %v, got ipset struct: %v", test.expect, test.set)
    			}
    		})
    	}
    }
    
    func Test_checkIPandProtocol(t *testing.T) {
    	testset := &IPSet{
    		Name:       "test1",
    		SetType:    HashIPPort,
    		HashFamily: ProtocolFamilyIPV4,
    		HashSize:   1024,
    		MaxElem:    65536,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/ParallelTestExecutionIntegrationTest.groovy

                    }
                }
            """
    
            def tests = blockingServer.concurrent("test_1", "test_2")
            def other = blockingServer.concurrent("other_1", "other_2")
            blockingServer.expectInAnyOrder(tests, other)
    
            when:
            executer.withArguments("--parallel", "--max-workers=4")
            run('test', 'other')
    
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LazyDownloadsIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractHttpDependencyResolutionTest
    
    class LazyDownloadsIntegrationTest extends AbstractHttpDependencyResolutionTest {
        def module = mavenHttpRepo.module("test", "test", "1.0").publish()
        def module2 = mavenHttpRepo.module("test", "test2", "1.0").publish()
    
        def setup() {
            createDirs("child")
            settingsFile << "include 'child'"
            buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. src/cmd/distpack/test.go

    				log.Fatalf("unexpected source archive file: %s (generated by dist)", f.Name)
    			}
    		}
    	}
    }
    
    func testZip(a *Archive) { test("binary", a, zipRules) }
    func testMod(a *Archive) { test("module", a, modRules) }
    
    func test(kind string, a *Archive, rules []testRule) {
    	ok := true
    	have := make([]bool, len(rules))
    	for _, f := range a.Files {
    		for i, r := range rules {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 22:29:19 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/ant/useAntType/kotlin/libs/test.jar

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  9. platforms/software/testing-base/src/integTest/resources/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest/emitsBuildOperationsForJUnitTests/src/test/java/org/gradle/Test.java

     * limitations under the License.
     */
    
    package org.gradle;
    
    import org.junit.Assert;
    
    public class Test {
    
        @org.junit.Test
        public void ok() {
            System.out.println("sys out ok");
            System.err.println("sys err ok");
        }
    
        @org.junit.Test
        public void fail() {
            Assert.fail();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 895 bytes
    - Viewed (0)
  10. testing/performance/src/templates/project-with-source/Test.java

    package ${packageName};
    
    import static org.junit.Assert.*;
    
    public class ${testClassName} {
        private final ${productionClassName} production = new ${productionClassName}("value");
    
        @org.junit.Test
        public void test() {
            assertEquals(production.getProperty(), "value");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 294 bytes
    - Viewed (0)
Back to top