Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Bainter (0.24 sec)

  1. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // is ready).
      // +optional
      optional int32 minReadySeconds = 4;
    
      // The number of old history to retain to allow rollback.
      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 10.
      // +optional
      optional int32 revisionHistoryLimit = 6;
    }
    
    // DaemonSetStatus represents the current status of a daemon set.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 36.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

      //
      // Users of ClusterTrustBundles, including Kubelet, are free to reorder and
      // deduplicate certificate blocks in this file according to their own logic,
      // as well as to drop PEM block headers and inter-block data.
      optional string trustBundle = 2;
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

    }
    
    // ReplicationControllerSpec is the specification of a replication controller.
    message ReplicationControllerSpec {
      // Replicas is the number of desired replicas.
      // This is a pointer to distinguish between explicit zero and unspecified.
      // Defaults to 1.
      // More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller
      // +optional
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/shared.go

    	scope := log.RegisterScope("controlleruntime", "scope for controller runtime")
    	controllruntimelog.SetLogger(log.NewLogrAdapter(scope))
    }
    
    type Printer interface {
    	Printf(format string, a ...any)
    	Println(string)
    }
    
    func NewPrinterForWriter(w io.Writer) Printer {
    	return &writerPrinter{writer: w}
    }
    
    type writerPrinter struct {
    	writer io.Writer
    }
    
    func (w *writerPrinter) Printf(format string, a ...any) {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apps/v1/generated.proto

      // is ready).
      // +optional
      optional int32 minReadySeconds = 4;
    
      // The number of old history to retain to allow rollback.
      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 10.
      // +optional
      optional int32 revisionHistoryLimit = 6;
    }
    
    // DaemonSetStatus represents the current status of a daemon set.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 34.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // Populated by the system. It can be set only during the creation.
      // +optional
      optional int64 templateGeneration = 5;
    
      // The number of old history to retain to allow rollback.
      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 10.
      // +optional
      optional int32 revisionHistoryLimit = 6;
    }
    
    // DaemonSetStatus represents the current status of a daemon set.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  7. common/config/.golangci-format.yml

      # Default: []
      exclude-files:
        - ".*\\.pb\\.go"
        - ".*\\.gen\\.go"
      # Maximum issues count per one linter.
      # Set to 0 to disable.
      # Default: 50
      max-issues-per-linter: 0
      # Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 05 03:02:37 GMT 2024
    - 2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      // The number of successful finished jobs to retain.
      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 3.
      // +optional
      optional int32 successfulJobsHistoryLimit = 6;
    
      // The number of failed finished jobs to retain.
      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 1.
      // +optional
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5.7K bytes
    - Viewed (0)
  9. common/config/license-lint.yml

    # Public domain: https://github.com/xi2/xz/blob/master/LICENSE
    - github.com/xi2/xz
    
    # Helm is Apache 2.0: https://github.com/helm/helm/blob/master/LICENSE
    # However, it has a bunch of LICENSE test files that our linter fails to understand
    - helm.sh/helm/v3
    
    # https://github.com/pelletier/go-toml/blob/master/LICENSE
    # Uses MIT for everything, except a few files copied from
    # google's civil library that uses Apache 2
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 25 19:26:20 GMT 2023
    - 3.2K bytes
    - Viewed (1)
  10. operator/cmd/mesh/install.go

    func InstallCmd(ctx cli.Context) *cobra.Command {
    	return InstallCmdWithArgs(ctx, &RootArgs{}, &InstallArgs{})
    }
    
    func Install(kubeClient kube.CLIClient, rootArgs *RootArgs, iArgs *InstallArgs, stdOut io.Writer, l clog.Logger, p Printer,
    ) error {
    	kubeClient, client, err := KubernetesClients(kubeClient, l)
    	if err != nil {
    		return err
    	}
    
    	tag, err := GetTagVersion(operatorVer.OperatorVersionString)
    	if err != nil {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 15.2K bytes
    - Viewed (0)
Back to top