Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 142 for JOIN (0.1 sec)

  1. configure.py

      write_to_bazelrc('test:v1 --test_tag_filters=%s' %
                       ','.join(test_and_build_filters + test_only_filters))
      write_to_bazelrc('test:v1 --build_tag_filters=%s' %
                       ','.join(test_and_build_filters))
      write_to_bazelrc(
          'test:v2 --test_tag_filters=%s' %
          ','.join(test_and_build_filters + test_only_filters + ['-v1only']))
      write_to_bazelrc('test:v2 --build_tag_filters=%s' %
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    		for _, pkg := range pkgs {
    			pkgpath := path.Join("test", strings.TrimSuffix(pkg.files[0], ".go"))
    			cfg += "\npackagefile " + pkgpath + "=" + filepath.Join(tempDir, pkgpath+".a")
    		}
    		filename := filepath.Join(tempDir, "importcfg")
    		err := os.WriteFile(filename, []byte(cfg), 0644)
    		if err != nil {
    			t.Fatal(err)
    		}
    		return filename
    	}
    
    	long := filepath.Join(t.gorootTestDir, t.goFileName())
    	switch action {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          # tensor outputs
          outputs = [
              _get_type_info_from_proto(arg_def) for arg_def in op_def.output_arg
          ]
    
          inputs = ','.join(inputs)
          outputs = ','.join(outputs)
          attrs = ','.join(sorted(derived_attrs.union(attr_names)))
          tfr_funcs.add('{}{}) -> ({}) attributes {{{}}}'.format(
              tfr_func, inputs, outputs, attrs))
        return sorted(list(tfr_funcs))
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  4. cmd/xl-storage_test.go

    	if err = os.Mkdir(slashpath.Join(permDeniedDir, "mybucket"), 0o775); err != nil {
    		t.Fatalf(fmt.Sprintf("Unable to create temporary directory %v. %v", slashpath.Join(permDeniedDir, "mybucket"), err))
    	}
    
    	if err = os.WriteFile(slashpath.Join(permDeniedDir, "mybucket", "myobject"), []byte(""), 0o400); err != nil {
    		t.Fatalf(fmt.Sprintf("Unable to create file %v. %v", slashpath.Join(permDeniedDir, "mybucket", "myobject"), err))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	for _, pkg := range pkgs {
    		dirs = append(dirs, filepath.Join("src", pkg))
    	}
    	dirs = append(dirs,
    		filepath.Join("pkg/tool", goHostOS+"_"+goHostArch),
    		"pkg/include",
    	)
    	for _, copydir := range dirs {
    		srcdir := filepath.Join(testGOROOT, copydir)
    		tg.tempDir(filepath.Join("goroot", copydir))
    		err := filepath.WalkDir(srcdir,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. src/os/os_test.go

    func BenchmarkStatFile(b *testing.B) {
    	benchmarkStat(b, filepath.Join(runtime.GOROOT(), "src/os/os_test.go"))
    }
    
    func BenchmarkStatDir(b *testing.B) {
    	benchmarkStat(b, filepath.Join(runtime.GOROOT(), "src/os"))
    }
    
    func BenchmarkLstatDot(b *testing.B) {
    	benchmarkLstat(b, ".")
    }
    
    func BenchmarkLstatFile(b *testing.B) {
    	benchmarkLstat(b, filepath.Join(runtime.GOROOT(), "src/os/os_test.go"))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    			if com := findImportComment(filepath.Join(dir, info.Name())); com != "" {
    				return com, nil
    			}
    		}
    	}
    	for _, info1 := range list {
    		if info1.IsDir() {
    			files, _ := os.ReadDir(filepath.Join(dir, info1.Name()))
    			for _, info2 := range files {
    				if info2.Type().IsRegular() && strings.HasSuffix(info2.Name(), ".go") {
    					if com := findImportComment(filepath.Join(dir, info1.Name(), info2.Name())); com != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    	// Fetch TLS key and pem files from test-data/ directory.
    	//	dir, _ := os.Getwd()
    	//	testDataDir := filepath.Join(filepath.Dir(dir), "test-data")
    	//
    	//	pemFile := filepath.Join(testDataDir, "server.pem")
    	//	keyFile := filepath.Join(testDataDir, "server.key")
    	cer, err := tls.X509KeyPair(cert, key)
    	if err != nil {
    		t.Fatalf("Failed to load certificate: %v", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    				printSpaces(initPrintNum+printLevel1), strings.Join(nonmatchingSubsets, ","))
    		}
    		fmt.Fprintf(writer, "%sMatching subsets: %s\n",
    			printSpaces(initPrintNum+printLevel1), strings.Join(matchingSubsets, ","))
    		if len(nonmatchingSubsets) > 0 {
    			fmt.Fprintf(writer, "%s(Non-matching subsets %s)\n",
    				printSpaces(initPrintNum+printLevel2), strings.Join(nonmatchingSubsets, ","))
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath.Child("plural"), names.Plural, strings.Join(errs, ",")))
    	}
    	if errs := utilvalidation.IsDNS1035Label(names.Singular); len(names.Singular) > 0 && len(errs) > 0 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("singular"), names.Singular, strings.Join(errs, ",")))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
Back to top