Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,039 for deliver (0.29 sec)

  1. src/runtime/testdata/testprog/segv.go

    func Segv() {
    	c := make(chan bool)
    	go func() {
    		close(c)
    		for i := 0; ; i++ {
    			Sum += i
    		}
    	}()
    
    	<-c
    
    	syscall.Kill(syscall.Getpid(), syscall.SIGSEGV)
    
    	// Wait for the OS to deliver the signal.
    	select {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 05 15:24:08 UTC 2023
    - 479 bytes
    - Viewed (0)
  2. src/runtime/testdata/testprog/segv_linux.go

    	go func() {
    		close(c)
    		for i := 0; ; i++ {
    			// Sum defined in segv.go.
    			Sum += i
    		}
    	}()
    
    	<-c
    
    	syscall.Tgkill(syscall.Getpid(), syscall.Gettid(), syscall.SIGSEGV)
    
    	// Wait for the OS to deliver the signal.
    	select {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 05 15:24:08 UTC 2023
    - 517 bytes
    - Viewed (0)
  3. src/runtime/testdata/testprogcgo/segv.go

    }
    
    func SegvInCgo() {
    	c := make(chan bool)
    	go func() {
    		close(c)
    		for {
    			C.nop()
    		}
    	}()
    
    	<-c
    
    	syscall.Kill(syscall.Getpid(), syscall.SIGSEGV)
    
    	// Wait for the OS to deliver the signal.
    	C.pause()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 05 15:24:08 UTC 2023
    - 525 bytes
    - Viewed (0)
  4. src/runtime/testdata/testprogcgo/segv_linux.go

    	c := make(chan bool)
    	go func() {
    		close(c)
    		for {
    			C.nop()
    		}
    	}()
    
    	<-c
    
    	syscall.Tgkill(syscall.Getpid(), syscall.Gettid(), syscall.SIGSEGV)
    
    	// Wait for the OS to deliver the signal.
    	C.pause()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 05 15:24:08 UTC 2023
    - 546 bytes
    - Viewed (0)
  5. README.md

    * Developer Friendly
    
    ## Getting Started
    
    * GORM Guides [https://gorm.io](https://gorm.io)
    * Gen Guides [https://gorm.io/gen/index.html](https://gorm.io/gen/index.html)
    
    ## Contributing
    
    [You can help to deliver a better GORM, check out things you can do](https://gorm.io/contribute.html)
    
    ## Contributors
    
    [Thank you](https://github.com/go-gorm/gorm/graphs/contributors) for contributing to the GORM framework!
    
    ## License
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Nov 07 02:20:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/Actor.java

     * In this mode, the method return value or exception is not delivered back to the dispatcher.
     * </li>
     *
     * <li>Blocking, or synchronous, so that method dispatch blocks until the method call has been delivered and executed. In this mode, the
     * method return value or exception is delivered back to the dispatcher.
     * </li>
     *
     * </ul>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/AsyncDispatch.java

    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    
    /**
     * <p>A {@link Dispatch} implementation which delivers messages asynchronously. Calls to
     * {@link #dispatch} queue the message. Worker threads deliver the messages in the order they have been received to one
     * of a pool of delegate {@link Dispatch} instances.</p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. tests/integration/security/sds_ingress/ingress_test.go

    // verify that TLS connection could establish to deliver HTTPS request.
    // (2) Rotates key/cert by deleting the secret generated in (1) and
    // replacing it a new secret with a different server key/cert.
    // (3) verify that client using older CA cert gets a 404 response
    // (4) verify that client using the newer CA cert is able to establish TLS connection
    // to deliver the HTTPS request.
    func TestSingleTlsGateway_SecretRotation(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/dispatch/AsyncDispatchTest.groovy

            }
    
            parallel.waitForAll()
            dispatch.stop()
    
            then:
            target1.receivedMessages == ['message1']
        }
    
        def 'stop fails when no targets are available to deliver queued messages'() {
            given:
            dispatch.dispatch('message1')
    
            when:
            dispatch.stop()
    
            then:
            IllegalStateException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. src/os/signal/signal_test.go

    // have been delivered by the OS.
    func quiesce() {
    	// The kernel will deliver a signal as a thread returns
    	// from a syscall. If the only active thread is sleeping,
    	// and the system is busy, the kernel may not get around
    	// to waking up a thread to catch the signal.
    	// We try splitting up the sleep to give the kernel
    	// many chances to deliver the signal.
    	start := time.Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
Back to top