Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 427 for wereld (0.13 sec)

  1. src/runtime/metrics/doc.go

    		latencies. This is the time from deciding to stop the world
    		until the world is started again. Some of this time is spent
    		getting all threads to stop (this is measured directly in
    		/sched/pauses/stopping/gc:seconds), during which some threads
    		may still be running. Bucket counts increase monotonically.
    
    	/sched/pauses/total/other:seconds
    		Distribution of individual non-GC-related stop-the-world
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            // Unnecessary cast will trigger a warning
            String s = (String)"Hello World";
        }
    """
            }
    
            void addError() {
                errorIndex += 1
                sourceFile << """\
    public void error${errorIndex}() {
        // Missing semicolon will trigger an error
        String s = "Hello, World!"
    }
    """
            }
    
            TestFile save() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pilot/cmd/pilot-agent/status/server_test.go

    		},
    		// invalid probe type
    		{
    			probe: `{"/app-health/hello-world/readyz": {"exec": {"command": [ "true" ]}}}`,
    			err:   "invalid prober type",
    		},
    		// tcp probes are valid as well
    		{
    			probe: `{"/app-health/hello-world/readyz": {"tcpSocket": {"port": 8888}}}`,
    		},
    		// probes must be one of tcp, http or gRPC
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/settings.md

    ```Python hl_lines="3"
    import os
    
    name = os.getenv("MY_NAME", "World")
    print(f"Hello {name} from Python")
    ```
    
    !!! tip
        The second argument to <a href="https://docs.python.org/3.8/library/os.html#os.getenv" class="external-link" target="_blank">`os.getenv()`</a> is the default value to return.
    
        If not provided, it's `None` by default, here we provide `"World"` as the default value to use.
    
    Then you could call that Python program:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/volume_manager.go

    	// state of the world caches. A volume is considered "in use" as soon as it
    	// is added to the desired state of world, indicating it *should* be
    	// attached to this node and remains "in use" until it is removed from both
    	// the desired state of the world and the actual state of the world, or it
    	// has been unmounted (as indicated in actual state of world).
    	GetVolumesInUse() []v1.UniqueVolumeName
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_executor.go

    	// It then updates the actual state of the world to reflect that.
    	AttachVolume(logger klog.Logger, volumeToAttach VolumeToAttach, actualStateOfWorld ActualStateOfWorldAttacherUpdater) error
    
    	// VerifyVolumesAreAttachedPerNode verifies the given list of volumes to see whether they are still attached to the node.
    	// If any volume is not attached right now, it will update the actual state of the world to reflect that.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. src/runtime/trace.go

    	// hits a traceAcquire, it sees that the trace is enabled.
    	//
    	// Note also that stopping the world is necessary to make sure sweep-related events are
    	// coherent. Since the world is stopped and sweeps are non-preemptible, we can never start
    	// the world and see an unpaired sweep 'end' event. Other parts of the tracer rely on this.
    	stw := stopTheWorld(stwStartTrace)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. internal/grid/grid_test.go

    	remoteConn := local.Connection(remoteHost)
    	remoteConn.WaitForConnect(context.Background())
    	defer testlogger.T.SetErrorTB(t)()
    
    	t.Run("localToRemote", func(t *testing.T) {
    		const testPayload = "Hello Grid World!"
    
    		start := time.Now()
    		resp, err := remoteConn.Request(context.Background(), handlerTest, []byte(testPayload))
    		errFatal(err)
    		if string(resp) != testPayload {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top