Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 112 for timeEnd (0.24 sec)

  1. src/syscall/tables_wasip1.go

    	EROFS:           "Read-only file system",
    	ESPIPE:          "Illegal seek",
    	ESRCH:           "No such process",
    	ESTALE:          "Stale file handle",
    	ETIMEDOUT:       "Connection timed out",
    	ETXTBSY:         "Text file busy",
    	EXDEV:           "Cross-device link",
    	ENOTCAPABLE:     "Capabilities insufficient",
    }
    
    // Do the interface allocations only once for common
    // Errno values.
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. src/runtime/netpoll_aix.go

    	n, e := poll(&pfds[0], uintptr(len(pfds)), timeout)
    	if n < 0 {
    		if e != _EINTR {
    			println("errno=", e, " len(pfds)=", len(pfds))
    			throw("poll failed")
    		}
    		unlock(&mtxset)
    		// If a timed sleep was interrupted, just return to
    		// recalculate how long we should sleep now.
    		if timeout > 0 {
    			return gList{}, 0
    		}
    		goto retry
    	}
    	// Check if some descriptors need to be changed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/plugin/plugin.go

    		return nil, err
    	}
    
    	ctx, cancel := context.WithTimeout(context.Background(), time.Second)
    	defer cancel()
    
    	if ok := conn.WaitForStateChange(ctx, connectivity.Connecting); !ok {
    		return nil, errors.New("timed out waiting for gRPC connection to be ready")
    	}
    
    	p.conn = conn
    	return p.conn, nil
    }
    
    // RegistrationHandler is the handler which is fed to the pluginwatcher API.
    type RegistrationHandler struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/transport/Transport.java

                        }
                    }
                } catch( Exception ex ) {
                    String msg = ex.getMessage();
                    boolean timeout = msg != null && msg.equals( "Read timed out" );
                    /* If just a timeout, try to disconnect gracefully
                     */
                    boolean hard = timeout == false;
    
                    if (!timeout && log.level >= 3)
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/ws/WebSocketRecorder.kt

        } else {
          events.add(Failure(t, response))
        }
      }
    
      private fun nextEvent(): Any {
        return events.poll(10, TimeUnit.SECONDS)
          ?: throw AssertionError("Timed out waiting for event.")
      }
    
      fun assertTextMessage(payload: String?) {
        assertThat(nextEvent()).isEqualTo(Message(string = payload))
      }
    
      fun assertBinaryMessage(payload: ByteString?) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. pkg/controller/volume/pvprotection/pv_protection_controller_test.go

    		}
    
    		// Process the controller queue until we get expected results
    		timeout := time.Now().Add(10 * time.Second)
    		lastReportedActionCount := 0
    		for {
    			if time.Now().After(timeout) {
    				t.Errorf("Test %q: timed out", test.name)
    				break
    			}
    			if ctrl.queue.Len() > 0 {
    				logger.V(5).Info("Non-empty events queue, processing one", "test", test.name, "queueLength", ctrl.queue.Len())
    				ctrl.processNextWorkItem(context.TODO())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                }
                try {
                    if (!p.destroyForcibly().waitFor(timeout, TimeUnit.MILLISECONDS)) {
                        logger.warn("Terminating process {} is timed out.", p);
                    } else if (logger.isDebugEnabled()) {
                        logger.debug("Terminated process {}.", p);
                    }
                } catch (final Exception e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/connection.go

    func (c *connection) RemoveStreams(streams ...httpstream.Stream) {
    	c.streamLock.Lock()
    	for _, stream := range streams {
    		// It may be possible that the provided stream is nil if timed out.
    		if stream != nil {
    			delete(c.streams, stream.Identifier())
    		}
    	}
    	c.streamLock.Unlock()
    }
    
    // CreateStream creates a new stream with the specified headers and registers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 01 15:04:07 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/ConnectionListenerTest.kt

              .url(server!!.url("/"))
              .build(),
          )
        assertFailsWith<IOException> {
          call.execute()
        }.also { expected ->
          assertThat(expected.message).isIn("timeout", "Read timed out")
        }
        assertThat(listener.recordedEventTypes()).containsExactly(
          "ConnectStart",
          "ConnectEnd",
          "ConnectionAcquired",
          "NoNewExchanges",
          "ConnectionReleased",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/runtime/netpoll_wasip1.go

    	if errno != 0 {
    		if errno != _EINTR {
    			println("errno=", errno, " len(pollsubs)=", len(pollsubs))
    			throw("poll_oneoff failed")
    		}
    		// If a timed sleep was interrupted, just return to
    		// recalculate how long we should sleep now.
    		if delay > 0 {
    			unlock(&mtx)
    			return gList{}, 0
    		}
    		goto retry
    	}
    
    	var toRun gList
    	delta := int32(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top