Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,836 for startm (0.37 sec)

  1. src/cmd/vendor/rsc.io/markdown/link.go

    func (v *validDomainChecker) parseValidDomain(start int) (n int, found bool) {
    	if start < v.cut {
    		return 0, false
    	}
    	i := start
    	dots := 0
    	for ; i < len(v.s); i++ {
    		c := v.s[i]
    		if c == '_' {
    			dots = -2
    			continue
    		}
    		if c == '.' {
    			dots++
    			continue
    		}
    		if !isLDH(c) {
    			break
    		}
    	}
    	if dots >= 0 && i > start {
    		return i - start, true
    	}
    	v.cut = i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc.go

    	p.summaryMappedReady += p.scav.index.grow(base, limit, p.sysStat)
    
    	// Update p.start and p.end.
    	// If no growth happened yet, start == 0. This is generally
    	// safe since the zero page is unmapped.
    	firstGrowth := p.start == 0
    	start, end := chunkIndex(base), chunkIndex(limit)
    	if firstGrowth || start < p.start {
    		p.start = start
    	}
    	if end > p.end {
    		p.end = end
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    				resultCh <- err
    			}()
    
    			// We create handleCtx with an adjusted deadline, for two reasons.
    			// One is to limit the time the request waits before its execution starts.
    			// The other reason for it is that Handle() underneath may start additional goroutine
    			// that is blocked on context cancellation. However, from APF point of view,
    			// we don't want to wait until the whole watch request is processed (which is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. src/internal/fuzz/worker.go

    		return fmt.Errorf("fuzzing process terminated without fuzzing: %w", err)
    	}
    	return nil
    }
    
    // start runs a new worker process.
    //
    // If the process couldn't be started, start returns an error. Start won't
    // return later termination errors from the process if they occur.
    //
    // If the process starts successfully, start returns nil. stop must be called
    // once later to clean up, even if the process terminates on its own.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. src/debug/dwarf/entry.go

    			start, err := d.debugAddr(u, uint64(addrBase), startIdx)
    			if err != nil {
    				return nil, err
    			}
    			ret = append(ret, [2]uint64{start, start + len})
    
    		case rleOffsetPair:
    			off1 := buf.uint()
    			off2 := buf.uint()
    			ret = append(ret, [2]uint64{base + off1, base + off2})
    
    		case rleBaseAddress:
    			base = buf.addr()
    
    		case rleStartEnd:
    			start := buf.addr()
    			end := buf.addr()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top