Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 800 for queuesa (0.16 sec)

  1. pkg/scheduler/metrics/metrics.go

    		&metrics.CounterOpts{
    			Subsystem:      SchedulerSubsystem,
    			Name:           "queue_incoming_pods_total",
    			Help:           "Number of pods added to scheduling queues by event and queue type.",
    			StabilityLevel: metrics.STABLE,
    		}, []string{"queue", "event"})
    
    	PermitWaitDuration = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      SchedulerSubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. tensorflow/cc/training/queue_runner.cc

      if (wait_for > 0) {
        if (!counter_->WaitFor(std::chrono::milliseconds(wait_for))) {
          return Status(absl::StatusCode::kDeadlineExceeded,
                        "Queues not fed before the timeout");
        }
        // Check the status of the queue runner as well as the result of the enqueue
        // operations.
        mutex_lock l(mu_);
        if (!enqueue_status_.ok()) {
          return enqueue_status_;
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:30:37 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. internal/logger/target/types/types.go

    const (
    	_ TargetType = iota
    	TargetConsole
    	TargetHTTP
    	TargetKafka
    )
    
    // TargetStats contains statistics for a target.
    type TargetStats struct {
    	// QueueLength is the queue length if any messages are queued.
    	QueueLength int
    
    	// TotalMessages is the total number of messages sent in the lifetime of the target
    	TotalMessages int64
    
    	// FailedMessages should log message count that failed to send.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Nov 10 18:20:21 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/formatting.go

    func (pls *priorityLevelState) GoString() string {
    	if pls == nil {
    		return "nil"
    	}
    	return fmt.Sprintf("&priorityLevelState{pl:%s, qsCompleter:%#+v, queues:%#+v, quiescing:%#v, numPending:%d}", fcfmt.Fmt(pls.pl), pls.qsCompleter, pls.queues, pls.quiescing, pls.numPending)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 11 03:54:40 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. pkg/controller/namespace/namespace_controller.go

    	// and HA etcd servers to observe last minute object creations inside the namespace
    	nm.queue.AddAfter(key, namespaceDeletionGracePeriod)
    }
    
    // worker processes the queue of namespace objects.
    // Each namespace can be in the queue at most once.
    // The system ensures that no two workers can process
    // the same namespace at the same time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. cmd/bucket-notification-handlers.go

    		if ok {
    			for i, queue := range config.QueueList {
    				// Remove ARN not found queues, because we previously allowed
    				// adding unexpected entries into the config.
    				//
    				// With newer config disallowing changing / turning off
    				// notification targets without removing ARN in notification
    				// configuration we won't see this problem anymore.
    				if reflect.DeepEqual(queue.ARN, arnErr.ARN) && i < len(config.QueueList) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedArtifactSet.java

        interface Artifacts {
            /**
             * Called before any of the other methods are called on this set.
             */
            default void prepareForVisitingIfNotAlready() {}
    
            /**
             * Queues up any work still remaining to finalize the set of artifacts contained in this set.
             */
            void startFinalization(BuildOperationQueue<RunnableBuildOperation> actions, boolean requireFiles);
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. pkg/apis/flowcontrol/v1beta2/defaults.go

    func SetDefaults_QueuingConfiguration(cfg *v1beta2.QueuingConfiguration) {
    	if cfg.HandSize == 0 {
    		cfg.HandSize = PriorityLevelConfigurationDefaultHandSize
    	}
    	if cfg.Queues == 0 {
    		cfg.Queues = PriorityLevelConfigurationDefaultQueues
    	}
    	if cfg.QueueLengthLimit == 0 {
    		cfg.QueueLengthLimit = PriorityLevelConfigurationDefaultQueueLengthLimit
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 00:47:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

                return;
            }
            buildOperationExecutor.runAll(queue -> {
                VerificationEvent event;
                synchronized (verificationEvents) {
                    while ((event = verificationEvents.poll()) != null) {
                        VerificationEvent ve = event;
                        queue.add(new RunnableBuildOperation() {
                            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/v1/defaults.go

    func SetDefaults_QueuingConfiguration(cfg *v1.QueuingConfiguration) {
    	if cfg.HandSize == 0 {
    		cfg.HandSize = PriorityLevelConfigurationDefaultHandSize
    	}
    	if cfg.Queues == 0 {
    		cfg.Queues = PriorityLevelConfigurationDefaultQueues
    	}
    	if cfg.QueueLengthLimit == 0 {
    		cfg.QueueLengthLimit = PriorityLevelConfigurationDefaultQueueLengthLimit
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top