Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for outdirs (0.17 sec)

  1. tensorflow/compiler/aot/tests/make_test_graphs.py

      write_graph(tfadd, FLAGS.out_dir)
      write_graph(tfadd_with_ckpt, FLAGS.out_dir)
      write_graph(tfadd_with_ckpt_saver, FLAGS.out_dir)
      write_graph(tfassert_eq, FLAGS.out_dir)
      write_graph(tfcond, FLAGS.out_dir)
      write_graph(tffunction, FLAGS.out_dir)
      write_graph(tfgather, FLAGS.out_dir)
      write_graph(tfmatmul, FLAGS.out_dir)
      write_graph(tfmatmulandadd, FLAGS.out_dir)
      write_graph(tfsplits, FLAGS.out_dir)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. cmd/genyaml/gen_kubectl_yaml.go

    	path := "docs/yaml/kubectl"
    	if len(os.Args) == 2 {
    		path = os.Args[1]
    	} else if len(os.Args) > 2 {
    		fmt.Fprintf(os.Stderr, "usage: %s [output directory]\n", os.Args[0])
    		os.Exit(1)
    	}
    
    	outDir, err := genutils.OutDir(path)
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "failed to get output directory: %v\n", err)
    		os.Exit(1)
    	}
    
    	// Set environment variables used by kubectl so the output is consistent,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/emit.go

    func emitMetaDataToDirectory(outdir string, ml []rtcov.CovMetaBlob) error {
    	ml, err := prepareForMetaEmit()
    	if err != nil {
    		return err
    	}
    	if len(ml) == 0 {
    		return nil
    	}
    
    	metaDataEmitAttempted = true
    
    	s := &emitState{
    		metalist: ml,
    		debug:    os.Getenv("GOCOVERDEBUG") != "",
    		outdir:   outdir,
    	}
    
    	// Open output files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/cmd/covdata/doc.go

    	$
    
    5. Merge profiles together:
    
    	$ go tool covdata merge -i=indir1,indir2 -o=outdir -modpaths=github.com/go-delve/delve
    	$
    
    6. Subtract one profile from another
    
    	$ go tool covdata subtract -i=indir1,indir2 -o=outdir
    	$
    
    7. Intersect profiles
    
    	$ go tool covdata intersect -i=indir1,indir2 -o=outdir
    	$
    
    8. Dump a profile for debugging purposes.
    
    	$ go tool covdata debugdump -i=indir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    // but if a file exists but has old content or isn't a kubeconfig file, this function returns an error.
    func createKubeConfigFileIfNotExists(outDir, filename string, config *clientcmdapi.Config) error {
    	kubeConfigFilePath := filepath.Join(outDir, filename)
    
    	err := validateKubeConfig(outDir, filename, config)
    	if err != nil {
    		// Check if the file exist, and if it doesn't, just write it to disk
    		if !os.IsNotExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    		})
    	}
    }
    
    func TestCreateRenewCSR(t *testing.T) {
    	dir := testutil.SetupTempDir(t)
    	defer os.RemoveAll(dir)
    
    	outdir := filepath.Join(dir, "out")
    
    	if err := os.MkdirAll(outdir, 0755); err != nil {
    		t.Fatalf("couldn't create %s", outdir)
    	}
    
    	if err := pkiutil.WriteCertAndKey(dir, "ca", testCACert, testCAKey); err != nil {
    		t.Fatalf("couldn't write out CA certificate to %s", dir)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/covdata/merge.go

    	flag.PrintDefaults()
    	fmt.Fprintf(os.Stderr, "\nExamples:\n\n")
    	fmt.Fprintf(os.Stderr, "  go tool covdata merge -i=dir1,dir2,dir3 -o=outdir\n\n")
    	fmt.Fprintf(os.Stderr, "  \tmerges all files in dir1/dir2/dir3\n")
    	fmt.Fprintf(os.Stderr, "  \tinto output dir outdir\n")
    	Exit(2)
    }
    
    func (m *mstate) Setup() {
    	if *indirsflag == "" {
    		m.Usage("select input directories with '-i' option")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-process-services/src/main/java/org/gradle/internal/installation/GradleInstallation.java

        }
    
        private static void collectWithSubdirectories(File root, Collection<File> collection) {
            collection.add(root);
            File[] subDirs = root.listFiles(DIRECTORY_FILTER);
            if (subDirs != null) {
                for (File subdirectory : subDirs) {
                    collectWithSubdirectories(subdirectory, collection);
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/scripts/process-log.groovy

            String opName = line.contains('"name": "allOf"') ?  'allOf' : 'anyOf'
            File outDir = opName == 'allOf' ? allOfDir : anyOfDir
            def sorted = sort(line)
            String opNameWithHash = "${opName}-${sorted.hashCode()}"
    
            Counter counter = opCounters[opNameWithHash]
            counter.inc()
    
            File mergeOp = new File(outDir, "${counter.formattedId}-${opName}-${counter.counter}.json")
            if (mergeOp.exists()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

        }
    
        private
        fun collectRootDirs(buildStateRegistry: BuildStateRegistry): MutableSet<File> {
            val rootDirs = mutableSetOf<File>()
            buildStateRegistry.visitBuilds { build ->
                rootDirs.add(build.buildRootDir)
            }
            return rootDirs
        }
    
        /**
         * See [ConfigurationCacheState.writeRootBuildState].
         */
        internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top