Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 961 for printsp (0.2 sec)

  1. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    					}
    				}
    				handled, obj, err := opts.Getter.HandleGetAction(getAction)
    
    				if opts.PrintGETAndLIST {
    					// Print the marshalled object format with one tab indentation
    					objBytes, err := opts.MarshalFunc(obj, action.GetResource().GroupVersion())
    					if err == nil {
    						fmt.Println("[dryrun] Returning faked GET response:")
    						PrintBytesWithLinePrefix(opts.Writer, objBytes, "\t")
    					}
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

                    @InputArtifact
                    abstract Provider<FileSystemLocation> getInputArtifact()
    
                    @Override
                    void transform(TransformOutputs outputs) {
                        println "Transforming printed to System.out"
                        outputs.file(inputArtifact)
                    }
                }
            """
            file('src/main/java/artifact/transform/sample/App.java') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

            execHandle.start()
            def result = execHandle.waitForFinish()
    
            then:
            result.exitValue != 0
            execHandle.state == ExecHandleState.ABORTED
        }
    
        static class Prints implements Callable, Serializable {
    
            String message
    
            Object call() {
                return message
            }
        }
    
        private DefaultExecHandleBuilder handle() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  4. src/go/printer/testdata/comments.input

    }
    
    
    func _() {
    // this comment should be properly indented
    }
    
    
    func _(x int) int {
    	if x < 0 {  // the tab printed before this comment's // must not affect the remaining lines
    		return -x  // this statement should be properly indented
    	}
    	if x < 0 {  /* the tab printed before this comment's /* must not affect the remaining lines */
    		return -x  // this statement should be properly indented
    	}
    	return x
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  5. src/cmd/internal/objfile/disasm.go

    	}
    
    	return cf.Lines[line-1], nil
    }
    
    // Print prints a disassembly of the file to w.
    // If filter is non-nil, the disassembly only includes functions with names matching filter.
    // If printCode is true, the disassembly includs corresponding source lines.
    // The disassembly only includes functions that overlap the range [start, end).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top