Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for elide (0.04 sec)

  1. src/cmd/compile/internal/types2/check_test.go

    		if delta > colDelta {
    			t.Errorf("%s: got col = %d; want %d", gotPos, gotPos.Col(), errList[index].Pos.Col())
    		}
    
    		// eliminate from errList
    		if n := len(errList) - 1; n > 0 {
    			// not the last entry - slide entries down (don't reorder)
    			copy(errList[index:], errList[index+1:])
    			filemap[line] = errList[:n]
    		} else {
    			// last entry - remove errList from filemap
    			delete(filemap, line)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/cmd/internal/test2json/test2json.go

    			// Emit it as the beginning (or continuation) of a partial line.
    			t := trimUTF8(l.b)
    			l.part(l.b[:t])
    			l.b = l.b[:copy(l.b, l.b[t:])]
    			l.mid = true
    		}
    
    		// There's room for more input.
    		// Slide it down in hope of completing the line.
    		if i > 0 {
    			l.b = l.b[:copy(l.b, l.b[i:])]
    		}
    	}
    }
    
    // indexEOL finds the index of a line ending,
    // returning its position and output width.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    | link:https://youtrack.jetbrains.com/issue/KT-23880[1.3.30]
    | Hidden behind a feature toggle
    
    | Toothpick
    | link:https://github.com/stephanenicolas/toothpick/pull/320[2.0]
    | N/A
    
    | Glide
    | link:https://github.com/bumptech/glide/releases/tag/v4.9.0[4.9.0]
    | N/A
    
    | Android-State
    | link:https://github.com/evernote/android-state/releases/tag/v1.3.0[1.3.0]
    | N/A
    
    | Parceler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. src/log/slog/value.go

    		frame, more := frames.Next()
    		fmt.Fprintf(&b, "called from %s (%s:%d)\n", frame.Function, frame.File, frame.Line)
    		if !more {
    			break
    		}
    		i++
    		if i >= nFrames {
    			fmt.Fprintf(&b, "(rest of stack elided)\n")
    			break
    		}
    	}
    	return b.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/expr.go

    			base.Warn("index bounds check elided")
    		}
    	} else if ir.IsConst(n.X, constant.String) {
    		n.SetBounded(bounded(r, int64(len(ir.StringVal(n.X)))))
    		if base.Flag.LowerM != 0 && n.Bounded() && !ir.IsConst(n.Index, constant.Int) {
    			base.Warn("index bounds check elided")
    		}
    	}
    	return n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/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: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. src/cmd/internal/src/pos.go

    	PosPrologueEnd
    	PosEpilogueBegin
    )
    
    func makeLicoRaw(line, col uint) lico {
    	return lico(line<<lineShift | col<<colShift)
    }
    
    // This is a not-position that will not be elided.
    // Depending on the debugger (gdb or delve) it may or may not be displayed.
    func makeBogusLico() lico {
    	return makeLicoRaw(bogusLine, 0).withIsStmt()
    }
    
    func makeLico(line, col uint) lico {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  8. src/log/slog/handler_test.go

    		},
    		{
    			// Test resolution when there is no ReplaceAttr function.
    			name: "resolve",
    			attrs: []Attr{
    				Any("", &replace{Value{}}), // should be elided
    				Any("name", logValueName{"Ren", "Hoek"}),
    			},
    			wantText: "time=2000-01-02T03:04:05.000Z level=INFO msg=message name.first=Ren name.last=Hoek",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. src/fmt/doc.go

    		returns true;
    		always print a decimal point for %e, %E, %f, %F, %g and %G;
    		do not remove trailing zeros for %g and %G;
    		write e.g. U+0078 'x' if the character is printable for %U (%#U)
    	' '	(space) leave a space for elided sign in numbers (% d);
    		put spaces between bytes printing strings or slices in hex (% x, % X)
    	'0'	pad with leading zeros rather than spaces;
    		for numbers, this moves the padding after the sign
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. android/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)
Back to top