Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 466 for doThing (0.22 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt

    @Suppress("PLATFORM_CLASS_MAPPED_TO_KOTLIN", "NOTHING_TO_INLINE")
    internal inline fun Any.wait() = (this as Object).wait()
    
    @Suppress("PLATFORM_CLASS_MAPPED_TO_KOTLIN", "NOTHING_TO_INLINE")
    internal inline fun Any.notify() = (this as Object).notify()
    
    @Suppress("PLATFORM_CLASS_MAPPED_TO_KOTLIN", "NOTHING_TO_INLINE")
    internal inline fun Any.notifyAll() = (this as Object).notifyAll()
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/QueuesTest.java

        assertNull(q.peek());
        assertInterruptibleDrained(q);
        assertUninterruptibleDrained(q);
      }
    
      private void assertInterruptibleDrained(BlockingQueue<Object> q) {
        // nothing to drain, thus this should wait doing nothing
        try {
          assertEquals(0, Queues.drain(q, ImmutableList.of(), 0, 10, MILLISECONDS));
        } catch (InterruptedException e) {
          throw new AssertionError();
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 12K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/QueuesTest.java

        assertNull(q.peek());
        assertInterruptibleDrained(q);
        assertUninterruptibleDrained(q);
      }
    
      private void assertInterruptibleDrained(BlockingQueue<Object> q) {
        // nothing to drain, thus this should wait doing nothing
        try {
          assertEquals(0, Queues.drain(q, ImmutableList.of(), 0, 10, MILLISECONDS));
        } catch (InterruptedException e) {
          throw new AssertionError();
        }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 12K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java

            // do nothing
        }
    
        @Override
        public void xsetupForQueryInsert() {
            // do nothing
        }
    
        @Override
        public void xsetupForSpecifiedUpdate() {
            // do nothing
        }
    
        @Override
        public void xsetupForVaryingUpdate() {
            // do nothing
        }
    
        @Override
        public void enableThatsBadTiming() {
            // do nothing
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java

            // do nothing
        }
    
        @Override
        public void xsetupForQueryInsert() {
            // do nothing
        }
    
        @Override
        public void xsetupForSpecifiedUpdate() {
            // do nothing
        }
    
        @Override
        public void xsetupForVaryingUpdate() {
            // do nothing
        }
    
        @Override
        public void enableThatsBadTiming() {
            // do nothing
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  6. internal/lock/lock_windows.go

    // path unmodified.
    //
    // See https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx#maxpath
    func fixLongPath(path string) string {
    	// Do nothing (and don't allocate) if the path is "short".
    	// Empirically (at least on the Windows Server 2013 builder),
    	// the kernel is arbitrarily okay with < 248 bytes. That
    	// matches what the docs above say:
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Oct 18 18:08:15 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/AbstractExecutionListener.java

        }
    
        public void projectSucceeded(ExecutionEvent event) {
            // default does nothing
        }
    
        public void projectFailed(ExecutionEvent event) {
            // default does nothing
        }
    
        public void forkStarted(ExecutionEvent event) {
            // default does nothing
        }
    
        public void forkSucceeded(ExecutionEvent event) {
            // default does nothing
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/okhttp3/internal/idn/rfc3454.B.1.txt

       034F; ; Map to nothing
       1806; ; Map to nothing
       180B; ; Map to nothing
       180C; ; Map to nothing
       180D; ; Map to nothing
       200B; ; Map to nothing
       200C; ; Map to nothing
       200D; ; Map to nothing
       2060; ; Map to nothing
       FE00; ; Map to nothing
       FE01; ; Map to nothing
       FE02; ; Map to nothing
       FE03; ; Map to nothing
       FE04; ; Map to nothing
       FE05; ; Map to nothing
       FE06; ; Map to nothing
    Plain Text
    - Registered: Fri Mar 29 11:42:11 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 702 bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

      }
    
      override fun trackFailure(
        call: RealCall,
        e: IOException?,
      ) {
        // Do nothing.
      }
    
      override fun noNewExchanges() {
        // Do nothing.
      }
    
      override fun cancel() {
        canceled = true
        // Close the raw socket so we don't end up doing synchronous I/O.
        rawSocket?.closeQuietly()
      }
    
      override fun retry(): RoutePlanner.Plan {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java

            // do nothing
        }
    
        @Override
        public void xsetupForQueryInsert() {
            // do nothing
        }
    
        @Override
        public void xsetupForSpecifiedUpdate() {
            // do nothing
        }
    
        @Override
        public void xsetupForVaryingUpdate() {
            // do nothing
        }
    
        @Override
        public void enableThatsBadTiming() {
            // do nothing
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.8K bytes
    - Viewed (0)
Back to top