Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 426 for enqueues (0.14 sec)

  1. tensorflow/c/c_api_experimental.h

    // On success, dequeues a tensor from a TF-managed FifoQueue given by
    // `tensor_id`, associated with `session`. There must be a graph node named
    // "fifo_queue_dequeue_<tensor_id>", to be executed by this API call.
    
    // Caller must call TF_DeleteTensor() over the returned tensor. If the queue is
    // empty, this call is blocked.
    //
    // Tensors are enqueued via the corresponding TF enqueue op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  2. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    		tc.enqueue(logger, job)
    	}
    
    }
    
    func (tc *Controller) updateJob(logger klog.Logger, old, cur interface{}) {
    	job := cur.(*batch.Job)
    	logger.V(4).Info("Updating job", "job", klog.KObj(job))
    
    	if job.DeletionTimestamp == nil && needsCleanup(job) {
    		tc.enqueue(logger, job)
    	}
    }
    
    func (tc *Controller) enqueue(logger klog.Logger, job *batch.Job) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector.go

    // graph changes, the dependencyGraphBuilder enqueues objects that can
    // potentially be garbage-collected to the `attemptToDelete` queue, and enqueues
    // objects whose dependents need to be orphaned to the `attemptToOrphan` queue.
    // The GarbageCollector has workers who consume these two queues, send requests
    // to the API server to delete/update the objects accordingly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. src/runtime/mgcwork.go

    // permanently corrupt the gcWork.
    
    func (w *gcWork) init() {
    	w.wbuf1 = getempty()
    	wbuf2 := trygetfull()
    	if wbuf2 == nil {
    		wbuf2 = getempty()
    	}
    	w.wbuf2 = wbuf2
    }
    
    // put enqueues a pointer for the garbage collector to trace.
    // obj must point to the beginning of a heap object or an oblet.
    //
    //go:nowritebarrierrec
    func (w *gcWork) put(obj uintptr) {
    	flushed := false
    	wbuf := w.wbuf1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/informers.go

    			!kube.CheckPodTerminal(pod) &&
    			util.PodRedirectionActive(pod) {
    			pods = append(pods, pod)
    		}
    	}
    	return pods
    }
    
    // EnqueueNamespace takes a Namespace and enqueues all Pod objects that make need an update
    // TODO it is sort of pointless/confusing/implicit to populate Old and New with the same reference here
    func (s *InformerHandlers) enqueueNamespace(o controllers.Object) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. pkg/test/framework/suite.go

    	RequireMinVersion(minorVersion uint) Suite
    	// RequireMaxVersion validates the environment meets a maximum version
    	RequireMaxVersion(minorVersion uint) Suite
    	// Setup runs enqueues the given setup function to run before test execution.
    	Setup(fn resource.SetupFn) Suite
    	Teardown(fn resource.TeardownFn) Suite
    	// SetupParallel runs the given setup functions in parallel before test execution.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

      ) {
        if (!closeInternal(rstStatusCode, errorException)) {
          return // Already closed.
        }
        connection.writeSynReset(id, rstStatusCode)
      }
    
      /**
       * Abnormally terminate this stream. This enqueues a `RST_STREAM` frame and returns immediately.
       */
      fun closeLater(errorCode: ErrorCode) {
        if (!closeInternal(errorCode, null)) {
          return // Already closed.
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. pilot/pkg/autoregistration/controller.go

    			return nil
    		}
    		if c.shouldCleanupEntry(*wle) {
    			c.cleanupEntry(*wle, false)
    		}
    		return nil
    	}, features.WorkloadEntryCleanupGracePeriod)
    	return nil
    }
    
    // QueueWorkloadEntryHealth enqueues the associated WorkloadEntries health status.
    func (c *Controller) QueueWorkloadEntryHealth(proxy *model.Proxy, event HealthEvent) {
    	if !features.WorkloadEntryHealthChecks {
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. pkg/controller/garbagecollector/graph_builder.go

    			}
    			logger.V(5).Info("add virtual item", "identity", ownerNode.identity)
    			gb.uidToNode.Write(ownerNode)
    		}
    		ownerNode.addDependent(n)
    		if !ok {
    			// Enqueue the virtual node into attemptToDelete.
    			// The garbage processor will enqueue a virtual delete
    			// event to delete it from the graph if API server confirms this
    			// owner doesn't exist.
    			gb.attemptToDelete.Add(ownerNode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_launch_util.cc

            &const_tensor, device, output_tensor,
            [&](Status status) { TF_CHECK_OK(status); });
    
        if (device->device_type() == DEVICE_GPU) {
          // The GPUDeviceContext enqueues the host->device transfer in a
          // separate stream from the main compute stream. We must ensure the
          // compute stream is synchronized with the host->device transfer
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
Back to top