Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 919 for ioperation (0.46 sec)

  1. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// APIs may return other objects types at their discretion, such as error conditions, requests for alternate representations, or other operation specific behavior.
    	// This value will be null or empty if an APIService reports subresources but supports no operations on the parent resource
    	ResponseKind *v1.GroupVersionKind `json:"responseKind,omitempty" protobuf:"bytes,2,opt,name=responseKind"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.logging.progress.ProgressLoggerFactory
    import org.gradle.internal.operations.BuildOperationContext
    import org.gradle.internal.operations.BuildOperationDescriptor
    import org.gradle.internal.operations.BuildOperationRunner
    import org.gradle.internal.operations.CallableBuildOperation
    import org.gradle.internal.scripts.BuildScriptCompilationAndInstrumentation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	tests := []struct {
    		name       string
    		operations []operation
    		want       string
    	}{
    		{
    			name: "add pods to activeQ",
    			operations: []operation{
    				add,
    			},
    			want: `
                scheduler_queue_incoming_pods_total{event="PodAdd",queue="active"} 3
    `,
    		},
    		{
    			name: "add pods to unschedulablePods",
    			operations: []operation{
    				popAndRequeueAsUnschedulable,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_executor_test.go

    	}
    
    	// Assert
    	if !isOperationRunConcurrently(ch, quit, numVolumesToVerifyAttached) {
    		t.Fatalf("VerifyVolumesAreAttached operation is not being run concurrently")
    	}
    }
    
    func TestOperationExecutor_VerifyVolumesAreAttachedConcurrentlyOnDifferentNodes(t *testing.T) {
    	// Arrange
    	ch, quit, oe := setup()
    
    	// Act
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. src/net/net.go

    // package. It describes the operation, network type, and address of
    // an error.
    type OpError struct {
    	// Op is the operation which caused the error, such as
    	// "read" or "write".
    	Op string
    
    	// Net is the network type on which this error occurred,
    	// such as "tcp" or "udp6".
    	Net string
    
    	// For operations involving a remote network connection, like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. cmd/metrics-v3-bucket-replication.go

    	bucketReplProxiedDeleteTaggingRequestsFailures = "proxied_delete_tagging_requests_failures"
    	bucketL                                        = "bucket"
    	operationL                                     = "operation"
    	targetArnL                                     = "targetArn"
    )
    
    var (
    	bucketReplLastHrFailedBytesMD = NewGaugeMD(bucketReplLastHrFailedBytes,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. docs/en/docs/async.md

    * the contents your program gave to the system to be written to disk
    * a remote API operation
    * a database operation to finish
    * a database query to return the results
    * etc.
    
    As the execution time is consumed mostly by waiting for <abbr title="Input and Output">I/O</abbr> operations, they call them "I/O bound" operations.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                operations.add(InternalBuildProgressListener.TRANSFORM_EXECUTION);
            }
            if (!testOutputProgressListeners.isEmpty()) {
                operations.add(InternalBuildProgressListener.TEST_OUTPUT);
            }
            if (!fileDownloadListeners.isEmpty()) {
                operations.add(InternalBuildProgressListener.FILE_DOWNLOAD);
            }
            if (!buildPhaseListeners.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  9. src/sync/map.go

    // “synchronizes before” any read operation that observes the effect of the write, where
    // read and write operations are defined as follows.
    // [Map.Load], [Map.LoadAndDelete], [Map.LoadOrStore], [Map.Swap], [Map.CompareAndSwap],
    // and [Map.CompareAndDelete] are read operations;
    // [Map.Delete], [Map.LoadAndDelete], [Map.Store], and [Map.Swap] are write operations;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. doc/go_spec.html

    the corresponding iteration value will not be produced. If a map entry is
    created during iteration, that entry may be produced during the iteration or
    may be skipped. The choice may vary for each entry created and from one
    iteration to the next.
    If the map is <code>nil</code>, the number of iterations is 0.
    </li>
    
    <li>
    For channels, the iteration values produced are the successive values sent on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top