Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,547 for Rolling (0.15 sec)

  1. pkg/kubelet/apis/config/types.go

    	KubeletCgroups string
    	// SystemCgroups is absolute name of cgroups in which to place
    	// all non-kernel processes that are not already in a container. Empty
    	// for no container. Rolling back the flag requires a reboot.
    	SystemCgroups string
    	// CgroupRoot is the root cgroup to use for pods.
    	// If CgroupsPerQOS is enabled, this is the root of the QoS cgroup hierarchy.
    	CgroupRoot string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.SystemCgroups, "system-cgroups", c.SystemCgroups, "Optional absolute name of cgroups in which to place all non-kernel processes that are not already inside a cgroup under '/'. Empty for no container. Rolling back the flag requires a reboot.")
    
    	fs.StringVar(&c.ProviderID, "provider-id", c.ProviderID, "Unique identifier for identifying the node in a machine database, i.e cloudprovider")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	}
    	return ok
    }
    
    func (rs *Rows) nextLocked() (doClose, ok bool) {
    	if rs.closed {
    		return false, false
    	}
    
    	// Lock the driver connection before calling the driver interface
    	// rowsi to prevent a Tx from rolling back the connection at the same time.
    	rs.dc.Lock()
    	defer rs.dc.Unlock()
    
    	if rs.lastcols == nil {
    		rs.lastcols = make([]driver.Value, len(rs.rowsi.Columns()))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// K8s rolling update strategy
    	//
    	// Deprecated: Marked as deprecated in pkg/apis/istio/v1alpha1/values_types.proto.
    	RollingMaxSurge *IntOrString `protobuf:"bytes,21,opt,name=rollingMaxSurge,proto3" json:"rollingMaxSurge,omitempty"`
    	// The number of pods that can be unavailable during a rolling update (see
    	// `strategy.rollingUpdate.maxUnavailable` here:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller.go

    	err := dsc.manage(ctx, ds, nodeList, hash)
    	if err != nil {
    		return err
    	}
    
    	// Process rolling updates if we're ready.
    	if dsc.expectations.SatisfiedExpectations(klog.FromContext(ctx), key) {
    		switch ds.Spec.UpdateStrategy.Type {
    		case apps.OnDeleteDaemonSetStrategyType:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    - `kube-apiserver` updated:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

          if (shift_i < 0) shift_i += input_dims_i;
          if (shift_i == 0) continue;
          adjusted_axis.push_back(i);
          adjusted_shift.push_back(shift_i);
        }
    
        // Convert rolling in each dimension to two Slice ops and one Concat op.
        auto axis_type = tensorflow::GetTypeFromTFTensorShape(
            {input_rank}, rewriter.getIntegerType(64));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    		t.Errorf("opens = %d; want >= 9", opens)
    	}
    	if closes < 9 {
    		t.Errorf("closes = %d; want >= 9", closes)
    	}
    }
    
    // TestIssue18429 attempts to stress rolling back the transaction from a
    // context cancel while simultaneously calling Tx.Rollback. Rolling back from a
    // context happens concurrently so tx.rollback and tx.Commit must guard against
    // double entry.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.8.md

    * [stable] Expose storage usage metrics
    
      * The available capacity of a given Persistent Volume (PV) is available by calling the Kubernetes metrics API.
    
    * [stable] Volume plugin metrics
    
      * Success and latency metrics for all Kubernetes calls are available by calling the Kubernetes metrics API. You can request volume operations, including mount, unmount, attach, detach, provision, and delete.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    auto-rejected if they match a webhook with sideEffects == Unknown or Some.\n\nPossible enum values:\n - `\"None\"` means that calling the webhook will have no side effects.\n - `\"NoneOnDryRun\"` means that calling the webhook will possibly have side effects, but if the request being reviewed has the dry-run attribute, the side effects will be suppressed.\n - `\"Some\"` means that calling the webhook will possibly have side effects. If a request with the dry-run attribute would trigger a call to this webhook,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top