Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,489 for printsp (0.27 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/types.go

    // license that can be found in the LICENSE file.
    
    package printf
    
    import (
    	"fmt"
    	"go/ast"
    	"go/types"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/internal/aliases"
    	"golang.org/x/tools/internal/typeparams"
    )
    
    var errorType = types.Universe.Lookup("error").Type().Underlying().(*types.Interface)
    
    // matchArgType reports an error if printf verb t is not appropriate for
    // operand arg.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. src/testing/testing.go

    	} else {
    		if c.chatty != nil {
    			if c.bench {
    				// Benchmarks don't print === CONT, so we should skip the test
    				// printer and just print straight to stdout.
    				fmt.Print(c.decorate(s, depth+1))
    			} else {
    				c.chatty.Printf(c.name, "%s", c.decorate(s, depth+1))
    			}
    
    			return
    		}
    		c.output = append(c.output, c.decorate(s, depth+1)...)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //		symbols, methods, and fields.
    //
    // # Print Go environment information
    //
    // Usage:
    //
    //	go env [-json] [-changed] [-u] [-w] [var ...]
    //
    // Env prints Go environment information.
    //
    // By default env prints information as a shell script
    // (on Windows, a batch file). If one or more variable
    // names is given as arguments, env prints the value of
    // each named variable on its own line.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

        @TaskAction
        void printVersion() {
            println("Version: ${getVersion().get()}")
        }
    }
    ----
    =====
    ====
    
    This task does one simple thing: it prints out the version of the project to the command line.
    
    The class extends `DefaultTask` and it has one `@Input`, which is of type `Property<String>`.
    It has one method that is annotated with `@TaskAction`, which prints out the version.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  5. releasenotes/notes/istioctl-pc-routes-print-path-separated-prefix.yaml

    Jacek Ewertowski <******@****.***> 1701261434 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 174 bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                is KaAnnotation -> renderAnnotationApplication(value, printer)
                is KaAnnotationList -> renderAnnotationsList(value, printer)
                is KtModule -> renderKtModule(value, printer)
                // Other custom values
                is Name -> printer.append(value.asString())
                is FqName -> printer.append(value.asString())
                is ClassId -> printer.append(value.asString())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10DebugTypeRenderer.kt

            renderType(type.original, printer)
            printer.append(" & Any")
        }
    
        private fun renderErrorType(printer: PrettyPrinter) {
            printer.append(ERROR_TYPE_TEXT)
        }
    
        private fun Fe10AnalysisContext.renderCapturedType(type: CapturedType, printer: PrettyPrinter) {
            with(printer) {
                append("CapturedType(")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/toolingApi/idea/groovy/src/main/java/org/gradle/sample/Main.java

                System.out.println("***");
                System.out.println("Project details: ");
                System.out.println(project);
    
                System.out.println("***");
                System.out.println("Project modules: ");
                for(IdeaModule module: project.getModules()) {
                    System.out.println("  " + module);
                    System.out.println("  module details:");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/ArgumentsConverterGenerator.kt

                println("return when (argument) {")
                withIndent {
                    println("null -> null")
                    for (type in convertersMap.keys) {
                        println("is ${type.typeWithStars} -> $CONVERT_ARGUMENT(argument, firSymbolBuilder)")
                    }
                    println("else -> argument")
                }
                println("}")
            }
            println("}")
            println()
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. src/strings/example_test.go

    	fmt.Println(strings.Compare("a", "b"))
    	fmt.Println(strings.Compare("a", "a"))
    	fmt.Println(strings.Compare("b", "a"))
    	// Output:
    	// -1
    	// 0
    	// 1
    }
    
    func ExampleContains() {
    	fmt.Println(strings.Contains("seafood", "foo"))
    	fmt.Println(strings.Contains("seafood", "bar"))
    	fmt.Println(strings.Contains("seafood", ""))
    	fmt.Println(strings.Contains("", ""))
    	// Output:
    	// true
    	// false
    	// true
    	// true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:05:38 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top