Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,568 for tstart (0.23 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/SocksProxyServer.groovy

        private int port
    
        @Override
        protected void after() {
            stop()
        }
    
        void start() {
            start(new SocksServer())
        }
    
        void start(SocksServer socksServer) {
            assert port > 0
            this.socksServer = socksServer
            socksServer.start(port)
            println(this)
        }
    
        void configureProxy(GradleExecuter executer) {
            if (port == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/internal/scan/config/fixtures/ApplyDevelocityPluginFixture.groovy

            if (pluginManagementMatcher.find()) {
                def start = pluginManagementMatcher.start(0)
                def end = pluginManagementMatcher.end(0)
                pluginManagementBlock = settingsText.substring(start, end)
                settingsText = settingsText.substring(0, start) + settingsText.substring(end)
            } else {
                pluginManagementBlock = null
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

            start = System.currentTimeMillis();
            SerializeUtil.serialize(hmap);
            System.out.println("HashMap serialize:" + (System.currentTimeMillis() - start));
    
            start = System.currentTimeMillis();
            SerializeUtil.serialize(amap);
            System.out.println("ArrayMap serialize:" + (System.currentTimeMillis() - start));
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    		"/healthz/delegate-health",
    		"/healthz/log",
    		"/healthz/ping",
    		"/healthz/poststarthook/delegate-post-start-hook",
    		"/healthz/poststarthook/generic-apiserver-start-informers",
    		"/healthz/poststarthook/max-in-flight-filter",
    		"/healthz/poststarthook/storage-object-count-tracker-hook",
    		"/healthz/poststarthook/wrapping-post-start-hook",
    		"/healthz/wrapping-health",
    		"/livez",
    		"/livez/delegate-health",
    		"/livez/log",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/deadstore_test.go

    	ptrType := c.config.Types.BytePtr
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("start", OpInitMem, types.TypeMem, 0, nil),
    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    			Valu("v", OpConstBool, c.config.Types.Bool, 1, nil),
    			Valu("addr", OpAddr, ptrType, 0, nil, "sb"),
    			Goto("loop")),
    		Bloc("loop",
    			Valu("phi", OpPhi, types.TypeMem, 0, nil, "start", "store"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/collection/CaseInsensitiveMapTest.java

                System.out.println("CaseInsensitiveMap.put:" + (System.currentTimeMillis() - start));
    
                start = System.currentTimeMillis();
                for (int i = 0; i < num; i++) {
                    hmap.get("a" + String.valueOf(i));
                }
                System.out.println("HashMap.get:" + (System.currentTimeMillis() - start));
    
                start = System.currentTimeMillis();
                for (int i = 0; i < num; i++) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. src/path/filepath/symlink.go

    	if volLen < len(path) && os.IsPathSeparator(path[volLen]) {
    		volLen++
    	}
    	vol := path[:volLen]
    	dest := vol
    	linksWalked := 0
    	for start, end := volLen, volLen; start < len(path); start = end {
    		for start < len(path) && os.IsPathSeparator(path[start]) {
    			start++
    		}
    		end = start
    		for end < len(path) && !os.IsPathSeparator(path[end]) {
    			end++
    		}
    
    		// On Windows, "." can be a symlink.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/cmd/trace/gen.go

    	if task.Parent != nil && task.Start != nil && task.Start.Kind() == trace.EventTaskBegin {
    		ctx.TaskArrow(traceviewer.ArrowEvent{
    			Name:         "newTask",
    			Start:        ctx.elapsed(task.Start.Time()),
    			End:          ctx.elapsed(task.Start.Time()),
    			FromResource: uint64(task.Parent.ID),
    			ToResource:   uint64(task.ID),
    			FromStack:    ctx.Stack(viewerFrames(task.Start.Stack())),
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/NamedOperation.groovy

    /**
     * Represents some operation performed by a test. Has a start and end instant.
     */
    class NamedOperation {
        final String name
        final Instant start
        private final AtomicReference<Instant> end = new AtomicReference<>()
    
        NamedOperation(String name) {
            this.name = name
            this.start = new Instant(System.nanoTime())
        }
    
        @Override
        String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/runtime/traceevent.go

    	traceEvStacks     // start of a section of the stack table [...traceEvStack]
    	traceEvStack      // stack table entry [ID, ...{PC, func string ID, file string ID, line #}]
    	traceEvStrings    // start of a section of the string dictionary [...traceEvString]
    	traceEvString     // string dictionary entry [ID, length, string]
    	traceEvCPUSamples // start of a section of CPU samples [...traceEvCPUSample]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top