Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 358 for shortly (0.17 sec)

  1. src/cmd/compile/internal/types2/validtype.go

    //         nest = A[A[string]]        <== type nest at B's instantiation time
    //         path = A[A[string]]->B[P]
    //
    // If we'd use the current nest it would correspond to the path
    // which will be wrong as we will see shortly. P's type argument
    // is A[string], which again must be evaluated in the type nest
    // that existed when A was instantiated with A[string]. That type
    // nest is empty:
    //
    //   A[string]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/go/types/validtype.go

    //         nest = A[A[string]]        <== type nest at B's instantiation time
    //         path = A[A[string]]->B[P]
    //
    // If we'd use the current nest it would correspond to the path
    // which will be wrong as we will see shortly. P's type argument
    // is A[string], which again must be evaluated in the type nest
    // that existed when A was instantiated with A[string]. That type
    // nest is empty:
    //
    //   A[string]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux.go

    	activePods := m.getPods()
    
    	defer func() {
    		m.dbusCon.ReleaseInhibitLock(m.inhibitLock)
    		m.logger.V(1).Info("Shutdown manager completed processing shutdown event, node will shutdown shortly")
    	}()
    
    	if m.enableMetrics && m.storage != nil {
    		startTime := time.Now()
    		err := m.storage.Store(state{
    			StartTime: startTime,
    		})
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 08:02:40 UTC 2022
    - 15.5K bytes
    - Viewed (0)
  4. pilot/pkg/model/endpointshards.go

    	// moving forward in version. In practice, this is pretty rare and self corrects nearly
    	// immediately. However, clearing the cache here has almost no impact on cache performance as we
    	// would clear it shortly after anyways.
    	e.clearCacheForService(hostname, namespace)
    
    	return pushType
    }
    
    // updateShardServiceAccount updates the service endpoints' sa when service/endpoint event happens.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/AbstractServiceTest.java

      }
    
      private class ThreadedService extends AbstractService {
        final CountDownLatch hasConfirmedIsRunning = new CountDownLatch(1);
    
        /*
         * The main test thread tries to stop() the service shortly after
         * confirming that it is running. Meanwhile, the service itself is trying
         * to confirm that it is running. If the main thread's stop() call happens
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AbstractServiceTest.java

      }
    
      private class ThreadedService extends AbstractService {
        final CountDownLatch hasConfirmedIsRunning = new CountDownLatch(1);
    
        /*
         * The main test thread tries to stop() the service shortly after
         * confirming that it is running. Meanwhile, the service itself is trying
         * to confirm that it is running. If the main thread's stop() call happens
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.3K bytes
    - Viewed (0)
  7. cluster/log-dump/log-dump.sh

              log-dump-ssh "${node_name}" "sudo journalctl --output=short-precise -u kube-master-installation.service" > "${dir}/kube-master-installation.log" || true
              log-dump-ssh "${node_name}" "sudo journalctl --output=short-precise -u kube-master-configuration.service" > "${dir}/kube-master-configuration.log" || true
            else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller_test.go

    			// pre-existing finalizer, for example the pv-protection finalizer. When csi-migration is disabled,
    			// the migrated-to annotation will be removed shortly when updateVolumeMigrationAnnotationsAndFinalizers
    			// is called followed by adding back the in-tree pv protection finalizer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  9. src/archive/tar/reader.go

    	// Do this because Seek is often lazy about reporting errors; this will mask
    	// the fact that the stream may be truncated. We can rely on the
    	// io.CopyN done shortly afterwards to trigger any IO errors.
    	var seekSkipped int64 // Number of bytes skipped via Seek
    	if sr, ok := r.(io.Seeker); ok && n > 1 {
    		// Not all io.Seeker can actually Seek. For example, os.Stdin implements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. src/runtime/os_windows.go

    		// can't since there may be untyped syscall arguments
    		// on the stack. Instead, just wait and encourage the
    		// SuspendThread APC to run. The preemption should be
    		// done shortly.
    		osyield()
    	}
    	// Asynchronous preemption is now blocked.
    }
    
    // osPreemptExtExit is called after returning from external code that
    // may call ExitProcess.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
Back to top