Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,715 for startm (0.13 sec)

  1. src/go/doc/testdata/testing.go

    	F    func(*T)
    }
    
    func tRunner(t *T, test *InternalTest) {
    	t.start = time.Now()
    
    	// When this goroutine is done, either because test.F(t)
    	// returned normally or because a test failure triggered
    	// a call to runtime.Goexit, record the duration and send
    	// a signal saying that the test is done.
    	defer func() {
    		t.duration = time.Since(t.start)
    		t.signal <- t
    	}()
    
    	test.F(t)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

                throw new IllegalStateException("Not visiting any node.");
            }
            if (current.state == State.CollectValue) {
                current.state = State.Done;
                current = current.parent;
            }
            if (current.state != State.TraverseChildren) {
                throw new IllegalStateException("Cannot end children.");
            }
            if (current.isTopLevelNode()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. pkg/kubelet/util/manager/watch_based_manager.go

    	// AddReference is called from RegisterPod thus it needs to be efficient.
    	// Thus, it is only increasing refCount and in case of first registration
    	// of a given object it starts corresponding reflector.
    	// It's responsibility of the first Get operation to wait until the
    	// reflector propagated the store.
    	c.lock.Lock()
    	defer c.lock.Unlock()
    	item, exists := c.items[key]
    	if !exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

        assertThat(manager.servicesByState().keySet()).containsExactly(Service.State.FAILED);
      }
    
      private static void assertState(
          ServiceManager manager, Service.State state, Service... services) {
        Collection<Service> managerServices = manager.servicesByState().get(state);
        for (Service service : services) {
          assertEquals(service.toString(), state, service.state());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    		informer = genericInformer
    
    		// Start the informer
    		s.informerFactory.Start(instanceContext.Done())
    
    	} else {
    		// Dynamic JSON informer fallback.
    		// Cannot use shared dynamic informer since it would be impossible
    		// to clean CRD informers properly with multiple dependents
    		// (cannot start ahead of time, and cannot track dependencies via stopCh)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/script/engine.go

    				// starting a quoted chunk
    				if start >= 0 {
    					rawArg = append(rawArg, argFragment{s: line[start:i], quoted: false})
    				}
    				start = i + 1
    				quoted = true
    				continue
    			}
    			// 'foo''bar' means foo'bar, like in rc shell and Pascal.
    			if i+1 < len(line) && line[i+1] == '\'' {
    				rawArg = append(rawArg, argFragment{s: line[start:i], quoted: true})
    				start = i + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  7. src/html/template/js_test.go

    		//   "The text in style, script, title, and textarea elements
    		//   must not have an escaping text span start that is not
    		//   followed by an escaping text span end."
    		// Furthermore, spoofing an escaping text span end could lead
    		// to different interpretation of a </script> sequence otherwise
    		// masked by the escaping text span, and spoofing a start could
    		// allow regular text content to be interpreted as script
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    	s.next = s.start
    }
    
    // deleteRange removes the given range from s.b before the current token.
    func (s *scanner) deleteRange(start, end int) {
    	s.b = s.b[:start+copy(s.b[start:], s.b[end:])]
    	diff := end - start
    	s.next -= diff
    	s.start -= diff
    	s.end -= diff
    }
    
    // scan parses the next token of a BCP 47 string.  Tokens that are larger
    // than 8 characters or include non-alphanumeric characters result in an error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServerTest.groovy

            server.expect("f")
            server.start()
    
            when:
            async {
                start {
                    succeeds("a")
                }
                start {
                    succeeds("b")
                }
                server.waitForRequests(2)
                succeeds("c")
                start {
                    succeeds("d")
                }
                start {
                    succeeds("e")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/main.go

    	dwarfGenerateDebugInfo(ctxt)
    
    	bench.Start("callgraph")
    	ctxt.callgraph()
    
    	bench.Start("doStackCheck")
    	ctxt.doStackCheck()
    
    	bench.Start("mangleTypeSym")
    	ctxt.mangleTypeSym()
    
    	if ctxt.IsELF {
    		bench.Start("doelf")
    		ctxt.doelf()
    	}
    	if ctxt.IsDarwin() {
    		bench.Start("domacho")
    		ctxt.domacho()
    	}
    	if ctxt.IsWindows() {
    		bench.Start("dope")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top