Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for test_ws (0.29 sec)

  1. src/regexp/testdata/testregex.c

    T("  Tom Lord        ******@****.***            (rx tests)\n");
    T("  Henry Spencer   ******@****.***       (original public regex)\n");
    T("  Andrew Hume     ******@****.***     (gre tests)\n");
    T("  John Maddock    ******@****.*** (regex++ tests)\n");
    T("  Philip Hazel    ******@****.***              (pcre tests)\n");
    T("  Ville Laurikari ******@****.***                   (libtre tests)\n");
    H("</PRE>\n");
    H("</BODY>\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  2. tensorflow/BUILD

        ],
        output_dir = "_api/v1/",
        output_files = TENSORFLOW_API_INIT_FILES_V1,
        output_package = "tensorflow._api.v1",
        packages_to_ignore = ["tensorflow.python.framework.test_ops"],
        root_file_name = "v1.py",
        root_init_template = "api_template_v1.__init__.py",
    )
    
    generate_apis(
        name = "tf_python_api_gen_v2",
        api_packages_file_name = "api_packages.txt",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			services := []*model.Service{
    				buildService("test.com", tt.CIDR, protocol.TCP, tnow),
    			}
    
    			virtualService := config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.VirtualService,
    					Name:             "test_vs",
    					Namespace:        "default",
    				},
    				Spec: virtualServiceSpec,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. src/testing/testing.go

    		rng := rand.New(rand.NewSource(n))
    		rng.Shuffle(len(m.tests), func(i, j int) { m.tests[i], m.tests[j] = m.tests[j], m.tests[i] })
    		rng.Shuffle(len(m.benchmarks), func(i, j int) { m.benchmarks[i], m.benchmarks[j] = m.benchmarks[j], m.benchmarks[i] })
    	}
    
    	parseCpuList()
    
    	m.before()
    	defer m.after()
    
    	// Run tests, examples, and benchmarks unless this is a fuzz worker process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            }
    
            @Override
            public SuiteSpec testNG(String name, TemplateLibraryVersionProvider libraryVersionProvider) {
                final SuiteSpec spec = new SuiteSpec(null, name, SuiteSpec.TestSuiteFramework.TEST_NG, libraryVersionProvider.getVersion("testng"), builder);
                suites.add(spec);
                return spec;
            }
        }
    
        public static class SuiteSpec extends AbstractStatement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
Back to top