Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 662 for doPing (0.2 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// a secret in the cluster during the uploadcerts init phase.
    	// The certificate key is a hex encoded string that is an AES key of size 32 bytes.
    	// +optional
    	CertificateKey string `json:"certificateKey,omitempty"`
    
    	// SkipPhases is a list of phases to skip during command execution.
    	// The list of phases can be obtained with the "kubeadm init --help" command.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/Bytes.java

        @Override
        public boolean contains(@CheckForNull Object target) {
          // Overridden to prevent a ton of boxing
          return (target instanceof Byte) && Bytes.indexOf(array, (Byte) target, start, end) != -1;
        }
    
        @Override
        public int indexOf(@CheckForNull Object target) {
          // Overridden to prevent a ton of boxing
          if (target instanceof Byte) {
            int i = Bytes.indexOf(array, (Byte) target, start, end);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. cmd/testdata/xl-meta-merge.zip

    Certain features such as versioning, object locking, and bucket replication require distributed deploying MinIO with Erasure Coding. For extended development and production, deploy MinIO with Erasure Coding enabled - specifically, with a *minimum* of 4 drives per MinIO server. See [MinIO Erasure Code Overview](https://min.io/docs/minio/linux/operations/concepts/erasure-coding.html#) for more complete documentation. ## Install from Source Use the following commands to compile and run a standalone MinIO...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    	if err != nil {
    		scope.Errorf("Error during reconcile. Error: %s", err)
    		return reconcile.Result{}, err
    	}
    	if err := reconciler.SetStatusBegin(); err != nil {
    		scope.Errorf("Error during reconcile, failed to update status to Begin. Error: %s", err)
    		return reconcile.Result{}, err
    	}
    	status, err := reconciler.Reconcile()
    	if err != nil {
    		scope.Errorf("Error during reconcile: %s", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. docs/en/docs/python-types.md

    !!! tip
        If you use Python 3.9 or above, you don't have to import `List` from `typing`, you can use the same regular `list` type instead.
    
    By doing that, your editor can provide support even while processing items from the list:
    
    <img src="/img/python-types/image05.png">
    
    Without types, that's almost impossible to achieve.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Gets the model building listener to notify during the build process.
         *
         * @return The model building listener to notify or {@code null} if none.
         */
        ModelBuildingListener getModelBuildingListener();
    
        /**
         * Sets the model building listener to notify during the build process.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. src/os/signal/signal_cgo_test.go

    	// This test simulates stopping a Go process running in a shell with ^Z
    	// and then resuming with `fg`. This sounds simple, but is actually
    	// quite complicated.
    	//
    	// In principle, what we are doing is:
    	// 1. Creating a new PTY parent/child FD pair.
    	// 2. Create a child that is in the foreground process group of the PTY, and read() from that process.
    	// 3. Stop the child with ^Z.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"maxSurge":       "The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. src/runtime/mstats.go

    	// Statistics about GC overhead.
    	gcMiscSys sysMemStat // updated atomically or during STW
    
    	// Miscellaneous statistics.
    	other_sys sysMemStat // updated atomically or during STW
    
    	// Statistics about the garbage collector.
    
    	// Protected by mheap or worldsema during GC.
    	last_gc_unix    uint64 // last gc (in unix time)
    	pause_total_ns  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/types_test.go

    		wantResult  bool
    	}{
    		{
    			name:        "wildcard event matches with all kinds of coming events",
    			event:       ClusterEvent{Resource: WildCard, ActionType: All},
    			comingEvent: ClusterEvent{Resource: Pod, ActionType: UpdateNodeLabel},
    			wantResult:  true,
    		},
    		{
    			name:        "event with resource = 'Pod' matching with coming events carries same actionType",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
Back to top