Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 485 for relativeTo (0.16 sec)

  1. src/cmd/go/internal/work/shell.go

    // output is expected to contain references to 'dir', usually the source
    // directory for the package that has failed to build. reportCmd rewrites
    // mentions of dir with a relative path to dir when the relative path is
    // shorter. This is usually more pleasant. For example, if fmt doesn't compile
    // and we are in src/html, the output is
    //
    //	$ go build
    //	# fmt
    //	../fmt/print.go:1090: undefined: asdf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/amd64/asm.go

    	case objabi.R_CALL:
    		v |= 1 << 24 // pc-relative bit
    		v |= ld.MACHO_X86_64_RELOC_BRANCH << 28
    
    		// NOTE: Only works with 'external' relocation. Forced above.
    	case objabi.R_PCREL:
    		v |= 1 << 24 // pc-relative bit
    		v |= ld.MACHO_X86_64_RELOC_SIGNED << 28
    	case objabi.R_GOTPCREL:
    		v |= 1 << 24 // pc-relative bit
    		v |= ld.MACHO_X86_64_RELOC_GOT_LOAD << 28
    	}
    
    	switch r.Size {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

                } else if (file.getPath().startsWith(File.separator)) {
                    // drive-relative Windows path, don't align with project directory but with drive root
                    file = file.getAbsoluteFile();
                } else {
                    // an ordinary relative path, align with project directory
                    file = basedir.resolve(file.getPath())
                            .normalize()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    	"math"
    	"strings"
    )
    
    // GoSyntax returns the Go assembler syntax for the instruction.
    // The syntax was originally defined by Plan 9.
    // The pc is the program counter of the instruction, used for expanding
    // PC-relative addresses into absolute ones.
    // The symname function queries the symbol table for the program
    // being disassembled. Given a target address it returns the name and base
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

        /**
         * Extra files that should be copied into the root directory
         *
         * These files do not have any filtering/expanding done to them.
         */
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputFiles
        final ConfigurableFileCollection resources = project.objects.fileCollection()
    
        /**
         * @return names of all generated subprojects
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  6. src/syscall/fs_wasip1.go

    // Current working directory. We maintain this as a string and resolve paths in
    // the code because wasmtime does not allow relative path lookups outside of the
    // scope of a directory; a previous approach we tried consisted in maintaining
    // open a file descriptor to the current directory so we could perform relative
    // path lookups from that location, but it resulted in breaking path resolution
    // from the current directory to its parent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

                } else {
                    throw GradleException(errorMessage)
                }
            }
        }
    
        /**
         * Returns non-empty directories: the mapping of directory to at most 4 leftover files' relative path in the directory.
         */
        private
        fun TestFilesCleanupProjectState.tmpTestFiles(): LeftoverFiles = projectBuildDir.get().asFile.resolve("tmp/teŝt files")
            .listFiles()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:19:47 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/AbstractScalaCompile.java

            }
            return analysisMap;
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        // Java source files are supported, too. Therefore, we should care about the relative path.
        @PathSensitive(PathSensitivity.RELATIVE)
        public FileTree getSource() {
            return super.getSource();
        }
    
        /**
         * The Java major version of the JVM the Scala compiler is running on.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/Dfs.java

                    SmbTransport trans = null;
    
                    root = root.toLowerCase();
    
                    /* The link entries contain maps of referrals by path representing DFS links.
                     * Note that paths are relative to the root like "\" and not "\example.com\root".
                     */
                    CacheEntry links = (CacheEntry)roots.get(root);
                    if (links != null && now > links.expiration) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

            }
        }
    
        /**
         * Returns the path of target relative to base.
         *
         * @param target target file or directory
         * @param base base directory
         * @return the path of target relative to base.
         */
        public static String relativePathOf(File target, File base) {
            String separatorChars = "/" + File.separator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top