Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,318 for wereld (0.26 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    ----
    package authoring.tutorial;
    
    public class App {
        public String getGreeting() {
            return "Hello World!";
        }
    
        public static void main(String[] args) {
            System.out.println(new App().getGreeting());
        }
    }
    ----
    
    The code prints out a simple "Hello World" greeting to the screen.
    
    A test class is available at `app/src/test/java/authoring/tutorial/AppTest.java`:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_run_pkg_version.txt

    	it to be interpreted differently than if it were the main module.
    -- exclude-err --
    go: example.com/cmd/a@v1.0.0-exclude (in example.com/cmd@v1.0.0-exclude):
    	The go.mod file for the module providing named packages contains one or
    	more exclude directives. It must not contain directives that would cause
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingException.java

         * {@code <groupId>:<artifactId>:<version>} but some of these coordinates may still be unknown at the point the
         * exception is thrown so this information is merely meant to assist the user.
         *
         * @return The identifier of the POM or an empty string if not known, never {@code null}.
         */
        public String getModelId() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/io/pipe_test.go

    func TestPipe1(t *testing.T) {
    	c := make(chan int)
    	r, w := Pipe()
    	var buf = make([]byte, 64)
    	go checkWrite(t, w, []byte("hello, world"), c)
    	n, err := r.Read(buf)
    	if err != nil {
    		t.Errorf("read: %v", err)
    	} else if n != 12 || string(buf[0:12]) != "hello, world" {
    		t.Errorf("bad read: got %q", buf[0:n])
    	}
    	<-c
    	r.Close()
    	w.Close()
    }
    
    func reader(t *testing.T, r Reader, c chan int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. doc/go_mem.html

    </p>
    
    <p>
    For example, in this program:
    </p>
    
    <pre>
    var a string
    
    func f() {
    	print(a)
    }
    
    func hello() {
    	a = "hello, world"
    	go f()
    }
    </pre>
    
    <p>
    calling <code>hello</code> will print <code>"hello, world"</code>
    at some point in the future (perhaps after <code>hello</code> has returned).
    </p>
    
    <h3 id="goexit">Goroutine destruction</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprog/lockosthread.go

    	runtime.UnlockOSThread()
    	println("OK")
    }
    
    func LockOSThreadTemplateThreadRace() {
    	// This test attempts to reproduce the race described in
    	// golang.org/issue/38931. To do so, we must have a stop-the-world
    	// (achieved via ReadMemStats) racing with two LockOSThread calls.
    	//
    	// While this test attempts to line up the timing, it is only expected
    	// to fail (and thus hang) around 2% of the time if the race is
    	// present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            when:
            succeeds('installDist')
    
            then:
            file('build/install/sample').exists()
    
            when:
            runViaStartScript()
    
            then:
            outputContains('Hello World!')
        }
    
        @Requires(UnitTestPreconditions.UnixDerivative)
        def "can execute generated Unix start script using JAVA_HOME with spaces"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiStreamingBuildActionIntegrationTest.groovy

            model.value == 42
    
            and:
            def streamedModels = listener1.models
            streamedModels.size() == 2
            (streamedModels[0] as GradleProject).name == "hello-world"
            (streamedModels[1] as EclipseProject).gradleProject.name == "hello-world"
    
            when:
            withIsolatedProjects()
            def model2 = runBuildAction(new ModelStreamingBuildAction()) {
                setStreamedValueListener(listener2)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    		t.Fatalf("Test_Run_Positive_DoNothing: actual state of world should be empty but it's not")
    	}
    	if len(dsw.GetPluginsToRegister()) != 0 {
    		t.Fatalf("Test_Run_Positive_DoNothing: desired state of world should be empty but it's not")
    	}
    }
    
    // Populates desiredStateOfWorld cache with one plugin.
    // Calls Run()
    // Verifies the actual state of world contains that plugin
    func Test_Run_Positive_Register(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/runtime/lockrank_on.go

    	stopped := worldIsStopped.Load()
    	if stopped > 1 {
    		systemstack(func() {
    			print("inconsistent world stop count=", stopped, "\n")
    			throw("inconsistent world stop count")
    		})
    	}
    
    	return stopped == 1
    }
    
    // assertWorldStopped throws if the world is not stopped. It does not check
    // which M stopped the world.
    //
    // nosplit to ensure it can be called in as many contexts as possible.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top