Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for runFmt (0.14 sec)

  1. tensorflow/compiler/mlir/runlit.cfg.py

    from lit.llvm import llvm_config
    from lit.llvm.subst import ToolSubst
    
    # Lint for undefined variables is disabled as config is not defined inside this
    # file, instead config is injected by way of evaluating runlit.cfg.py from
    # runlit.site.cfg.py which in turn is evaluated by lit.py. The structure is
    # common for lit tests and intended to only persist temporarily (b/136126535).
    # pylint: disable=undefined-variable
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/runlit.site.cfg.py

    # Let the main config do the real work.
    lit_config.load_config(
        config,
        os.path.join(
            os.path.join(real_test_srcdir, os.environ['TEST_WORKSPACE'],
                         'tensorflow/compiler/mlir/runlit.cfg.py')))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/cmd/internal/testdir/testdir_test.go

    			names = append(names, name)
    		}
    	}
    	sort.Strings(names)
    	return names
    }
    
    type runCmd func(...string) ([]byte, error)
    
    func compileFile(runcmd runCmd, longname string, flags []string) (out []byte, err error) {
    	cmd := []string{goTool, "tool", "compile", "-e", "-p=p", "-importcfg=" + stdlibImportcfgFile()}
    	cmd = append(cmd, flags...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. src/net/net_windows_test.go

    	}
    	return addrs
    }
    
    func TestInterfaceAddrsWithNetsh(t *testing.T) {
    	checkNetsh(t)
    
    	outIPV4, err := runCmd("netsh", "interface", "ipv4", "show", "address")
    	if err != nil {
    		t.Fatal(err)
    	}
    	outIPV6, err := runCmd("netsh", "interface", "ipv6", "show", "address", "level=verbose")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	ift, err := Interfaces()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. testing/integ-test/src/integTest/groovy/org/gradle/integtests/AntProjectIntegrationTest.groovy

    ant.importBuild(file('build.xml')) { antTaskName ->
        antTaskName == 'b' ? 'ant-b' : antTaskName
    }
    
    task runAnt(dependsOn: 'a')
    """
            inTestDirectory().withTasks('runAnt').run().assertTasksExecutedInOrder(':c', ':ant-b', ':a', ':runAnt')
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    	bn := rb.rune[pos].pos
    	sz := utf8.EncodeRune(rb.byte[bn:], rune(r))
    	rb.rune[pos] = Properties{pos: bn, size: uint8(sz)}
    }
    
    // runeAt returns the rune at position n. It is used for Hangul and recomposition.
    func (rb *reorderBuffer) runeAt(n int) rune {
    	inf := rb.rune[n]
    	r, _ := utf8.DecodeRune(rb.byte[inf.pos : inf.pos+inf.size])
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/cmd/covdata/tool_test.go

    	// Run the new program, emitting output into a new set
    	// of outdirs.
    	runout := [2]string{}
    	for k := 0; k < 2; k++ {
    		runout[k] = filepath.Join(s.dir, fmt.Sprintf("newcovdata%d", k))
    		if err := os.Mkdir(runout[k], 0777); err != nil {
    			t.Fatalf("can't create outdir %s: %v", runout[k], err)
    		}
    		args := []string{}
    		if k != 0 {
    			args = append(args, "foo", "bar")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/BUILD

            "//tensorflow/core/lib/monitoring:cell_reader",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:IR",
        ],
    )
    
    filegroup(
        name = "litfiles",
        srcs = glob(["runlit*py"]),
        visibility = ["//tensorflow:__subpackages__"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/shell.go

    // and returns a non-nil error.
    func (sh *Shell) run(dir string, desc string, env []string, cmdargs ...any) error {
    	out, err := sh.runOut(dir, env, cmdargs...)
    	if desc == "" {
    		desc = sh.fmtCmd(dir, "%s", strings.Join(str.StringList(cmdargs...), " "))
    	}
    	return sh.reportCmd(desc, dir, out, err)
    }
    
    // runOut runs the command given by cmdline in the directory dir.
    // It returns the command output and any errors that occurred.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/gccgo.go

    		f := mkAbs(p.Dir, f)
    		// Overlay files if necessary.
    		// See comment on gctoolchain.gc about overlay TODOs
    		f, _ = fsys.OverlayPath(f)
    		args = append(args, f)
    	}
    
    	output, err = sh.runOut(p.Dir, nil, args)
    	return ofile, output, err
    }
    
    // buildImportcfgSymlinks builds in root a tree of symlinks
    // implementing the directives from importcfg.
    // This serves as a temporary transition mechanism until
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top