Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 635 for discarded (0.14 sec)

  1. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientsManagerTest.groovy

            manager.reserveIdleClient(options) == null
    
            when:
            manager.release(client)
    
            then:
            manager.reserveIdleClient(options) == client
        }
    
        def "clients are discarded when log level changes"() {
            OutputEventListener listener
            def client = Mock(WorkerDaemonClient) {
                isCompatibleWith(_) >> true
                getLogLevel() >> LogLevel.INFO
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/net/http/httptest/recorder.go

    	// use the Response.Header map as returned by the Result method.
    	HeaderMap http.Header
    
    	// Body is the buffer to which the Handler's Write calls are sent.
    	// If nil, the Writes are silently discarded.
    	Body *bytes.Buffer
    
    	// Flushed is whether the Handler called Flush.
    	Flushed bool
    
    	result      *http.Response // cache of Result's return value
    	snapHeader  http.Header    // snapshot of HeaderMap at first Write
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/net/tcpsock.go

    //
    // If sec == 0, the operating system discards any unsent or
    // unacknowledged data.
    //
    // If sec > 0, the data is sent in the background as with sec < 0.
    // On some operating systems including Linux, this may cause Close to block
    // until all data has been sent or discarded.
    // On some operating systems after sec seconds have elapsed any remaining
    // unsent data may be discarded.
    func (c *TCPConn) SetLinger(sec int) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHub.java

     */
    public class MessageHub implements AsyncStoppable {
        private enum State {Running, Stopping, Stopped}
    
        private static final Discard DISCARD = new Discard();
        private final ManagedExecutor workers;
        private final String displayName;
        private final Action<? super Throwable> errorHandler;
        private final Lock lock = new ReentrantLock();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

            if (node is ActionNode) {
                val setupNode = node.action?.preExecutionNode
                // Could probably add some abstraction for nodes that can be executed eagerly and discarded
                if (setupNode is DefaultTransformUpstreamDependenciesResolver.FinalizeTransformDependenciesFromSelectedArtifacts.CalculateFinalDependencies) {
                    setupNode.run(object : NodeExecutionContext {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/log/slog/handler.go

    	// The handler ignores records whose level is lower.
    	// It is called early, before any arguments are processed,
    	// to save effort if the log event should be discarded.
    	// If called from a Logger method, the first argument is the context
    	// passed to that method, or context.Background() if nil was passed
    	// or the method does not take a context.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

        /**
         * Use a WeakHashMap here, so the keys (Class objects) can be garbage collected.
         * This approach prevents permgen space overflows due to retention of discarded
         * classloaders.
         */
        private static final Map<Class<?>, WeakReference<ClassMap>> CLASS_MAPS = new WeakHashMap<>();
    
        static final int EOF = -1;
    
        static final char PROPERTY_START = '.';
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. src/encoding/xml/read.go

    //     If there is no such field, the character data is discarded.
    //
    //   - If the XML element contains comments, they are accumulated in
    //     the first struct field that has tag ",comment".  The struct
    //     field may have type []byte or string. If there is no such
    //     field, the comments are discarded.
    //
    //   - If the XML element contains a sub-element whose name matches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  9. pilot/pkg/model/envoyfilter.go

    	for _, cp := range localEnvoyFilter.ConfigPatches {
    		if cp.Patch == nil {
    			// Should be caught by validation, but sometimes its disabled and we don't want to crash
    			// as a result.
    			log.Debugf("envoyfilter %s/%s discarded due to missing patch", local.Namespace, local.Name)
    			continue
    		}
    		cpw := &EnvoyFilterConfigPatchWrapper{
    			Name:      local.Name,
    			Namespace: local.Namespace,
    			FullName:  local.Namespace + "/" + local.Name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. test/closedchan.go

    			failed = true
    		}
    	}
    
    	// send should work with ,ok too: sent a value without blocking, so ok == true.
    	shouldPanic(func() { c.Nbsend(1) })
    
    	// the value should have been discarded.
    	if x := c.Recv(); x != 0 {
    		println("test1: recv on closed got non-zero after send on closed:", x, c.Impl())
    		failed = true
    	}
    
    	// similarly Send.
    	shouldPanic(func() { c.Send(2) })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 5.8K bytes
    - Viewed (0)
Back to top