Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,466 for JOIN (0.04 sec)

  1. cmd/kubeadm/app/cmd/util/join.go

    )
    
    var joinCommandTemplate = template.Must(template.New("join").Parse(`` +
    	`kubeadm join {{.ControlPlaneHostPort}} --token {{.Token}} \
    	{{range $h := .CAPubKeyPins}}--discovery-token-ca-cert-hash {{$h}} {{end}}{{if .ControlPlane}}\
    	--control-plane {{if .CertificateKey}}--certificate-key {{.CertificateKey}}{{end}}{{end}}`,
    ))
    
    // GetJoinWorkerCommand returns the kubeadm join command for a given token and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/join.go

    		plugins ("exec"), "tokenFile", and "authProvider". This file can be a
    		local file or downloaded via an HTTPS URL. The forms are
    		kubeadm join --discovery-token abcdef.1234567890abcdef 1.2.3.4:6443,
    		kubeadm join --discovery-file path/to/file.conf, or kubeadm join
    		--discovery-file https://url/file.conf. Only one form can be used. If
    		the discovery information is loaded from a URL, HTTPS must be used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. pkg/kube/krt/join.go

    func (j *join[I]) dump() {
    	log.Errorf("> BEGIN DUMP (join %v)", j.collectionName)
    	for _, c := range j.collections {
    		c.dump()
    	}
    	log.Errorf("< END DUMP (join %v)", j.collectionName)
    }
    
    func (j *join[T]) Synced() Syncer {
    	return channelSyncer{
    		name:   j.collectionName,
    		synced: j.synced,
    	}
    }
    
    // JoinCollection combines multiple Collection[T] into a single
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/errors/join.go

    package errors
    
    import (
    	"unsafe"
    )
    
    // Join returns an error that wraps the given errors.
    // Any nil error values are discarded.
    // Join returns nil if every value in errs is nil.
    // The error formats as the concatenation of the strings obtained
    // by calling the Error method of each element of errs, with a newline
    // between each string.
    //
    // A non-nil error returned by Join implements the Unwrap() []error method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 18:37:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/visitor_test.go

    	testDir := t.TempDir()
    	filePaths := []string{
    		filepath.Join(testDir, "0", "10.yaml"),
    		filepath.Join(testDir, "0", "a", "10.yaml"),
    		filepath.Join(testDir, "02.yaml"),
    		filepath.Join(testDir, "10.yaml"),
    		filepath.Join(testDir, "2.yaml"),
    		filepath.Join(testDir, "AB.yaml"),
    		filepath.Join(testDir, "a", "a.yaml"),
    		filepath.Join(testDir, "a", "b.json"),
    		filepath.Join(testDir, "a.yaml"),
    		filepath.Join(testDir, "aa.yaml"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. pkg/volume/util/subpath/subpath_linux_test.go

    				if err := os.MkdirAll(filepath.Join(base, "test1"), defaultPerm); err != nil {
    					return err
    				}
    				if err := os.MkdirAll(filepath.Join(base, "test2"), defaultPerm); err != nil {
    					return err
    				}
    				if err := os.Symlink(filepath.Join(base, "test2"), filepath.Join(base, "test1/dir")); err != nil {
    					return err
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 16:52:55 UTC 2021
    - 37.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    				"--service-account-key-file=" + filepath.Join(testCertsDir, "sa.pub"),
    				"--service-account-signing-key-file=" + filepath.Join(testCertsDir, "sa.key"),
    				"--service-account-issuer=https://kubernetes.default.svc.cluster.local",
    				"--client-ca-file=" + filepath.Join(testCertsDir, "ca.crt"),
    				"--tls-cert-file=" + filepath.Join(testCertsDir, "apiserver.crt"),
    				"--tls-private-key-file=" + filepath.Join(testCertsDir, "apiserver.key"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. src/errors/join_test.go

    	"errors"
    	"reflect"
    	"testing"
    )
    
    func TestJoinReturnsNil(t *testing.T) {
    	if err := errors.Join(); err != nil {
    		t.Errorf("errors.Join() = %v, want nil", err)
    	}
    	if err := errors.Join(nil); err != nil {
    		t.Errorf("errors.Join(nil) = %v, want nil", err)
    	}
    	if err := errors.Join(nil, nil); err != nil {
    		t.Errorf("errors.Join(nil, nil) = %v, want nil", err)
    	}
    }
    
    func TestJoin(t *testing.T) {
    	err1 := errors.New("err1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 17 21:48:12 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_getters_test.go

    	exp = filepath.Join(root, "plugins/foobar")
    	assert.Equal(t, exp, got)
    
    	got = kubelet.getPodDir("abc123")
    	exp = filepath.Join(root, "pods/abc123")
    	assert.Equal(t, exp, got)
    
    	got = kubelet.getPodVolumesDir("abc123")
    	exp = filepath.Join(root, "pods/abc123/volumes")
    	assert.Equal(t, exp, got)
    
    	got = kubelet.getPodVolumeDir("abc123", "plugin", "foobar")
    	exp = filepath.Join(root, "pods/abc123/volumes/plugin/foobar")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. clause/joins_test.go

    			name: "RIGHT JOIN",
    			join: clause.Join{
    				Type:  clause.RightJoin,
    				Table: clause.Table{Name: "user"},
    				ON: clause.Where{
    					Exprs: []clause.Expression{clause.Eq{clause.Column{Table: "user_info", Name: "user_id"}, clause.PrimaryColumn}},
    				},
    			},
    			sql: "RIGHT JOIN `user` ON `user_info`.`user_id` = `users`.`id`",
    		},
    		{
    			name: "INNER JOIN",
    			join: clause.Join{
    				Type:  clause.InnerJoin,
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Nov 03 13:03:13 UTC 2022
    - 2.6K bytes
    - Viewed (0)
Back to top