Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,466 for JOIN (0.03 sec)

  1. schema/naming_test.go

    	}
    
    	joinTable := ns.JoinTableName("user_languages")
    	if joinTable != "public.user_languages" {
    		t.Errorf("invalid join table generated, got %v", joinTable)
    	}
    
    	joinTable2 := ns.JoinTableName("UserLanguage")
    	if joinTable2 != "public.user_language" {
    		t.Errorf("invalid join table generated, got %v", joinTable2)
    	}
    
    	tableName := ns.TableName("Company")
    	if tableName != "public.company" {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue May 30 02:00:48 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/installer.go

    		ManifestsPath: filepath.Join(testenv.IstioSrc, "manifests"),
    		Revision:      args.Revision,
    	}
    	if i.ctx.Settings().Ambient {
    		iArgs.InFilenames = append(iArgs.InFilenames, filepath.Join(testenv.IstioSrc, IntegrationTestAmbientDefaultsIOP))
    	}
    	if i.ctx.Settings().PeerMetadataDiscovery && len(args.ComponentName) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. pkg/test/env/istio.go

    	// OtelCollectorInstallFilePath is the OpenTelemetry installation file.
    	OtelCollectorInstallFilePath = path.Join(IstioSrc, getSampleFile("open-telemetry/otel.yaml"))
    
    	// GCEMetadataServerInstallFilePath is the GCE Metadata Server installation file.
    	GCEMetadataServerInstallFilePath = path.Join(IstioSrc, getInstallationFile("gcemetadata/gce_metadata_server.yaml"))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/testdata/generate_chunked_models.py

      prefix = file_io.join(compat.as_str(chunked_dir), "saved_model")
      file_io.write_string_to_file(f"{prefix}.pbtxt", str(saved_model))
      proto_splitter.SavedModelSplitter(saved_model).write(prefix)
    
    
    def main(argv: Sequence[str]) -> None:
      if len(argv) > 1:
        raise app.UsageError("Too many command-line arguments.")
    
      main_dir = os.path.join(SPLITTER_TESTDATA_PATH.value, "chunked_saved_model")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. tests/integration/security/ca_custom_root/main_test.go

    	if err != nil {
    		return err
    	}
    	rootCert, err := cert.LoadCert(path.Join(tmpdir, "root-cert.pem"))
    	if err != nil {
    		return err
    	}
    	clientCert, err := cert.LoadCert(path.Join(tmpdir, "workload-server-naked-foo-cert.pem"))
    	if err != nil {
    		return err
    	}
    	Key, err := cert.LoadCert(path.Join(tmpdir, "workload-server-naked-foo-key.pem"))
    	if err != nil {
    		return err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. pkg/volume/volume_linux_test.go

    				}
    
    				// create a subdirectory with invalid permissions
    				rogueDir := filepath.Join(path, "roguedir")
    				nosgidPerm := info.Mode() &^ os.ModeSetgid
    				err = os.Mkdir(rogueDir, nosgidPerm)
    				if err != nil {
    					return err
    				}
    				return nil
    			},
    			assertFunc: func(path string) error {
    				rogueDir := filepath.Join(path, "roguedir")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/infixOperator.kt

    fun test(bar: String) {
        consume("foo" <expr>join</expr> bar)
    }
    
    infix fun String.join(other: String): String = this + other
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 157 bytes
    - Viewed (0)
  8. platforms/core-runtime/functional/src/main/java/org/gradle/internal/RenderingUtils.java

                    case 1:
                        return stringList.get(0);
                    case 2:
                        return join(" " + conjunction + " ", stringList);
                    default:
                        int bound = stringList.size() - 1;
                        return join(", ", stringList.subList(0, bound)) + ", " + conjunction + " " + stringList.get(bound);
                }
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/join/data.go

    // Package phases includes command line phases for kubeadm join
    package phases
    
    import (
    	"io"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	clientset "k8s.io/client-go/kubernetes"
    	clientcmdapi "k8s.io/client-go/tools/clientcmd/api"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    )
    
    // JoinData is the interface to use for join phases.
    // The "joinData" type from "cmd/join.go" must satisfy this interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/path/filepath/example_unix_test.go

    	// 	dir: "/usr/local//"
    	// 	file: "go"
    }
    
    func ExampleJoin() {
    	fmt.Println("On Unix:")
    	fmt.Println(filepath.Join("a", "b", "c"))
    	fmt.Println(filepath.Join("a", "b/c"))
    	fmt.Println(filepath.Join("a/b", "c"))
    	fmt.Println(filepath.Join("a/b", "/c"))
    
    	fmt.Println(filepath.Join("a/b", "../../../xyz"))
    
    	// Output:
    	// On Unix:
    	// a/b/c
    	// a/b/c
    	// a/b/c
    	// a/b/c
    	// ../xyz
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.4K bytes
    - Viewed (0)
Back to top