Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 297 for existed (0.31 sec)

  1. src/os/exec_posix.go

    	status syscall.WaitStatus // System-dependent status info.
    	rusage *syscall.Rusage
    }
    
    // Pid returns the process id of the exited process.
    func (p *ProcessState) Pid() int {
    	return p.pid
    }
    
    func (p *ProcessState) exited() bool {
    	return p.status.Exited()
    }
    
    func (p *ProcessState) success() bool {
    	return p.status.ExitStatus() == 0
    }
    
    func (p *ProcessState) sys() any {
    	return p.status
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/sync/waitgroup_test.go

    	n := 16
    	wg1.Add(n)
    	wg2.Add(n)
    	exited := make(chan bool, n)
    	for i := 0; i != n; i++ {
    		go func() {
    			wg1.Done()
    			wg2.Wait()
    			exited <- true
    		}()
    	}
    	wg1.Wait()
    	for i := 0; i != n; i++ {
    		select {
    		case <-exited:
    			t.Fatal("WaitGroup released group too soon")
    		default:
    		}
    		wg2.Done()
    	}
    	for i := 0; i != n; i++ {
    		<-exited // Will block if barrier fails to unlock someone.
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 14 17:38:39 UTC 2021
    - 3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/classpath/BasicCallInterceptionTest.groovy

            "vararg with null item" | "Groovy callsite"         | { it.testVararg(null) }                   | false          | "testVararg(Object...)"
            "non-existent-method"   | "Groovy callsite"         | { it.nonExistent(null) }                  | false          | "nonExistent(String)-non-existent"
    
            "no argument"           | "Groovy dynamic dispatch" | { test() }                                | true           | "test()"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:44:54 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ExecResult.java

         */
        int getExitValue();
    
        /**
         * Throws an {@link org.gradle.process.internal.ExecException} if the process exited with a non-zero exit value.
         *
         * @return this
         * @throws ExecException if the process exited with a non-zero exit value
         */
        ExecResult assertNormalExitValue() throws ExecException;
    
        /**
         * Re-throws any failure executing this process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/internal/abi/rangefuncconsts.go

    // For best code generation, RF_DONE and RF_READY should be 0 and 1.
    const (
    	RF_DONE          = RF_State(iota) // body of loop has exited in a non-panic way
    	RF_READY                          // body of loop has not exited yet, is not running  -- this is not a panic index
    	RF_PANIC                          // body of loop is either currently running, or has panicked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:04:30 UTC 2024
    - 940 bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcess.java

         */
        ObjectConnection getConnection();
    
        ExecResult waitForStop();
    
        /**
         * Returns the result of the process, if it has exited.  If the process has not exited yet, returns {@link Optional#empty()}.
         */
        Optional<ExecResult> getExecResult();
    
        JvmMemoryStatus getJvmMemoryStatus();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. docs/pt/docs/deployment/index.md

    # Implantação
    
    A implantação de uma aplicação **FastAPI** é relativamente simples.
    
    Existem várias maneiras para fazer isso, dependendo do seu caso específico e das ferramentas que você utiliza.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 322 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cover_build_simple.txt

    # First execute without GOCOVERDIR set...
    env GOCOVERDIR=
    exec ./example.exe normal
    stderr '^warning: GOCOVERDIR not set, no coverage data emitted'
    
    # ... then with GOCOVERDIR set.
    env GOCOVERDIR=data/normal
    exec ./example.exe normal
    ! stderr '^warning: GOCOVERDIR not set, no coverage data emitted'
    go tool covdata percent -i=data/normal
    stdout  'coverage:.*[1-9][0-9.]+%'
    
    # Program makes a direct call to os.Exit(0).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. pkg/probe/exec/exec_test.go

    	return nil, nil
    }
    
    type fakeExitError struct {
    	exited     bool
    	statusCode int
    }
    
    func (f *fakeExitError) String() string {
    	return f.Error()
    }
    
    func (f *fakeExitError) Error() string {
    	return "fake exit"
    }
    
    func (f *fakeExitError) Exited() bool {
    	return f.exited
    }
    
    func (f *fakeExitError) ExitStatus() int {
    	return f.statusCode
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered_test.go

    	}()
    
    	// Wait for some time and then check whether Shutdown has exited. Can give false positive,
    	// but never false negative.
    	time.Sleep(100 * time.Millisecond)
    	select {
    	case <-shutdownEndCh:
    		t.Fatalf("Shutdown exited before delegated call ended")
    	default:
    	}
    
    	// Wait for Shutdown to exit after delegated call has exited.
    	close(delegatedCallEndCh)
    	<-shutdownEndCh
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 14 17:20:35 UTC 2018
    - 5.9K bytes
    - Viewed (0)
Back to top