Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,519 for startm (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top