Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 132 for queueset (0.21 sec)

  1. pkg/controller/endpointslice/endpointslice_controller.go

    // onServiceDelete removes the Service Selector from the cache and queues the Service for processing.
    func (c *Controller) onServiceDelete(obj interface{}) {
    	key, err := controller.KeyFunc(obj)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("Couldn't get key for object %+v: %v", obj, err))
    		return
    	}
    
    	c.serviceQueue.Add(key)
    }
    
    // onEndpointSliceAdd queues a sync for the relevant Service for a sync if the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationExecutorParallelExecutionTest.groovy

            0          | 1
            1          | 1
            20         | 1
            1          | 4
            4          | 4
            20         | 4
        }
    
        def "all work run to completion for multiple queues when using multiple threads #maxThreads"() {
            given:
            def amountOfWork = 10
            setupBuildOperationExecutor(maxThreads)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            return LaRequestUtil.getOptionalRequest().map(req -> {
                @SuppressWarnings("unchecked")
                final Set<String> querySet = (Set<String>) req.getAttribute(Constants.HIGHLIGHT_QUERIES);
                if (querySet != null) {
                    return querySet.stream().map(s -> new TextFragment(null, s, null, null)).toArray(n -> new TextFragment[n]);
                }
                return new TextFragment[0];
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/testing/defaults/defaults.go

    // ExpandedPluginsV1 default set of v1 plugins after MultiPoint expansion
    var ExpandedPluginsV1 = &config.Plugins{
    	PreEnqueue: config.PluginSet{
    		Enabled: []config.Plugin{
    			{Name: names.SchedulingGates},
    		},
    	},
    	QueueSort: config.PluginSet{
    		Enabled: []config.Plugin{
    			{Name: names.PrioritySort},
    		},
    	},
    	PreFilter: config.PluginSet{
    		Enabled: []config.Plugin{
    			{Name: names.NodeAffinity},
    			{Name: names.NodePorts},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/SynchronizedDispatchConnection.java

    import java.util.concurrent.locks.ReentrantLock;
    
    /**
     * Connection decorator that synchronizes dispatching and always flushes after each message.
     *
     * The plan is to replace this with a Connection implementation that queues outgoing messages and dispatches them from a worker thread.
     */
    public class SynchronizedDispatchConnection<T> implements Receive<T>, Stoppable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/feature.go

    	fs.BoolVar(&o.EnablePriorityAndFairness, "enable-priority-and-fairness", o.EnablePriorityAndFairness, ""+
    		"If true, replace the max-in-flight handler with an enhanced one that queues and dispatches with priority and fairness")
    }
    
    func (o *FeatureOptions) ApplyTo(c *server.Config, clientset kubernetes.Interface, informers informers.SharedInformerFactory) error {
    	if o == nil {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

    import com.google.common.collect.ImmutableMap;
    import com.google.common.collect.LinkedHashMultimap;
    import com.google.common.collect.Multimap;
    import com.google.common.collect.Queues;
    import com.google.common.collect.Sets;
    import org.gradle.api.artifacts.component.ComponentArtifactIdentifier;
    import org.gradle.api.artifacts.result.ResolvedArtifactResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. pkg/registry/flowcontrol/ensurer/prioritylevelconfiguration_test.go

    }
    
    // must be called after WithLimited
    func (b *plBuilder) WithQueuing(queues, handSize, queueLengthLimit int32) *plBuilder {
    	limited := b.object.Spec.Limited
    	if limited == nil {
    		return b
    	}
    
    	limited.LimitResponse.Type = flowcontrolv1.LimitResponseTypeQueue
    	limited.LimitResponse.Queuing = &flowcontrolv1.QueuingConfiguration{
    		Queues:           queues,
    		HandSize:         handSize,
    		QueueLengthLimit: queueLengthLimit,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				podInformer.GetStore().Add(tt.pods[i])
    			}
    			// Register NodeResourceFit as the Filter & PreFilter plugin.
    			registeredPlugins := []tf.RegisterPluginFunc{
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    				tf.RegisterPluginAsExtensions(noderesources.Name, nodeResourcesFitFunc, "Filter", "PreFilter"),
    				tf.RegisterPluginAsExtensions("test-plugin", newTestPlugin, "PreFilter"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. cmd/bucket-notification-handlers.go

    	if err = config.Validate(region, globalEventNotifier.targetList); err != nil {
    		arnErr, ok := err.(*event.ErrARNNotFound)
    		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
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top