Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 176 for elided (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/net/textproto/reader.go

    func (r *Reader) ReadDotBytes() ([]byte, error) {
    	return io.ReadAll(r.DotReader())
    }
    
    // ReadDotLines reads a dot-encoding and returns a slice
    // containing the decoded lines, with the final \r\n or \n elided from each.
    //
    // See the documentation for the [Reader.DotReader] method for details about dot-encoding.
    func (r *Reader) ReadDotLines() ([]string, error) {
    	// We could use ReadDotBytes and then Split it,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/doc/pkg.go

    				}
    				pkg.Printf("%s%s %s%s\n", indent, name, s, lineComment)
    				found = true
    			}
    		}
    	}
    	if found {
    		if numUnmatched > 0 {
    			pkg.Printf("\n    // ... other fields elided ...\n")
    		}
    		pkg.Printf("}\n")
    	}
    	return found
    }
    
    // match reports whether the user's symbol matches the program's.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. 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)
Back to top