Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for elide (0.04 sec)

  1. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

        final E[] items = this.items;
        // if removing front item, just advance
        if (i == takeIndex) {
          items[takeIndex] = null;
          takeIndex = inc(takeIndex);
        } else {
          // slide over all others up through putIndex.
          for (; ; ) {
            int nexti = inc(i);
            if (nexti != putIndex) {
              items[i] = items[nexti];
              i = nexti;
            } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    // The new signatures from signers are listed in the encoded message after
    // the existing signatures already present in n.Sigs.
    // If any signer uses the same key as an existing signature,
    // the existing signature is elided from the output.
    func Sign(n *Note, signers ...Signer) ([]byte, error) {
    	var buf bytes.Buffer
    	if !strings.HasSuffix(n.Text, "\n") {
    		return nil, errMalformedNote
    	}
    	buf.WriteString(n.Text)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. src/regexp/exec_test.go

    		//     u	standard unspecified behavior -- errors not counted
    		//     v	REG_CLASS_ESCAPE	\ special inside [...]
    		//     w	REG_NOSUB		no subexpression match array
    		//     x	REG_LENIENT		let some errors slide
    		//     y	REG_LEFT		regexec() implicit ^...
    		//     z	REG_NULL		NULL subexpressions ok
    		//     $	                        expand C \c escapes in fields 2 and 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. pkg/kube/inject/inject.go

    	ImageTypeDebug = "debug"
    	// ImageTypeDistroless is the suffix of the distroless image.
    	ImageTypeDistroless = "distroless"
    	// ImageTypeDefault is the type name of the default image, sufix is elided.
    	ImageTypeDefault = "default"
    )
    
    // SidecarTemplateData is the data object to which the templated
    // version of `SidecarInjectionSpec` is applied.
    type SidecarTemplateData struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. src/internal/bisect/bisect.go

    // printed by the bisect tool to describe a change implicated in causing
    // a failure. Each line in the report for a given change must contain a
    // match marker with that change ID, as returned by [Marker].
    // The markers are elided when displaying the lines to the user.
    //
    // A match marker has the form “[bisect-match 0x1234]” where
    // 0x1234 is the change ID in hexadecimal.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. src/bufio/bufio.go

    		lastByte:     -1,
    		lastRuneSize: -1,
    	}
    }
    
    var errNegativeRead = errors.New("bufio: reader returned negative count from Read")
    
    // fill reads a new chunk into the buffer.
    func (b *Reader) fill() {
    	// Slide existing data to beginning.
    	if b.r > 0 {
    		copy(b.buf, b.buf[b.r:b.w])
    		b.w -= b.r
    		b.r = 0
    	}
    
    	if b.w >= len(b.buf) {
    		panic("bufio: tried to fill full buffer")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof.go

    // output to a writer during profiling.
    //
    // # Heap profile
    //
    // The heap profile reports statistics as of the most recently completed
    // garbage collection; it elides more recent allocation to avoid skewing
    // the profile away from live data and toward garbage.
    // If there has been no garbage collection at all, the heap profile reports
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/static/css/fontawesome-all-5.0.6.css

    before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-martini:before{content:"\f000"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-goog...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 33.9K bytes
    - Viewed (0)
  9. src/runtime/symtab.go

    		// Nothing inline at tracepc.
    		return stk
    	}
    
    	// Treat the previous func as normal. We haven't actually checked, but
    	// since this pc was included in the stack, we know it shouldn't be
    	// elided.
    	calleeID := abi.FuncIDNormal
    
    	// Remove pc from stk; we'll re-add it below.
    	stk = stk[:len(stk)-1]
    
    	for ; uf.valid(); uf = u.next(uf) {
    		funcID := u.srcFunc(uf).funcID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/InetAddresses.java

        }
      }
    
      /**
       * Convert a list of hextets into a human-readable IPv6 address.
       *
       * <p>In order for "::" compression to work, the input should contain negative sentinel values in
       * place of the elided zeroes.
       *
       * @param hextets {@code int[]} array of eight 16-bit hextets, or -1s
       */
      private static String hextetsToIPv6String(int[] hextets) {
        // While scanning the array, handle these state transitions:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top