Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 213 for Getcwd (0.11 sec)

  1. cluster/images/etcd/migrate/versions.go

    	return v.Major == o.Major && v.Minor == o.Minor
    }
    
    // EtcdStorageVersion identifies the storage version of an etcd data directory.
    type EtcdStorageVersion int
    
    const (
    	storageUnknown EtcdStorageVersion = iota
    	storageEtcd2
    	storageEtcd3
    )
    
    // ParseEtcdStorageVersion parses an etcd storage version string to an EtcdStorageVersion.
    func ParseEtcdStorageVersion(s string) (EtcdStorageVersion, error) {
    	switch s {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/event.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package etcd3
    
    import (
    	"fmt"
    	"go.etcd.io/etcd/api/v3/mvccpb"
    	clientv3 "go.etcd.io/etcd/client/v3"
    )
    
    type event struct {
    	key              string
    	value            []byte
    	prevValue        []byte
    	rev              int64
    	isDeleted        bool
    	isCreated        bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. src/os/executable_solaris.go

    package os
    
    import (
    	"syscall"
    	_ "unsafe" // for linkname
    )
    
    //go:linkname executablePath
    var executablePath string // set by sysauxv in ../runtime/os3_solaris.go
    
    var initCwd, initCwdErr = Getwd()
    
    func executable() (string, error) {
    	path := executablePath
    	if len(path) == 0 {
    		path, err := syscall.Getexecname()
    		if err != nil {
    			return path, err
    		}
    	}
    	if len(path) > 0 && path[0] != '/' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 757 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/linearized_read_test.go

    	// against etcd to, by "go[ing] through the Raft consensus process," result in a higher resource version on
    	// List calls. Today, the mechanism etcd uses to increment the store revision ensures that linearized reads
    	// do *not* bump the key-value store revision. This test exists to ensure that we notice if this implementation
    	// detail ever changes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:08:59 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. pkg/registry/core/rest/storage_core_test.go

    	return ""
    }
    
    func (f fakeStorageFactory) Backends() []storage.Backend {
    	return []storage.Backend{{Server: "etcd-0"}}
    }
    
    func (f fakeStorageFactory) Configs() []storagebackend.Config {
    	return []storagebackend.Config{{Transport: storagebackend.TransportConfig{ServerList: []string{"etcd-0"}}}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 13 08:10:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. .gitignore

    **/.hg*
    
    # Vagrant
    .vagrant
    network_closure.sh
    
    # Local cluster env variables
    /cluster/env.sh
    
    # Compiled binaries in third_party
    /third_party/pkg
    
    # Also ignore etcd installed by hack/install-etcd.sh
    /third_party/etcd*
    /default.etcd
    
    # Also ignore protoc installed by hack/install-protoc.sh
    /third_party/protoc*
    
    # User cluster configs
    .kubeconfig
    
    .tags*
    
    # Version file for dockerized build
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. prow/config/mixedlb-service.yaml

    featureGates:
      MixedProtocolLBService: true
      EndpointSlice: true
    kubeadmConfigPatches:
      - |
        kind: ClusterConfiguration
        metadata:
          name: config
        etcd:
          local:
            # Run etcd in a tmpfs (in RAM) for performance improvements
            dataDir: /tmp/kind-cluster-etcd
        apiServer:
          extraArgs:
            "service-account-issuer": "kubernetes.default.svc"
            "service-account-signing-key-file": "/etc/kubernetes/pki/sa.key"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 02 18:38:35 UTC 2023
    - 801 bytes
    - Viewed (0)
  8. prow/config/default.yaml

    kubeadmConfigPatches:
      - |
        apiVersion: kubeadm.k8s.io/v1beta3
        kind: ClusterConfiguration
        metadata:
          name: config
        etcd:
          local:
            # Run etcd in a tmpfs (in RAM) for performance improvements
            dataDir: /tmp/kind-cluster-etcd
        # We run single node, drop leader election to reduce overhead
        controllerManager:
          extraArgs:
            leader-elect: "false"
        scheduler:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 19:17:14 UTC 2023
    - 1002 bytes
    - Viewed (0)
  9. src/os/executable_darwin.go

    package os
    
    import (
    	"errors"
    	_ "unsafe" // for linkname
    )
    
    //go:linkname executablePath
    var executablePath string // set by ../runtime/os_darwin.go
    
    var initCwd, initCwdErr = Getwd()
    
    func executable() (string, error) {
    	ep := executablePath
    	if len(ep) == 0 {
    		return ep, errors.New("cannot find executable path")
    	}
    	if ep[0] != '/' {
    		if initCwdErr != nil {
    			return ep, initCwdErr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 675 bytes
    - Viewed (0)
  10. internal/config/etcd/help.go

    package etcd
    
    import "github.com/minio/minio/internal/config"
    
    // etcd config documented in default config
    var (
    	defaultHelpPostfix = func(key string) string {
    		return config.DefaultHelpPostfix(DefaultKVS, key)
    	}
    
    	Help = config.HelpKVS{
    		config.HelpKV{
    			Key:         Endpoints,
    			Description: `comma separated list of etcd endpoints` + defaultHelpPostfix(Endpoints),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 27 03:11:37 UTC 2022
    - 2.1K bytes
    - Viewed (0)
Back to top