Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 103 for stops (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	)
    
    	require.ErrorContains(t, err, `Denied`)
    	require.Equal(t, 1, numCompiles)
    }
    
    // Shows what happens when multiple policies share one param type, then
    // one policy stops using the param. The expectation is the second policy
    // keeps behaving normally
    func TestMultiplePoliciesSharedParamType(t *testing.T) {
    	compiler := &fakeCompiler{}
    	matcher := &fakeMatcher{
    		DefaultMatch: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

        int count = 0;
        while (contains(iterator, element)) {
          // Since it lives in the same class, we know contains gets to the element and then stops,
          // though that isn't currently publicly documented.
          count++;
        }
        return count;
      }
    
      /**
       * Returns an iterator that cycles indefinitely over the elements of {@code iterable}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterators.java

        int count = 0;
        while (contains(iterator, element)) {
          // Since it lives in the same class, we know contains gets to the element and then stops,
          // though that isn't currently publicly documented.
          count++;
        }
        return count;
      }
    
      /**
       * Returns an iterator that cycles indefinitely over the elements of {@code iterable}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    			selfScan := gp == userG && readgstatus(userG) == _Grunning
    			if selfScan {
    				casGToWaitingForGC(userG, _Grunning, waitReasonGarbageCollectionScan)
    			}
    
    			// TODO: suspendG blocks (and spins) until gp
    			// stops, which may take a while for
    			// running goroutines. Consider doing this in
    			// two phases where the first is non-blocking:
    			// we scan the stacks we can and ask running
    			// goroutines to scan themselves; and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/time/format.go

    		}
    	}
    	return x, s[i:], nil
    }
    
    // leadingFraction consumes the leading [0-9]* from s.
    // It is used only for fractions, so does not return an error on overflow,
    // it just stops accumulating precision.
    func leadingFraction(s string) (x uint64, scale float64, rem string) {
    	i := 0
    	scale = 1
    	overflow := false
    	for ; i < len(s); i++ {
    		c := s[i]
    		if c < '0' || c > '9' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set_test.go

    		}
    		if err != test.expectedErr {
    			t.Errorf("%s: unexpected processed batch size, expected %v, got %v", test.name, test.expectedErr, err)
    		}
    		// verify that slowStartBatch stops trying more calls after a batch fails
    		if callCnt != test.expectedCallCnt {
    			t.Errorf("%s: slowStartBatch() still tries calls after a batch fails, expected %d calls, got %d", test.name, test.expectedCallCnt, callCnt)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  7. src/go/build/build.go

    	s := os.Getenv(name)
    	if s == "" {
    		return def
    	}
    	return s
    }
    
    // An ImportMode controls the behavior of the Import method.
    type ImportMode uint
    
    const (
    	// If FindOnly is set, Import stops after locating the directory
    	// that should contain the sources for a package. It does not
    	// read any files in the directory.
    	FindOnly ImportMode = 1 << iota
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. src/runtime/asm_amd64.s

    	// by the compiler.
    	// Note that runtime.sehtramp can't be attached directly to asmcgocall
    	// because its initial stack pointer can be outside the system stack bounds,
    	// and Windows stops the stack unwinding without calling the exception handler
    	// when it reaches that point.
    	MOVQ	BX, CX		// CX = first argument in Win64
    	CALL	AX
    	// The exception handler is not called if the next instruction is part of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    		// Emit a FDE, Section 6.4.1.
    		// First build the section contents into a byte buffer.
    		deltaBuf = deltaBuf[:0]
    		if haslr && fi.TopFrame() {
    			// Mark the link register as having an undefined value.
    			// This stops call stack unwinders progressing any further.
    			// TODO: similar mark on non-LR architectures.
    			deltaBuf = append(deltaBuf, dwarf.DW_CFA_undefined)
    			deltaBuf = dwarf.AppendUleb128(deltaBuf, uint64(thearch.Dwarfreglr))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    	if t.IdleConnTimeout > 0 {
    		oldTime = time.Now().Add(-t.IdleConnTimeout)
    	}
    
    	// Look for most recently-used idle connection.
    	if list, ok := t.idleConn[w.key]; ok {
    		stop := false
    		delivered := false
    		for len(list) > 0 && !stop {
    			pconn := list[len(list)-1]
    
    			// See whether this connection has been idle too long, considering
    			// only the wall time (the Round(0)), in case this is a laptop or VM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top