Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 785 for printhex (0.12 sec)

  1. src/cmd/go/internal/fix/fix.go

    			base.Errorf("%v", pkg.Error)
    			continue
    		}
    		pkgs[w] = pkg
    		w++
    	}
    	pkgs = pkgs[:w]
    
    	printed := false
    	for _, pkg := range pkgs {
    		if modload.Enabled() && pkg.Module != nil && !pkg.Module.Main {
    			if !printed {
    				fmt.Fprintf(os.Stderr, "go: not fixing packages in dependency modules\n")
    				printed = true
    			}
    			continue
    		}
    		// Use pkg.gofiles instead of pkg.Dir so that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/fix/printerconfig.go

    }
    
    func printerconfig(f *ast.File) bool {
    	if !imports(f, "go/printer") {
    		return false
    	}
    
    	fixed := false
    	walk(f, func(n any) {
    		cl, ok := n.(*ast.CompositeLit)
    		if !ok {
    			return
    		}
    		se, ok := cl.Type.(*ast.SelectorExpr)
    		if !ok {
    			return
    		}
    		if !isTopName(se.X, "printer") || se.Sel == nil {
    			return
    		}
    
    		if ss := se.Sel.String(); ss == "Config" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. src/go/printer/gobuild.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package printer
    
    import (
    	"go/build/constraint"
    	"slices"
    	"text/tabwriter"
    )
    
    func (p *printer) fixGoBuildLines() {
    	if len(p.goBuild)+len(p.plusBuild) == 0 {
    		return
    	}
    
    	// Find latest possible placement of //go:build and // +build comments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/break.go

    	buf.WriteString("\\\n")
    }
    
    func (x *HardBreak) PrintText(buf *bytes.Buffer) {
    	buf.WriteString("\n")
    }
    
    type SoftBreak struct{}
    
    func (*SoftBreak) Inline() {}
    
    func (x *SoftBreak) PrintHTML(buf *bytes.Buffer) {
    	buf.WriteString("\n")
    }
    
    func (x *SoftBreak) printMarkdown(buf *bytes.Buffer) {
    	buf.WriteString("\n")
    }
    
    func (x *SoftBreak) PrintText(buf *bytes.Buffer) {
    	buf.WriteString("\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.9K bytes
    - Viewed (1)
  5. cmd/kubeadm/app/phases/upgrade/compute.go

    // kinds of upgrades can be performed
    func GetAvailableUpgrades(versionGetterImpl VersionGetter, experimentalUpgradesAllowed, rcUpgradesAllowed bool, client clientset.Interface, printer output.Printer) ([]Upgrade, error) {
    	printer.Printf("[upgrade] Fetching available versions to upgrade to\n")
    
    	// Collect the upgrades kubeadm can do in this list
    	var upgrades []Upgrade
    
    	// Get the kube-apiserver versions in the cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestOutputDescriptor.java

     *
     * @since 6.0
     */
    public interface TestOutputDescriptor extends OperationDescriptor {
    
        /**
         * Describes whether the content was printed to the standard output or the standard error.
         */
        Destination getDestination();
    
        /**
         * The text printed by the test.
         */
        String getMessage();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. src/go/doc/comment/markdown.go

    type mdPrinter struct {
    	*Printer
    	headingPrefix string
    	raw           bytes.Buffer
    }
    
    // Markdown returns a Markdown formatting of the Doc.
    // See the [Printer] documentation for ways to customize the Markdown output.
    func (p *Printer) Markdown(d *Doc) []byte {
    	mp := &mdPrinter{
    		Printer:       p,
    		headingPrefix: strings.Repeat("#", p.headingLevel()) + " ",
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  8. src/encoding/xml/marshal.go

    	return prefix
    }
    
    // deleteAttrPrefix removes an attribute name space prefix.
    func (p *printer) deleteAttrPrefix(prefix string) {
    	delete(p.attrPrefix, p.attrNS[prefix])
    	delete(p.attrNS, prefix)
    }
    
    func (p *printer) markPrefix() {
    	p.prefixes = append(p.prefixes, "")
    }
    
    func (p *printer) popPrefix() {
    	for len(p.prefixes) > 0 {
    		prefix := p.prefixes[len(p.prefixes)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/help.txt

    stderr 'Run ''go help mod'' for usage.'
    
    # Earlier versions of Go printed the same as 'go -h' here.
    # Also make sure we print the short help line.
    ! go vet -h
    stderr 'usage: go vet .*'
    stderr 'Run ''go help vet'' for details.'
    stderr 'Run ''go tool vet help'' for a full list of flags and analyzers.'
    stderr 'Run ''go tool vet -help'' for an overview.'
    
    # Earlier versions of Go printed a large document here, instead of these two
    # lines.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/plive.go

    			pos, effect := lv.valueEffects(v)
    			printed = false
    			printed = lv.printeffect(printed, "uevar", pos, effect&uevar != 0)
    			printed = lv.printeffect(printed, "varkill", pos, effect&varkill != 0)
    			if printed {
    				fmt.Printf("\n")
    			}
    
    			if pcdata.StackMapValid() {
    				fmt.Printf("\tlive=")
    				printed = false
    				if pcdata.StackMapValid() {
    					live := lv.stackMaps[pcdata]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top