Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 135 for Queuing (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    			Limited: &flowcontrol.LimitedPriorityLevelConfiguration{
    				NominalConcurrencyShares: ptr.To(concurrency),
    				LimitResponse: flowcontrol.LimitResponse{
    					Type:    responseType,
    					Queuing: qcfg,
    				},
    			},
    		},
    	}
    
    	return []runtime.Object{fs, pl}
    }
    
    // gathers and checks the metrics.
    func checkForExpectedMetrics(t *testing.T, expectedMetrics []string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. src/runtime/runtime2.go

    // unexpected write barrier would not be synchronized with the GC,
    // which can lead to a half-executed write barrier that has marked the object
    // but not queued it. If the GC skips the object and completes before the
    // queuing can occur, it will incorrectly free the object.
    //
    // We tried using special assignment functions invoked only when not
    // holding a running P, but then some updates to a particular memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  3. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"queuing": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    		if modAddedBy[mod] == nil {
    			modAddedBy[mod] = pkg
    		}
    	}
    
    	return modAddedBy, nil
    }
    
    // pkg locates the *loadPkg for path, creating and queuing it for loading if
    // needed, and updates its state to reflect the given flags.
    //
    // The imports of the returned *loadPkg will be loaded asynchronously in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers.go

    	handSize := interface{}("<none>")
    	queueLengthLimit := interface{}("<none>")
    	if obj.Spec.Limited != nil {
    		ncs = obj.Spec.Limited.NominalConcurrencyShares
    		if qc := obj.Spec.Limited.LimitResponse.Queuing; qc != nil {
    			queues = qc.Queues
    			handSize = qc.HandSize
    			queueLengthLimit = qc.QueueLengthLimit
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

          "description": "LimitResponse defines how to handle requests that can not be executed right now.",
          "properties": {
            "queuing": {
              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta2.QueuingConfiguration",
              "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`."
            },
            "type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  7. src/runtime/debug/heapdump_test.go

    	println("allocating objects")
    	x := &Obj{}
    	runtime.SetFinalizer(x, objfin)
    	y := &Obj{}
    	runtime.SetFinalizer(y, objfin)
    
    	// Trigger collection of x and y, queueing of their finalizers.
    	println("starting gc")
    	runtime.GC()
    
    	// Make sure WriteHeapDump doesn't fail with multiple queued finalizers.
    	println("starting dump")
    	WriteHeapDump(f.Fd())
    	println("done dump")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 12 00:32:29 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/FlushOutputEvent.java

     */
    
    package org.gradle.internal.logging.events;
    
    import org.gradle.api.logging.LogLevel;
    
    import javax.annotation.Nullable;
    
    /**
     * Notifies output consumers that might be queueing messages to immediately flush their queues.
     */
    public class FlushOutputEvent extends OutputEvent implements InteractiveEvent {
        @Nullable
        @Override
        public LogLevel getLogLevel() {
            return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 00:09:24 UTC 2024
    - 1015 bytes
    - Viewed (0)
  9. api/openapi-spec/swagger.json

          "description": "LimitResponse defines how to handle requests that can not be executed right now.",
          "properties": {
            "queuing": {
              "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.QueuingConfiguration",
              "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`."
            },
            "type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  10. cluster/addons/fluentd-gcp/fluentd-gcp-ds.yaml

            # Liveness probe is aimed to help in situarions where fluentd
            # silently hangs for no apparent reasons until manual restart.
            # The idea of this probe is that if fluentd is not queueing or
            # flushing chunks for 5 minutes, something is not right. If
            # you want to change the fluentd configuration, reducing amount of
            # logs fluentd collects, consider changing the threshold or turning
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 27 17:54:10 UTC 2021
    - 4.1K bytes
    - Viewed (0)
Back to top