Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 121 for suspending (0.19 sec)

  1. src/runtime/preempt.go

    	// state was observed, so the caller must not assume that it
    	// remains dead.
    	dead bool
    
    	// stopped indicates that this suspendG transitioned the G to
    	// _Gwaiting via g.preemptStop and thus is responsible for
    	// readying it when done.
    	stopped bool
    }
    
    // suspendG suspends goroutine gp at a safe-point and returns the
    // state of the suspended goroutine. The caller gets read access to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. src/runtime/os_windows.go

    	// external C code.
    	//
    	// This protects against races between preemptM calling
    	// SuspendThread and external code on this thread calling
    	// ExitProcess. If these happen concurrently, it's possible to
    	// exit the suspending thread and suspend the exiting thread,
    	// leading to deadlock.
    	//
    	// 0 indicates this M is not being preempted or in external
    	// code. Entering external code CASes this from 0 to 1. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  3. docs/bucket/versioning/README.md

    Versioning must be explicitly enabled on a bucket, versioning is not enabled by default. Object locking enabled buckets have versioning enabled automatically. Enabling and suspending versioning is done at the bucket level.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/syscall/syscall_darwin.go

    			continue
    		}
    		reclen := int(entry.Reclen)
    		if reclen > len(buf) {
    			// Not enough room. Return for now.
    			// The counter will let us know where we should start up again.
    			// Note: this strategy for suspending in the middle and
    			// restarting is O(n^2) in the length of the directory. Oh well.
    			break
    		}
    		// Copy entry into return buffer.
    		copy(buf, unsafe.Slice((*byte)(unsafe.Pointer(&entry)), reclen))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/batch/v1/generated.proto

      // false to true), the Job controller will delete all active Pods associated
      // with this Job. Users must design their workload to gracefully handle this.
      // Suspending a Job will reset the StartTime field of the Job, effectively
      // resetting the ActiveDeadlineSeconds timer too. Defaults to false.
      //
      // +optional
      optional bool suspend = 10;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    			continue
    		}
    
    		reclen := int(entry.Reclen)
    		if reclen > len(buf) {
    			// Not enough room. Return for now.
    			// The counter will let us know where we should start up again.
    			// Note: this strategy for suspending in the middle and
    			// restarting is O(n^2) in the length of the directory. Oh well.
    			break
    		}
    
    		// Copy entry into return buffer.
    		s := unsafe.Slice((*byte)(unsafe.Pointer(&entry)), reclen)
    		copy(buf, s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/generated.proto

      // false to true), the Job controller will delete all active Pods associated
      // with this Job. Users must design their workload to gracefully handle this.
      // Suspending a Job will reset the StartTime field of the Job, effectively
      // resetting the ActiveDeadlineSeconds timer too. Defaults to false.
      //
      // +optional
      optional bool suspend = 10;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  8. helm-releases/minio-3.4.3.tgz

    "Bucket '$BUCKET' already exists." fi # set versioning for bucket if [ ! -z $VERSIONING ] ; then if [ $VERSIONING = true ] ; then echo "Enabling versioning for '$BUCKET'" ${MC} version enable myminio/$BUCKET elif [ $VERSIONING = false ] ; then echo "Suspending versioning for '$BUCKET'" ${MC} version suspend myminio/$BUCKET fi else echo "Bucket '$BUCKET' versioning unchanged." fi # At this point, the bucket should exist, skip checking for existence # Set policy on the bucket echo "Setting policy of bucket...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 21 20:55:50 UTC 2021
    - 17.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"podReplacementPolicy":    "podReplacementPolicy specifies when to create replacement Pods. Possible values are:...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. pkg/apis/batch/types.go

    	// false to true), the Job controller will delete all active Pods associated
    	// with this Job. Users must design their workload to gracefully handle this.
    	// Suspending a Job will reset the StartTime field of the Job, effectively
    	// resetting the ActiveDeadlineSeconds timer too. Defaults to false.
    	//
    	// +optional
    	Suspend *bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top