Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for reloctab (0.11 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/UnexportMainSymbol.java

        private final ConfigurableFileCollection source = getProject().files();
        private final DirectoryProperty outputDirectory = getProject().getObjects().directoryProperty();
    
        /**
         * The object files to relocate.
         *
         * @since 4.5
         */
        @InputFiles
        @SkipWhenEmpty
        @IgnoreEmptyDirectories
        @PathSensitive(PathSensitivity.NAME_ONLY)
        public ConfigurableFileCollection getObjects() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/DirectorySnapshot.java

            AtomicBoolean alreadyFoundASymlink = new AtomicBoolean(false);
            children.stream()
                .map(child -> child.getValue().relocate(targetPath + File.separatorChar + child.getPath(), interner)
                    .map(relocatedSnapshot -> new ChildMap.Entry<FileSystemLocationSnapshot>(child.getPath(), relocatedSnapshot)))
                .forEach(relocatedChild -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultFileSystemAccess.java

            write(ImmutableList.of(sourceLocation, targetLocation), () -> {
                Files.move(Paths.get(sourceLocation), Paths.get(targetLocation), ATOMIC_MOVE);
                sourceSnapshot.relocate(targetLocation, stringInterner)
                    .ifPresent(this::record);
            });
        }
    
        @Override
        public void onDefaultExcludesChanged(List<String> excludes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_save_function_ops_to_main.cc

      Block& save_func_body = src_graph_op.GetBody();
      for (Operation& op : save_func_body.without_terminator()) {
        main_body.push_back(op.clone(mapper));
      }
    
      // Relocate the main function's FetchOp to the last.
      main_body.push_back(main_fetch_op->clone(mapper));
      main_fetch_op.erase();
    
      auto cloned_fetch_op = cast<FetchOp>(src_graph_op.GetFetch()->clone(mapper));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

      Block& main_body = main_graph_op.GetBody();
      Block& src_body = src_graph_op.GetBody();
      for (Operation& op : src_body.without_terminator()) {
        main_body.push_back(op.clone(mapper));
      }
    
      // Relocate the main function's FetchOp at the last.
      main_body.push_back(main_fetch_op->clone(mapper));
    
      // Clone the source's FetchOp, but do not push to the main function's body.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    		sh.Off = sect.Seg.Fileoff + sect.Vaddr - sect.Seg.Vaddr
    	}
    
    	return sh
    }
    
    func elfshreloc(arch *sys.Arch, sect *sym.Section) *ElfShdr {
    	// If main section is SHT_NOBITS, nothing to relocate.
    	// Also nothing to relocate in .shstrtab or notes.
    	if sect.Vaddr >= sect.Seg.Vaddr+sect.Seg.Filelen {
    		return nil
    	}
    	if sect.Name == ".shstrtab" || sect.Name == ".tbss" {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/runtime/stubs.go

    // frame being asked about.
    //
    // The result of getcallersp is correct at the time of the return,
    // but it may be invalidated by any subsequent call to a function
    // that might relocate the stack in order to grow or shrink it.
    // A general rule is that the result of getcallersp should be used
    // immediately and can only be passed to nosplit functions.
    
    //go:noescape
    func getcallerpc() uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ppc64/asm.go

    		return 0, false // Invalid register number, or non-zero addend. Not an abi func.
    	}
    
    	// tname is a valid relocation to an ABI defined register save/restore function. Re-relocate
    	// them to a go version of these functions in runtime/asm_ppc64x.s
    	ts := ldr.LookupOrCreateSym("runtime.elf_"+s[1], 0)
    	r.SetSym(ts)
    	r.SetAdd(int64((n - minReg) * offMul))
    	firstUse = !ldr.AttrReachable(ts)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/macho.go

    		size += ldr.SymSize(s7)
    	}
    
    	return Rnd(size, *FlagRound)
    }
    
    func machorelocsect(ctxt *Link, out *OutBuf, sect *sym.Section, syms []loader.Sym) {
    	// If main section has no bits, nothing to relocate.
    	if sect.Vaddr >= sect.Seg.Vaddr+sect.Seg.Filelen {
    		return
    	}
    	ldr := ctxt.loader
    
    	for i, s := range syms {
    		if !ldr.AttrReachable(s) {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  10. src/runtime/stack.go

    func round2(x int32) int32 {
    	s := uint(0)
    	for 1<<s < x {
    		s++
    	}
    	return 1 << s
    }
    
    // Called from runtime·morestack when more stack is needed.
    // Allocate larger stack and relocate to new stack.
    // Stack growth is multiplicative, for constant amortized cost.
    //
    // g->atomicstatus will be Grunning or Gscanrunning upon entry.
    // If the scheduler is trying to stop this g, then it will set preemptStop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top