Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 785 for printhex (0.2 sec)

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

    	}{
    		{
    			name:           "json output format matches a json printer",
    			outputFormat:   "json",
    			expectedOutput: "\"name\": \"foo\"",
    		},
    		{
    			name:           "yaml output format matches a yaml printer",
    			outputFormat:   "yaml",
    			expectedOutput: "name: foo",
    		},
    		{
    			name:          "output format for another printer does not match a json/yaml printer",
    			outputFormat:  "jsonpath",
    			expectNoMatch: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 21 15:08:30 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/FailurePrinterListener.java

        /**
         * Invoked after a failure header has been printed, and before any stack frames have been printed.
         */
        void beforeFrames();
    
        /**
         * Invoked before a given stack frame is printed.
         */
        void beforeFrame(StackTraceElement element, StackTraceRelevance relevance);
    
        /**
         * Invoked after all stack frames of a failure have been printed.
         */
        void afterFrames();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:45:41 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/go/doc/comment.go

    //
    //	w.Write(p.Printer().HTML(p.Parser().Parse(text)))
    //
    // If words may be non-nil, the longer replacement is:
    //
    //	parser := p.Parser()
    //	parser.Words = words
    //	w.Write(p.Printer().HTML(parser.Parse(d)))
    func ToHTML(w io.Writer, text string, words map[string]string) {
    	p := new(Package).Parser()
    	p.Words = words
    	d := p.Parse(text)
    	pr := new(comment.Printer)
    	w.Write(pr.HTML(d))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/asm/internal/asm/endtoend_test.go

    		if strings.HasPrefix(line, "GLOBL ") {
    			continue
    		}
    
    		// The general form of a test input line is:
    		//	// comment
    		//	INST args [// printed form] [// hex encoding]
    		parts := strings.Split(line, "//")
    		printed := strings.TrimSpace(parts[0])
    		if printed == "" || strings.HasSuffix(printed, ":") { // empty or label
    			continue
    		}
    		seq++
    
    		var hexes string
    		switch len(parts) {
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/print.go

    					if w != nil && w.Block == b && !printed[w.ID] {
    						continue outer
    					}
    				}
    				p.value(v, live[v.ID])
    				printed[v.ID] = true
    				n++
    			}
    			if m == n {
    				p.startDepCycle()
    				for _, v := range b.Values {
    					if printed[v.ID] {
    						continue
    					}
    					p.value(v, live[v.ID])
    					printed[v.ID] = true
    					n++
    				}
    				p.endDepCycle()
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top