Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for targ (0.25 sec)

  1. src/cmd/link/internal/ld/data.go

    		if r.IsMarker() {
    			continue // skip marker relocations
    		}
    		targ := r.Sym()
    		if targ == 0 {
    			continue
    		}
    		if !ctxt.loader.AttrReachable(targ) {
    			if r.Weak() {
    				continue
    			}
    			return fmt.Errorf("dynamic relocation to unreachable symbol %s",
    				ctxt.loader.SymName(targ))
    		}
    		tgot := ctxt.loader.SymGot(targ)
    		if tgot == loadpe.RedirectToDynImportGotToken {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  2. src/cmd/go/internal/work/exec.go

    		switch {
    		case strings.HasSuffix(name, _goos_goarch):
    			targ := file[:len(name)-len(_goos_goarch)] + "_GOOS_GOARCH." + ext
    			if err := sh.CopyFile(objdir+targ, filepath.Join(p.Dir, file), 0666, true); err != nil {
    				return err
    			}
    		case strings.HasSuffix(name, _goarch):
    			targ := file[:len(name)-len(_goarch)] + "_GOARCH." + ext
    			if err := sh.CopyFile(objdir+targ, filepath.Join(p.Dir, file), 0666, true); err != nil {
    				return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/reflect/value.go

    		if x.Kind() == Invalid {
    			panic("reflect: " + op + " using zero Value argument")
    		}
    	}
    	for i := 0; i < n; i++ {
    		if xt, targ := in[i].Type(), t.In(i); !xt.AssignableTo(toRType(targ)) {
    			panic("reflect: " + op + " using " + xt.String() + " as type " + stringFor(targ))
    		}
    	}
    	if !isSlice && isVariadic {
    		// prepare slice for remaining values
    		m := len(in) - n
    		slice := MakeSlice(toRType(t.In(n)), m, m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    	var firstPath string
    	for _, arg := range args {
    		if i := strings.Index(arg, "@"); i >= 0 {
    			firstPath, version = arg[:i], arg[i+1:]
    			if version == "" {
    				return nil, fmt.Errorf("%s: version must not be empty", arg)
    			}
    			break
    		}
    	}
    	patterns := make([]string, len(args))
    	for i, arg := range args {
    		p, found := strings.CutSuffix(arg, "@"+version)
    		if !found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    			}
    			if writeBody {
    				var targ io.WriteCloser = struct {
    					io.Writer
    					io.Closer
    				}{
    					conn,
    					io.NopCloser(nil),
    				}
    				if test.chunked {
    					targ = httputil.NewChunkedWriter(conn)
    				}
    				body := strings.Repeat("A", test.contentLength)
    				_, err = fmt.Fprint(targ, body)
    				if err == nil {
    					err = targ.Close()
    				}
    				if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                                          data_types, outside_compilation_nodes, g,
                                          n);
    
      // In body_graph, create new _Arg/_Retval nodes, and replace lifted arg
      // nodes with the new _Arg nodes.
      std::vector<Node*> lifted_arg_nodes;
      lifted_arg_nodes.reserve(
          lifted_arg_nodes_and_outside_compilation_nodes.size());
      std::transform(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                                                           old_type, arg);
              arg.replaceAllUsesWith(arg_with_original_type);
              // The RAUW replaces the arg with itself, so we need to set it back.
              arg_with_original_type.setOperand(arg);
            }
          }
          new_input_types.push_back(arg.getType());
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      node_builder.Input(inputs);
      return opts.FinalizeBuilder(&node_builder);
    }
    
    Node* ArgOp(int index, DataType type, const GraphDefBuilder::Options& opts) {
      return ops::SourceOp("_Arg",
                           opts.WithAttr("T", type).WithAttr("index", index));
    }
    
    Node* RetOp(int index, ops::NodeOut a, const GraphDefBuilder::Options& opts) {
      if (opts.HaveError()) return nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
Back to top