Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 265 for PrintFer (0.12 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/name_flags_test.go

    			name:           "operation and empty output still matches name printer",
    			expectedOutput: "pod/foo patched",
    			operation:      "patched",
    		},
    		{
    			name:          "no printer is matched on an invalid outputFormat",
    			outputFormat:  "invalid",
    			expectNoMatch: true,
    		},
    		{
    			name:          "printer should not match on any other format supported by another printer",
    			outputFormat:  "go-template",
    			expectNoMatch: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 21 15:08:30 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtIntersectionTypeRenderer.kt

                type: KaIntersectionType,
                typeRenderer: KaTypeRenderer,
                printer: PrettyPrinter,
            ) {
                printer {
                    printCollection(type.conjuncts, separator = " & ") {
                        typeRenderer.renderType(analysisSession, it, printer)
                    }
                }
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/superTypes/KtSuperTypesCallArgumentsRenderer.kt

    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    
    public interface KaSuperTypesCallArgumentsRenderer {
        public fun renderSuperTypeArguments(
            analysisSession: KaSession,
            type: KaType,
            symbol: KaClassOrObjectSymbol,
            declarationRenderer: KaDeclarationRenderer,
            printer: PrettyPrinter,
        )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtPropertyAccessorsRenderer.kt

    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    import org.jetbrains.kotlin.utils.addToStdlib.firstIsInstanceOrNull
    
    public interface KaPropertyAccessorsRenderer {
        public fun renderAccessors(
            analysisSession: KaSession,
            symbol: KaPropertySymbol,
            declarationRenderer: KaDeclarationRenderer,
            printer: PrettyPrinter,
        )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10DebugTypeRenderer.kt

                is DefinitelyNotNullType -> renderDefinitelyNotNullType(unwrappedType, printer)
                is ErrorType -> renderErrorType(printer)
                is CapturedType -> renderCapturedType(unwrappedType, printer)
                is NewCapturedType -> renderCapturedType(unwrappedType, printer)
                is AbbreviatedType -> renderType(unwrappedType.abbreviation, printer)
                is SimpleType -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtTypeErrorTypeRenderer.kt

                analysisSession: KaSession,
                type: KaErrorType,
                typeRenderer: KaTypeRenderer,
                printer: PrettyPrinter,
            ) {
                type.presentableText?.let {
                    printer.append(it)
                    return
                }
                printer.append("ERROR")
            }
        }
    
        public object AS_ERROR_WORD : KaErrorTypeRenderer {
            override fun renderType(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtDestructuringDeclarationRenderer.kt

                declarationRenderer: KaDeclarationRenderer,
                printer: PrettyPrinter,
            ) {
                printer {
                    declarationRenderer.codeStyle.getSeparatorBetweenAnnotationAndOwner(analysisSession, symbol).separated(
                        { declarationRenderer.annotationRenderer.renderAnnotations(analysisSession, symbol, printer) },
                        {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/go/format/format.go

    // check to be inherently fragile.
    package format
    
    import (
    	"bytes"
    	"fmt"
    	"go/ast"
    	"go/parser"
    	"go/printer"
    	"go/token"
    	"io"
    )
    
    // Keep these in sync with cmd/gofmt/gofmt.go.
    const (
    	tabWidth    = 8
    	printerMode = printer.UseSpaces | printer.TabIndent | printerNormalizeNumbers
    
    	// printerNormalizeNumbers means to canonicalize number literal prefixes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/output/output.go

    type ResourcePrinterWrapper struct {
    	Printer printers.ResourcePrinter
    }
    
    // NewResourcePrinterWrapper creates new ResourcePrinter object
    func NewResourcePrinterWrapper(resourcePrinter printers.ResourcePrinter, err error) (Printer, error) {
    	if err != nil {
    		return nil, err
    	}
    	return &ResourcePrinterWrapper{Printer: resourcePrinter}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 08:22:45 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/annotations/renderers/KtAnnotationArgumentsRenderer.kt

    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    import org.jetbrains.kotlin.renderer.render
    
    public interface KaAnnotationArgumentsRenderer {
        public fun renderAnnotationArguments(
            analysisSession: KaSession,
            annotation: KaAnnotation,
            owner: KaAnnotated,
            annotationRenderer: KaAnnotationRenderer,
            printer: PrettyPrinter,
        )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top