Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 148 for completely (0.18 sec)

  1. cmd/batch-handlers.go

    	LastUpdate    time.Time `json:"lastUpdate" msg:"lu"`
    	RetryAttempts int       `json:"retryAttempts" msg:"ra"`
    	Attempts      int       `json:"attempts" msg:"at"`
    
    	Complete bool `json:"complete" msg:"cmp"`
    	Failed   bool `json:"failed" msg:"fld"`
    
    	// Last bucket/object batch replicated
    	Bucket string `json:"-" msg:"lbkt"`
    	Object string `json:"-" msg:"lobj"`
    
    	// Verbose information
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    		return err
    	}
    	return alertErr
    }
    
    var errEarlyCloseWrite = errors.New("tls: CloseWrite called before handshake complete")
    
    // CloseWrite shuts down the writing side of the connection. It should only be
    // called once the handshake has completed and does not call CloseWrite on the
    // underlying connection. Most callers should just use [Conn.Close].
    func (c *Conn) CloseWrite() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    // TableRowCondition allows a row to be marked with additional information.
    // +protobuf=false
    type TableRowCondition struct {
    	// Type of row condition. The only defined value is 'Completed' indicating that the
    	// object this row represents has reached a completed state and may be given less visual
    	// priority than other rows. Clients are not required to honor any conditions but should
    	// be consistent where possible about handling the conditions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{94, "ENOTRECOVERABLE", "state not recoverable "},
    	{95, "EOWNERDEAD", "previous owner died "},
    	{109, "ENOSYS", "function not implemented"},
    	{110, "EMEDIA", "media surface error"},
    	{111, "ESOFT", "I/O completed, but needs relocation"},
    	{112, "ENOATTR", "no attribute found"},
    	{113, "ESAD", "security Authentication Denied"},
    	{114, "ENOTRUST", "not a Trusted Program"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    	// activeQ is heap structure that scheduler actively looks at to find pods to
    	// schedule. Head of heap is the highest priority pod.
    	activeQ *heap.Heap
    	// podBackoffQ is a heap ordered by backoff expiry. Pods which have completed backoff
    	// are popped from this heap before the scheduler looks at activeQ
    	podBackoffQ *heap.Heap
    	// unschedulablePods holds pods that have been tried and determined unschedulable.
    	unschedulablePods *UnschedulablePods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    			}
    			continue
    		}
    
    		switch filename {
    		case "completed":
    			// Strictly speaking, there is no guarantee that seeing the error at completed:1
    			// (at the end of the file) means we've seen all the errors from earlier in the file,
    			// but usually it does. Certainly if we don't see the completed:1 error, we did
    			// not get all the errors we expected.
    			completed = true
    
    		case "not-declared":
    			sniff[i] |= notDeclared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	{94, "ENOTRECOVERABLE", "state not recoverable "},
    	{95, "EOWNERDEAD", "previous owner died "},
    	{109, "ENOSYS", "function not implemented"},
    	{110, "EMEDIA", "media surface error"},
    	{111, "ESOFT", "I/O completed, but needs relocation"},
    	{112, "ENOATTR", "no attribute found"},
    	{113, "ESAD", "security Authentication Denied"},
    	{114, "ENOTRUST", "not a Trusted Program"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    			// a goroutine to call client.Read and thus process the
    			// renegotiation request, watch for OpenSSL's stdout to
    			// indicate that the handshake is complete and,
    			// finally, have OpenSSL write something to cause
    			// client.Read to complete.
    			if write {
    				stdin <- opensslRenegotiate
    			}
    
    			signalChan := make(chan struct{})
    
    			go func() {
    				defer close(signalChan)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    	// as bytes scanned per CPU-time.
    	// The units of this ratio are (B / cpu-ns) / (B / cpu-ns).
    	//
    	// At a high level, this value is computed as the bytes of memory
    	// allocated (cons) per unit of scan work completed (mark) in a GC
    	// cycle, divided by the CPU time spent on each activity.
    	//
    	// Updated at the end of each GC cycle, in endCycle.
    	consMark float64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. cmd/erasure-healing_test.go

    			ETag:       pInfo.ETag,
    		})
    	}
    
    	_, err = objLayer.CompleteMultipartUpload(ctx, bucket, object, res.UploadID, uploadedParts, ObjectOptions{})
    	if err != nil {
    		t.Fatalf("Failed to complete multipart upload - got: %v", err)
    	}
    
    	cfgFile := pathJoin(bucketMetaPrefix, bucket, ".test.bin")
    	if err = saveConfig(ctx, objLayer, cfgFile, data); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
Back to top