Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 183 for Everything (0.13 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

        }
      }
    
      /**
       * Returns an immediately-executable task for the calling thread to execute, sleeping as necessary
       * until one is ready. If there are no ready queues, or if other threads have everything under
       * control this will return null. If there is more than a single task ready to execute immediately
       * this will start another thread to handle that work.
       */
      fun awaitTaskToRun(): Task? {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	var err *multierror.Error
    	var endpoints []*v1.EndpointSlice
    	if filtered {
    		endpoints = esc.slices.List(ns, klabels.Everything())
    	} else {
    		endpoints = esc.slices.ListUnfiltered(ns, klabels.Everything())
    	}
    	log.Debugf("initializing %d endpointslices", len(endpoints))
    	for _, s := range endpoints {
    		err = multierror.Append(err, esc.onEvent(nil, s, model.EventAdd))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. cmd/admin-handlers-site-replication.go

    	}
    	body, err := json.Marshal(status)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    	writeSuccessResponseJSON(w, body)
    }
    
    // SiteReplicationDevNull - everything goes to io.Discard
    // [POST] /minio/admin/v3/site-replication/devnull
    func (a adminAPIHandlers) SiteReplicationDevNull(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	globalSiteNetPerfRX.Connect()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

         * In order to access a method, a lookup object which is accessible to this method must be provided.
         * Usually, this class and the target Gradle-managed class loader exist in the same module, so everything works.
         * Otherwise, an {@link IllegalAccessException} will be thrown, and {@link ClassLoader} class will be used as the lookup object.
         */
        private static class AbstractClassLoaderLookuper {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Iterables.java

        // Here we know that:
        // * (to < from) and that both are valid indices.
        // * Everything with (index < to) should be kept.
        // * Everything with (to <= index < from) should be removed.
        // * The element with (index == from) should be kept.
        // * Everything with (index > from) has not been checked yet.
    
        // Check from the end of the list backwards (minimize expected cost of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	<-ctx.Done()
    }
    
    func (adc *attachDetachController) populateActualStateOfWorld(logger klog.Logger) error {
    	logger.V(5).Info("Populating ActualStateOfworld")
    	nodes, err := adc.nodeLister.List(labels.Everything())
    	if err != nil {
    		return err
    	}
    
    	for _, node := range nodes {
    		nodeName := types.NodeName(node.Name)
    
    		for _, attachedVolume := range node.Status.VolumesAttached {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/codehost/vcs.go

    // The caller should report this error instead of continuing to probe
    // other possible module paths.
    //
    // TODO(golang.org/issue/31730): See if we can invert this. (Return a
    // distinguished error for “repo not found” and treat everything else
    // as terminal.)
    type VCSError struct {
    	Err error
    }
    
    func (e *VCSError) Error() string { return e.Err.Error() }
    
    func (e *VCSError) Unwrap() error { return e.Err }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. pkg/controller/resourcequota/resource_quota_controller.go

    	logger := klog.FromContext(ctx)
    	defer logger.V(4).Info("Resource quota controller queued all resource quota for full calculation of usage")
    	rqs, err := rq.rqLister.List(labels.Everything())
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("unable to enqueue all - error listing resource quotas: %v", err))
    		return
    	}
    	for i := range rqs {
    		key, err := controller.KeyFunc(rqs[i])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

    import java.util.logging.Logger
    import kotlin.concurrent.withLock
    import okhttp3.OkHttpClient
    import okhttp3.TestUtil.threadFactory
    
    /**
     * Runs a [TaskRunner] in a controlled environment so that everything is sequential and
     * deterministic.
     *
     * This class ensures that at most one thread is running at a time. This is initially the JUnit test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. architecture/ambient/ztunnel.md

    The `Workload` aims to represent everything about a workload (generally a `Pod` or `WorkloadEntry`).
    This includes things like its IP address, identity, metadata (name, namespace, app, version, etc), and whether it has a waypoint proxy associated.
    
    The `Service` aims to represent everything about a service (generally a `Service` or `ServiceEntry`).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top