Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,237 for startingAt (0.25 sec)

  1. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserInputReader.java

     */
    @ServiceScope(Scope.Global.class)
    public interface UserInputReader {
        /**
         * Called when the current process starts receiving user input from the client.
         */
        void startInput();
    
        void putInput(UserInput input);
    
        /**
         * Returns a {@link TextResponse} containing text supplied by the user, or {@link #END_OF_INPUT} if interrupted.
         */
        UserInput readInput();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/runtime/runtime_unix_test.go

    package runtime_test
    
    import (
    	"runtime"
    	"sync"
    	"sync/atomic"
    	"syscall"
    	"testing"
    )
    
    func TestGoroutineProfile(t *testing.T) {
    	// GoroutineProfile used to use the wrong starting sp for
    	// goroutines coming out of system calls, causing possible
    	// crashes.
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(100))
    
    	var stop uint32
    	defer atomic.StoreUint32(&stop, 1) // in case of panic
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/custom-logger-init.gradle

        }
    
        public void afterExecute(Task task, TaskState state) {
            logger.info("LOGGER: executed task $task.path")
        }
    
        public void beforeActions(Task task) {
            logger.info("LOGGER: task $task.path starting work")
        }
    
        public void afterActions(Task task) {
            logger.info("LOGGER: task $task.path completed work")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/internal/syscall/windows/symlink_windows.go

    import "syscall"
    
    const (
    	ERROR_INVALID_PARAMETER syscall.Errno = 87
    
    	FILE_SUPPORTS_OBJECT_IDS      = 0x00010000
    	FILE_SUPPORTS_OPEN_BY_FILE_ID = 0x01000000
    
    	// symlink support for CreateSymbolicLink() starting with Windows 10 (1703, v10.0.14972)
    	SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE = 0x2
    
    	// FileInformationClass values
    	FileBasicInfo                  = 0    // FILE_BASIC_INFO
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 19:06:55 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/testprog/many-start-stop.go

    // Copyright 2023 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.
    
    // Tests simply starting and stopping tracing multiple times.
    //
    // This is useful for finding bugs in trace state reset.
    
    //go:build ignore
    
    package main
    
    import (
    	"bytes"
    	"log"
    	"os"
    	"runtime"
    	"runtime/trace"
    )
    
    func main() {
    	// Trace a few times.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 786 bytes
    - Viewed (0)
  6. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandleState.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.process.internal;
    
    public enum ExecHandleState {
        INIT(false),
        STARTING(false),
        STARTED(false),
        ABORTED(true),
        FAILED(true),
        DETACHED(true),
        SUCCEEDED(true);
    
        private final boolean terminal;
    
        ExecHandleState(boolean terminal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1007 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/SimpleAction.java

    import org.gradle.tooling.BuildController;
    
    public class SimpleAction implements BuildAction<String> {
        @Override
        public String execute(BuildController controller) {
            System.out.println("starting action");
            return "Action result";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 960 bytes
    - Viewed (0)
  8. src/runtime/os_linux_s390x.go

    	// Check if the present z-system has the hardware capability to carryout
    	// floating point operations. Check if hwcap reflects CPU capability for the
    	// necessary floating point hardware (HasVX) availability.
    	// Starting with Go1.19, z13 is the minimum machine level for running Go on LoZ
    	if cpu.HWCap&_HWCAP_VX == 0 {
    		print("runtime: This CPU has no floating point hardware, so this program cannot be run. \n")
    		exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 17:36:28 UTC 2023
    - 825 bytes
    - Viewed (0)
  9. src/sort/sort_impl_go121.go

    // Copyright 2023 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.
    
    //go:build go1.21
    
    // Starting with Go 1.21, we can leverage the new generic functions from the
    // slices package to implement some `sort` functions faster. However, until
    // the bootstrap compiler uses Go 1.21 or later, we keep a fallback version
    // in sort_impl_120.go that retains the old implementation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 13:00:18 UTC 2023
    - 876 bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonHealthLoggingIntegrationTest.groovy

        def "health information is present in build log"() {
            when:
            def result = succeeds("help", "--info")
    
            then:
            result.output ==~ /(?s).*Starting build in new daemon \[memory: [0-9].*/
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1018 bytes
    - Viewed (0)
Back to top