Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for enter_0 (0.19 sec)

  1. callbacks/preload.go

    	}
    	for _, relations := range embeddedRelations.EmbeddedRelations {
    		names = append(names, embeddedValues(relations)...)
    	}
    	return names
    }
    
    // preloadEntryPoint enters layer by layer. It will call real preload if it finds the right entry point.
    // If the current relationship is embedded or joined, current query will be ignored.
    //
    //nolint:cyclop
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

          afe.initCause(ie);
          throw afe;
        }
      }
    
      /**
       * Spin-waits up to the specified number of milliseconds for the given thread to enter a wait
       * state: BLOCKED, WAITING, or TIMED_WAITING.
       */
      void waitForThreadToEnterWaitState(Thread thread, long timeoutMillis) {
        long startTime = System.nanoTime();
        for (; ; ) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. pkg/scheduler/scheduler.go

    		events := e.EventsToRegister()
    
    		// This will happen when plugin registers with empty events, it's usually the case a pod
    		// will become reschedulable only for self-update, e.g. schedulingGates plugin, the pod
    		// will enter into the activeQ via priorityQueue.Update().
    		if len(events) == 0 {
    			continue
    		}
    
    		// Note: Rarely, a plugin implements EnqueueExtensions but returns nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. src/runtime/mfinal.go

    // a file descriptor d, and p has a finalizer that closes that file
    // descriptor, and if the last use of p in a function is a call to
    // syscall.Write(p.d, buf, size), then p may be unreachable as soon as
    // the program enters [syscall.Write]. The finalizer may run at that moment,
    // closing p.d, causing syscall.Write to fail because it is writing to
    // a closed file descriptor (or, worse, to an entirely different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top