Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 228 for Advance (1.48 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    			}
    			if !bytes.Equal(untransformedData, originalText) {
    				t.Fatalf("envelopeTransformer transformed data incorrectly. Expected: %v, got %v", originalText, untransformedData)
    			}
    
    			// advance the clock to allow cache entries to expire depending on TTL
    			fakeClock.Step(2 * time.Minute)
    			// force GC to run by performing a write
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/build_read.go

    			}
    		}
    		break
    	}
    	r.peek = c
    	return r.peek
    }
    
    // nextByte is like peekByte but advances beyond the returned byte.
    func (r *importReader) nextByte(skipSpace bool) byte {
    	c := r.peekByte(skipSpace)
    	r.peek = 0
    	return c
    }
    
    var goEmbed = []byte("go:embed")
    
    // findEmbed advances the input reader to the next //go:embed comment.
    // It reports whether it found a comment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Iterables.java

     * streams.
     *
     * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterables produced in this class
     * are <i>lazy</i>, which means that their iterators only advance the backing iteration when
     * absolutely necessary.
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#iterables">{@code
     * Iterables}</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/plist.go

    			continue
    		}
    		if prevPcdata == abi.UnsafePointUnsafe {
    			continue // already unsafe
    		}
    		if isUnsafePoint(p) {
    			q := ctxt.StartUnsafePoint(prev, newprog)
    			q.Pc = p.Pc
    			q.Link = p
    			// Advance to the end of unsafe point.
    			for p.Link != nil && isUnsafePoint(p.Link) {
    				p = p.Link
    			}
    			if p.Link == nil {
    				break // Reached the end, don't bother marking the end
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

          detachTimeout(timeout)
    
          state = STATE_CLOSED
        }
      }
    
      /** An HTTP body with a fixed length specified in advance. */
      private inner class FixedLengthSource(private var bytesRemaining: Long) :
        AbstractSource() {
        init {
          if (bytesRemaining == 0L) {
            responseBodyComplete()
          }
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. src/math/big/nat.go

    	if mbits := (logM - 1) & (_W - 1); mbits != 0 {
    		mmask = (1 << mbits) - 1
    	}
    	if i > mtop {
    		i = mtop
    	}
    	advance := false
    	z = z.setWord(1)
    	for ; i >= 0; i-- {
    		yi := y[i]
    		if i == mtop {
    			yi &= mmask
    		}
    		for j := 0; j < _W; j += n {
    			if advance {
    				// Account for use of 4 bits in previous iteration.
    				// Unrolled loop for significant performance
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  7. src/go/build/read.go

    			}
    		}
    		break
    	}
    	r.peek = c
    	return r.peek
    }
    
    // nextByte is like peekByte but advances beyond the returned byte.
    func (r *importReader) nextByte(skipSpace bool) byte {
    	c := r.peekByte(skipSpace)
    	r.peek = 0
    	return c
    }
    
    var goEmbed = []byte("go:embed")
    
    // findEmbed advances the input reader to the next //go:embed comment.
    // It reports whether it found a comment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/encoding/json/stream.go

    const (
    	tokenTopValue = iota
    	tokenArrayStart
    	tokenArrayValue
    	tokenArrayComma
    	tokenObjectStart
    	tokenObjectKey
    	tokenObjectColon
    	tokenObjectValue
    	tokenObjectComma
    )
    
    // advance tokenstate from a separator state to a value state
    func (dec *Decoder) tokenPrepareForDecode() error {
    	// Note: Not calling peek before switch, to avoid
    	// putting peek into the standard Decode path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/yaml/decoder_test.go

    		adv, token, err := splitYAMLDocument([]byte(testCase.input), testCase.atEOF)
    		if err != nil {
    			t.Errorf("%d: unexpected error: %v", i, err)
    			continue
    		}
    		if adv != testCase.adv {
    			t.Errorf("%d: advance did not match: %d %d", i, testCase.adv, adv)
    		}
    		if testCase.expect != string(token) {
    			t.Errorf("%d: token did not match: %q %q", i, testCase.expect, string(token))
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. src/unsafe/unsafe.go

    // It is also valid to use &^ to round pointers, usually for alignment.
    // In all cases, the result must continue to point into the original allocated object.
    //
    // Unlike in C, it is not valid to advance a pointer just beyond the end of
    // its original allocation:
    //
    //	// INVALID: end points outside allocated space.
    //	var s thing
    //	end = unsafe.Pointer(uintptr(unsafe.Pointer(&s)) + unsafe.Sizeof(s))
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top