Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 862 for JOIN (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/AbstractPropertyUpgradesBinaryCompatibilityCrossVersionSpec.groovy

            """
    
            file("producer/src/main/groovy/SomePlugin.groovy") << """
                ${getDefaultImports().collect { "import " + it }.join("\n")}
                ${additionalImportedClasses().collect { "import " + it.name }.join("\n")}
                ${additionalImports().collect { "import " + it }.join("\n")}
    
                class SomePlugin implements Plugin<Project> {
                    void apply(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/runlit.site.cfg.py

    # tests and intended to only persist temporarily (b/136126535).
    # pylint: disable=undefined-variable
    config.llvm_tools_dir = os.path.join(external_srcdir, 'llvm-project', 'llvm')
    config.mlir_obj_root = os.path.join(real_test_srcdir)
    config.mlir_tools_dir = os.path.join(external_srcdir, 'llvm-project', 'mlir')
    # TODO(jpienaar): Replace with suffices in build rule.
    config.suffixes = ['.td', '.mlir', '.pbtxt']
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/cmd/cover/cfg_test.go

    	tpath := filepath.Join("testdata", "pkgcfg")
    	pkgfiles := []string{filepath.Join(tpath, "noFuncsNoTests", "nfnt.go")}
    	pname := "noFuncsNoTests"
    	mode := "count"
    	gran := "perblock"
    	ppath := "cfg/" + pname
    	tag := mode + "_" + gran
    	instdir := filepath.Join(dir, "inst2")
    	if err := os.Mkdir(instdir, 0777); err != nil {
    		t.Fatal(err)
    	}
    	mdir := filepath.Join(dir, "meta2")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. 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)
  8. cmd/kubeadm/app/cmd/phases/reset/cleanupnode_test.go

    			assertDirEmpty(t, filepath.Join(tmpDir, "manifests"))
    			assertDirEmpty(t, filepath.Join(tmpDir, "pki"))
    			assertDirEmpty(t, filepath.Join(tmpDir, "tmp"))
    
    			// Verify the files as requested by the test:
    			for _, path := range test.verifyExists {
    				assertExists(t, filepath.Join(tmpDir, path))
    			}
    			for _, path := range test.verifyNotExists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 5.1K 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. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    func NewControlPlaneJoinPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "control-plane-join",
    		Short:   "Join a machine as a control plane instance",
    		Example: controlPlaneJoinExample,
    		Phases: []workflow.Phase{
    			{
    				Name:           "all",
    				Short:          "Join a machine as a control plane instance",
    				InheritFlags:   getControlPlaneJoinPhaseFlags("all"),
    				RunAllSiblings: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top