Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 683 for JOIN (0.06 sec)

  1. 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)
  2. 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)
  3. guava-tests/test/com/google/common/base/JoinerTest.java

        try {
          J.join(ITERABLE_NULL);
          fail();
        } catch (NullPointerException expected) {
        }
        try {
          J.join(ITERABLE_1_NULL_2);
          fail();
        } catch (NullPointerException expected) {
        }
    
        try {
          J.join(ITERABLE_NULL.iterator());
          fail();
        } catch (NullPointerException expected) {
        }
        try {
          J.join(ITERABLE_1_NULL_2.iterator());
          fail();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/base/JoinerTest.java

        try {
          J.join(ITERABLE_NULL);
          fail();
        } catch (NullPointerException expected) {
        }
        try {
          J.join(ITERABLE_1_NULL_2);
          fail();
        } catch (NullPointerException expected) {
        }
    
        try {
          J.join(ITERABLE_NULL.iterator());
          fail();
        } catch (NullPointerException expected) {
        }
        try {
          J.join(ITERABLE_1_NULL_2.iterator());
          fail();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. callbacks/query.go

    							}
    						}
    					} else {
    						fromClause.Joins = append(fromClause.Joins, clause.Join{
    							Expression: clause.NamedExpr{SQL: join.Name, Vars: join.Conds},
    						})
    					}
    				} else {
    					fromClause.Joins = append(fromClause.Joins, clause.Join{
    						Expression: clause.NamedExpr{SQL: join.Name, Vars: join.Conds},
    					})
    				}
    			}
    
    			db.Statement.AddClause(fromClause)
    		} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:51:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. tests/joins_test.go

    	}
    
    	var users3 []User
    	DB.Joins("inner join pets on pets.user_id = users.id AND pets.name = ?", user.Pets[0].Name).Joins("join accounts on accounts.user_id = users.id AND accounts.number = ?", user.Account.Number).Where("users.name = ?", user.Name).First(&users3)
    	if len(users3) != 1 {
    		t.Errorf("should find one users using multiple left join conditions, but got %v", len(users3))
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/pgo_inl_test.go

    	if err != nil {
    		t.Fatalf("error getting wd: %v", err)
    	}
    	srcDir := filepath.Join(wd, "testdata/pgo/inline")
    
    	// Copy the module to a scratch location so we can add a go.mod.
    	dir := t.TempDir()
    
    	for _, file := range []string{"inline_hot.go", "inline_hot_test.go", profFile} {
    		if err := copyFile(filepath.Join(dir, file), filepath.Join(srcDir, file)); err != nil {
    			t.Fatalf("error copying %s: %v", file, err)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. pkg/istio-agent/agent_test.go

    			a.ProxyConfig.ProxyMetadata = map[string]string{}
    			a.ProxyConfig.ProxyMetadata[MetadataClientCertChain] = filepath.Join(dir, "cert-chain.pem")
    			a.ProxyConfig.ProxyMetadata[MetadataClientCertKey] = filepath.Join(dir, "key.pem")
    			a.ProxyConfig.ProxyMetadata[MetadataClientRootCert] = filepath.Join(dir, "root-cert.pem")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. src/cmd/link/link_test.go

    	tmpdir := t.TempDir()
    
    	aSrc := filepath.Join("testdata", "testIndexMismatch", "a.go")
    	bSrc := filepath.Join("testdata", "testIndexMismatch", "b.go")
    	mSrc := filepath.Join("testdata", "testIndexMismatch", "main.go")
    	aObj := filepath.Join(tmpdir, "a.o")
    	mObj := filepath.Join(tmpdir, "main.o")
    	exe := filepath.Join(tmpdir, "main.exe")
    
    	importcfgFile := filepath.Join(tmpdir, "runtime.importcfg")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  10. src/path/filepath/path_test.go

    	}
    	if err := os.MkdirAll(filepath.Join(td, "dir2"), 0755); err != nil {
    		t.Fatal(err)
    	}
    
    	touch(t, filepath.Join(td, "dir", "foo1"))
    	touch(t, filepath.Join(td, "dir", "foo2"))
    	touch(t, filepath.Join(td, "dir", "subdir", "foo3"))
    	touch(t, filepath.Join(td, "dir", "foo4"))
    	touch(t, filepath.Join(td, "dir2", "bar"))
    	touch(t, filepath.Join(td, "last"))
    
    	remainingWereSkipped := true
    	walker := func(path string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top