Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for symname (0.42 sec)

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

    			l.SetSymPkg(s, libpath)
    
    			// The decodetype_* functions in decodetype.go need access to
    			// the type data.
    			sname := l.SymName(s)
    			if strings.HasPrefix(sname, "type:") && !strings.HasPrefix(sname, "type:.") {
    				su.SetData(readelfsymboldata(ctxt, f, &elfsym))
    			}
    		}
    
    		if symname != elfsym.Name {
    			l.SetSymExtname(s, elfsym.Name)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    func (l *Loader) TopLevelSym(s Sym) bool {
    	return topLevelSym(l.SymName(s), l.SymType(s))
    }
    
    // topLevelSym tests a symbol name and kind to determine whether
    // the symbol first class sym (participating in the link) or is an
    // anonymous aux or sub-symbol containing some sub-part or payload of
    // another symbol.
    func topLevelSym(sname string, skind sym.SymKind) bool {
    	if sname != "" {
    		return true
    	}
    	switch skind {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf.go

    			}
    			if !ldr.AttrReachable(rr.Xsym) {
    				ldr.Errorf(s, "unreachable reloc %d (%s) target %v", r.Type(), sym.RelocName(ctxt.Arch, r.Type()), ldr.SymName(rr.Xsym))
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      bool IsInCompsiteFunction(Operation* op) {
        func::FuncOp parent = op->getParentOfType<func::FuncOp>();
        if (!parent) return false;
    
        StringRef sym_name = parent.getSymName();
        return sym_name.starts_with(kQuantizedFuncPrefix) ||
               sym_name.starts_with(kCompositeFuncPrefix);
      }
    
      ModuleOp module_;
      SymbolTable symbol_table_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_utils_test.go

    		},
    	}
    	for _, tc := range testCases {
    		target := &v1.PersistentVolumeClaim{}
    		target.SetOwnerReferences(tc.refs)
    		set := &apps.StatefulSet{}
    		set.SetName("set")
    		set.SetUID("set-uid")
    		pod := &v1.Pod{}
    		pod.SetName("pod")
    		pod.SetUID("pod-uid")
    		set.Spec.PersistentVolumeClaimRetentionPolicy = nil
    		if hasUnexpectedController(target, set, pod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			return err
    		}
    	} else {
    		return fmt.Errorf("invalid patch type: %T", a.patch)
    	}
    
    	patch.SetKind(kind)
    	patch.SetAPIVersion(a.gvr.GroupVersion().String())
    	patch.SetName(a.name)
    	patch.SetNamespace("default")
    
    	_, err := ctx.DynamicClient.
    		Resource(a.gvr).
    		Namespace(patch.GetNamespace()).
    		Apply(
    			context.TODO(),
    			patch.GetName(),
    			patch,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    	}
    	goCmd = appendCompilerFlags(goCmd)
    	if vflag > 0 {
    		goCmd = append(goCmd, "-v")
    	}
    
    	// Force only one process at a time on vx32 emulation.
    	if gohostos == "plan9" && os.Getenv("sysname") == "vx32" {
    		goCmd = append(goCmd, "-p=1")
    	}
    
    	runEnv(workdir, ShowOutput|CheckExit, env, append(goCmd, args...)...)
    }
    
    func checkNotStale(env []string, goBinary string, targets ...string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      auto module = callee->getParentOfType<ModuleOp>();
      name_base += "_resource_lifted";
      auto name = name_base;
      callee = callee.clone();
      callee.setPrivate();
      callee.setName(mlir::StringAttr::get(callee->getContext(), name));
      SymbolTable(module).insert(callee);
      result->lifted_callee = callee;
    
      // Remove unused resources in functions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    func Lstat(path string, stat *Stat_t) (err error) {
    	var statLE Stat_LE_t
    	err = lstat(path, &statLE)
    	copyStat(stat, &statLE)
    	return
    }
    
    // for checking symlinks begins with $VERSION/ $SYSNAME/ $SYSSYMR/ $SYSSYMA/
    func isSpecialPath(path []byte) (v bool) {
    	var special = [4][8]byte{
    		[8]byte{'V', 'E', 'R', 'S', 'I', 'O', 'N', '/'},
    		[8]byte{'S', 'Y', 'S', 'N', 'A', 'M', 'E', '/'},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  10. src/os/os_test.go

    	}
    	return
    }
    
    var sfdir = sysdir.name
    var sfname = sysdir.files[0]
    
    func TestStat(t *testing.T) {
    	t.Parallel()
    
    	path := sfdir + "/" + sfname
    	dir, err := Stat(path)
    	if err != nil {
    		t.Fatal("stat failed:", err)
    	}
    	if !equal(sfname, dir.Name()) {
    		t.Error("name should be ", sfname, "; is", dir.Name())
    	}
    	filesize := size(path, t)
    	if dir.Size() != filesize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top