Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,170 for JOIN (0.05 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/testdata/script/mod_query_empty.txt

    This file is not valid JSON.
    -- $WORK/badproxy/example.com/join/@v/list --
    v1.1.0
    -- $WORK/badproxy/example.com/join/@v/v1.1.0.info --
    {"Version": "v1.1.0"}
    -- $WORK/emptysub/example.com/join/subpkg/@v/list --
    -- $WORK/emptysub/example.com/join/@v/list --
    v1.1.0
    -- $WORK/emptysub/example.com/join/@v/v1.1.0.info --
    {"Version": "v1.1.0"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  9. clause/joins.go

    	RightJoin JoinType = "RIGHT"
    )
    
    // Join clause for from
    type Join struct {
    	Type       JoinType
    	Table      Table
    	ON         Where
    	Using      []string
    	Expression Expression
    }
    
    func (join Join) Build(builder Builder) {
    	if join.Expression != nil {
    		join.Expression.Build(builder)
    	} else {
    		if join.Type != "" {
    			builder.WriteString(string(join.Type))
    			builder.WriteByte(' ')
    		}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Nov 03 13:03:13 UTC 2022
    - 901 bytes
    - Viewed (0)
  10. src/cmd/internal/bootstrap_test/reboot_test.go

    	parent := t.TempDir()
    	dotGit := filepath.Join(parent, ".git")
    	if err := os.Mkdir(dotGit, 000); err != nil {
    		t.Fatal(err)
    	}
    
    	overlayStart := time.Now()
    
    	goroot := filepath.Join(parent, "goroot")
    
    	gorootSrc := filepath.Join(goroot, "src")
    	if err := overlayDir(gorootSrc, filepath.Join(realGoroot, "src")); err != nil {
    		t.Fatal(err)
    	}
    
    	gorootLib := filepath.Join(goroot, "lib")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top