Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,795 for Printer (1.96 sec)

  1. src/go/doc/comment/print.go

    package comment
    
    import (
    	"bytes"
    	"fmt"
    	"strings"
    )
    
    // A Printer is a doc comment printer.
    // The fields in the struct can be filled in before calling
    // any of the printing methods
    // in order to customize the details of the printing process.
    type Printer struct {
    	// HeadingLevel is the nesting level used for
    	// HTML and Markdown headings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/contextReceivers/KtContextReceiversRenderer.kt

            analysisSession: KaSession,
            owner: KaContextReceiversOwner,
            typeRenderer: KaTypeRenderer,
            printer: PrettyPrinter,
        ) {
            contextReceiverListRenderer.renderContextReceivers(analysisSession, owner, this, typeRenderer, printer)
        }
    
        public inline fun with(action: Builder.() -> Unit): KaContextReceiversRenderer {
            val renderer = this
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtDynamicTypeRenderer.kt

    import org.jetbrains.kotlin.analysis.api.types.KaDynamicType
    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    import org.jetbrains.kotlin.lexer.KtTokens
    
    
    public interface KaDynamicTypeRenderer {
        public fun renderType(
            analysisSession: KaSession,
            type: KaDynamicType,
            typeRenderer: KaTypeRenderer,
            printer: PrettyPrinter,
        )
    
        public object AS_DYNAMIC_WORD : KaDynamicTypeRenderer {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/superTypes/KtSuperTypeRenderer.kt

    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    import org.jetbrains.kotlin.types.Variance
    
    public interface KaSuperTypeRenderer {
        public fun renderSuperType(
            analysisSession: KaSession,
            type: KaType,
            symbol: KaClassOrObjectSymbol,
            declarationRenderer: KaDeclarationRenderer,
            printer: PrettyPrinter,
        )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. 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)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtCallableReturnTypeRenderer.kt

    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    import org.jetbrains.kotlin.types.Variance
    
    public interface KaCallableReturnTypeRenderer {
        public fun renderReturnType(
            analysisSession: KaSession,
            symbol: KaCallableSymbol,
            declarationRenderer: KaDeclarationRenderer,
            printer: PrettyPrinter,
        )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/modifiers/renderers/KtModifierListRenderer.kt

    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    import org.jetbrains.kotlin.lexer.KtModifierKeywordToken
    
    public interface KaModifierListRenderer {
        public fun renderModifiers(
            analysisSession: KaSession,
            symbol: KaDeclarationSymbol,
            declarationModifiersRenderer: KaDeclarationModifiersRenderer,
            printer: PrettyPrinter,
        )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/go/ast/print.go

    // struct fields for which f(fieldname, fieldvalue) is true are
    // printed; all others are filtered from the output. Unexported
    // struct fields are never printed.
    func Fprint(w io.Writer, fset *token.FileSet, x any, f FieldFilter) error {
    	return fprint(w, fset, x, f)
    }
    
    func fprint(w io.Writer, fset *token.FileSet, x any, f FieldFilter) (err error) {
    	// setup printer
    	p := printer{
    		output: w,
    		fset:   fset,
    		filter: f,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. 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)
  10. src/go/printer/nodes.go

    // the current line. ws is printed before the first line break. If newSection
    // is set, the first line break is printed as formfeed. Returns 0 if no line
    // breaks were printed, returns 1 if there was exactly one newline printed,
    // and returns a value > 1 if there was a formfeed or more than one newline
    // printed.
    //
    // TODO(gri): linebreak may add too many lines if the next statement at "line"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
Back to top