Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 801 for deliver (1.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go

    		close(c.done)
    	}
    }
    
    func (c *cacheWatcher) nonblockingAdd(event *watchCacheEvent) bool {
    	// if the bookmarkAfterResourceVersion hasn't been seen
    	// we will try to deliver a bookmark event every second.
    	// the following check will discard a bookmark event
    	// if it is < than the bookmarkAfterResourceVersion
    	// so that we don't pollute the input channel
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  8. src/runtime/os_aix.go

    //go:nosplit
    func (c *sigctxt) fixsigcode(sig uint32) {
    	switch sig {
    	case _SIGPIPE:
    		// For SIGPIPE, c.sigcode() isn't set to _SI_USER as on Linux.
    		// Therefore, raisebadsignal won't raise SIGPIPE again if
    		// it was deliver in a non-Go thread.
    		c.set_sigcode(_SI_USER)
    	}
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func sigaddset(mask *sigset, i int) {
    	(*mask)[(i-1)/64] |= 1 << ((uint32(i) - 1) & 63)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/image/jpeg/reader_test.go

    	f, err := os.Open(filename)
    	if err != nil {
    		return nil, err
    	}
    	defer f.Close()
    	return Decode(f)
    }
    
    type eofReader struct {
    	data     []byte // deliver from Read without EOF
    	dataEOF  []byte // then deliver from Read with EOF on last chunk
    	lenAtEOF int
    }
    
    func (r *eofReader) Read(b []byte) (n int, err error) {
    	if len(r.data) > 0 {
    		n = copy(b, r.data)
    		r.data = r.data[n:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  10. pkg/kubelet/config/config.go

    	// PodConfigNotificationSnapshot delivers the full configuration as a SET whenever
    	// any change occurs.
    	PodConfigNotificationSnapshot
    	// PodConfigNotificationSnapshotAndUpdates delivers an UPDATE and DELETE message whenever pods are
    	// changed, and a SET message if there are any additions or removals.
    	PodConfigNotificationSnapshotAndUpdates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top