Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for runFmt (0.09 sec)

  1. 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)
  2. tensorflow/c/c_api_function_test.cc

      }
    
      // Run the host graph, which now contains a function and check that
      // outputs are as expected.
      // 'T' stands for 'tensor' since the outputs are tensors, not scalars.
      void RunT(const std::vector<std::pair<TF_Operation*, TF_Tensor*>>& inputs,
                std::initializer_list<TF_Output> outputs,
                const std::vector<std::vector<int32_t>>& expected_results) {
        // Create a session for this graph
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    	return err
    }
    
    func (b *dFlag) String() string { return "" }
    
    func init() {
    	work.AddBuildFlags(CmdGet, work.OmitModFlag)
    	CmdGet.Run = runGet // break init loop
    	CmdGet.Flag.Var(&getD, "d", "")
    	CmdGet.Flag.Var(&getU, "u", "")
    }
    
    func runGet(ctx context.Context, cmd *base.Command, args []string) {
    	switch getU.version {
    	case "", "upgrade", "patch":
    		// ok
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top