Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 395 for printssa (0.28 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

                    description = "Prints the message 'do something'"
                    doLast {
                        println 'do something'
                    }
                }
            """
    
            when:
            executeTaskViaTAPI(":other-build:tasks", "--all")
    
            then:
            assertHasBuildSuccessfulLogging()
            outputContains("doSomething - Prints the message 'do something'")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/antMigration/fileDeps/groovy/src/main/java/org/example/app/HelloApp.java

    package org.example.app;
    
    /**
     * A simple Java application that prints "Hello, world!" to stdout.
     */
    public class HelloApp {
        /**
         * Application entry point.
         */
        public static void main(String[] args) {
            System.out.println("Hello, world!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 272 bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/showjoincommand.go

    	}
    }
    
    // showJoinCommand prints the join command after all the phases in init have finished
    func showJoinCommand(c workflow.RunData) error {
    	data, ok := c.(InitData)
    	if !ok {
    		return errors.New("show-join-command phase invoked with an invalid data struct")
    	}
    
    	adminKubeConfigPath := data.KubeConfigPath()
    
    	// Prints the join command, multiple times in case the user has multiple tokens
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_benchmark_labels.txt

    # Tests that go test -bench prints out goos, goarch, and pkg.
    
    # Check for goos, goarch, and pkg.
    go test -run ^$ -bench . bench
    stdout '^goos: '$GOOS
    stdout '^goarch: '$GOARCH
    stdout '^pkg: bench'
    
    # Check go test does not print pkg multiple times
    ! stdout 'pkg:.*pkg: '
    ! stderr 'pkg:.*pkg:'
    
    -- go.mod --
    module bench
    
    go 1.16
    -- x_test.go --
    package bench
    
    import "testing"
    
    func Benchmark(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 412 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_stack_v1.0.0.txt

    Module with a function that prints file name for the top stack frame.
    Different versions of this module are identical, but they should return
    different file names with -trimpath.
    -- .mod --
    module example.com/stack
    
    go 1.14
    -- .info --
    {"Version":"v1.0.0"}
    -- stack.go --
    package stack
    
    import "runtime"
    
    func TopFile() string {
    	_, file, _, _ := runtime.Caller(0)
    	return file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 14 22:55:12 UTC 2019
    - 380 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_stack_v1.0.1.txt

    Module with a function that prints file name for the top stack frame.
    Different versions of this module are identical, but they should return
    different file names with -trimpath.
    -- .mod --
    module example.com/stack
    
    go 1.14
    -- .info --
    {"Version":"v1.0.1"}
    -- stack.go --
    package stack
    
    import "runtime"
    
    func TopFile() string {
    	_, file, _, _ := runtime.Caller(0)
    	return file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 14 22:55:12 UTC 2019
    - 380 bytes
    - Viewed (0)
  7. src/cmd/objdump/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Objdump disassembles executable files.
    //
    // Usage:
    //
    //	go tool objdump [-s symregexp] binary
    //
    // Objdump prints a disassembly of all text symbols (code) in the binary.
    // If the -s option is present, objdump only disassembles
    // symbols with names matching the regular expression.
    //
    // Alternate usage:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. test/fixedbugs/issue11362.go

    // errorcheck
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 11362: prints empty canonical import path
    
    package main
    
    import _ "unicode//utf8" // GC_ERROR "non-canonical import path .unicode//utf8. \(should be .unicode/utf8.\)"
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 12 02:16:50 UTC 2021
    - 368 bytes
    - Viewed (0)
  9. src/cmd/go/internal/toolchain/switch.go

    //
    // If Switch decides not to switch toolchains, it prints the errors using base.Error and returns.
    //
    // If Switch decides to switch toolchains but cannot identify a toolchain to use.
    // it prints the errors along with one more about not being able to find the toolchain
    // and returns.
    //
    // Otherwise, Switch prints an informational message giving a reason for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. src/fmt/example_test.go

    	// 21 bytes written.
    }
    
    // Print, Println, and Printf lay out their arguments differently. In this example
    // we can compare their behaviors. Println always adds blanks between the items it
    // prints, while Print adds blanks only between non-string arguments and Printf
    // does exactly what it is told.
    // Sprint, Sprintln, Sprintf, Fprint, Fprintln, and Fprintf behave the same as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
Back to top