Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 267 for printsp (0.2 sec)

  1. src/cmd/gofmt/gofmt.go

    )
    
    // Keep these in sync with go/format/format.go.
    const (
    	tabWidth    = 8
    	printerMode = printer.UseSpaces | printer.TabIndent | printerNormalizeNumbers
    
    	// printerNormalizeNumbers means to canonicalize number literal prefixes
    	// and exponents while printing. See https://golang.org/doc/go1.13#gofmt.
    	//
    	// This value is defined in go/printer specifically for go/format and cmd/gofmt.
    	printerNormalizeNumbers = 1 << 30
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/internal/precompiled/GeneratePluginAdaptersTask.java

                writer.println("    @Override");
                writer.println("    public void apply(" + targetClass + " target) {");
                writer.println("        assertSupportedByCurrentGradleVersion();");
                writer.println("        try {");
                writer.println(firstPassCode);
                writer.println();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 22:50:50 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/flag/flag.go

    // for how to write your own usage function.
    
    // Usage prints a usage message documenting all defined command-line flags
    // to [CommandLine]'s output, which by default is [os.Stderr].
    // It is called when an error occurs while parsing flags.
    // The function is a variable that may be changed to point to a custom function.
    // By default it prints a simple header and calls [PrintDefaults]; for details about the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/token_test.go

    			printer, err := outputFlags.ToPrinter()
    			if err != nil {
    				t.Errorf("can't create printer for output format %s: %+v", tc.outputFormat, err)
    			}
    
    			if err := printer.PrintObj(&token, &buf); err != nil {
    				t.Errorf("unable to print token %s: %+v", token.Token, err)
    			}
    
    			actual := buf.String()
    			if actual != tc.expected {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    }
    
    class MyTypeImpl(override val name: String) : MyType {
        // Implement other properties and methods...
    }
    
    // Usage
    val instance = MyTypeImpl("myName")
    println(instance.name) // Prints: myName
    ----
    
    [[managed_types]]
    == Using Gradle Managed Types
    
    A managed type as an abstract class or interface with no fields and whose properties are all managed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/BaseBuildScanPluginCheckInFixture.groovy

                            println "${propertyPrefix}.serviceFactoryCreate.config.buildScanRequest = \$config.buildScanRequest"
                            println "${propertyPrefix}.serviceFactoryCreate.config.autoApplied = \$config.autoApplied"
                            println "${propertyPrefix}.serviceFactoryCreate.config.taskExecutingBuild = \$config.taskExecutingBuild"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

                        println "gradle.projectsLoaded(Action) from $source"
                    } as Action)
                    gradle.projectsLoaded {
                        println "gradle.projectsLoaded(Closure) from $source"
                    }
                    gradle.addListener(new BuildAdapter() {
                        void projectsLoaded(Gradle ignored) {
                            println "gradle.addListener(BuildListener) from $source"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

                System.out.println();
                System.out.println("Kotlin:       " + KotlinDslVersion.current().getKotlinVersion());
                System.out.println("Groovy:       " + ReleaseInfo.getVersion());
                System.out.println("Ant:          " + Main.getAntVersion());
                System.out.println("JVM:          " + Jvm.current());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

                    @TaskAction
                    void run() {
                        println "value = " + value
                        println "value.child = " + value.dir("child")
                        println "propValue = " + propValue.get()
                        println "propValue.child = " + propValue.get().dir("child")
                        println "propValue.child.mapped = " + propValue.dir("child").get()
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/plive.go

    			pcdata := lv.livenessMap.Get(v)
    
    			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
    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