Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 485 for relativeTo (0.23 sec)

  1. android/guava/src/com/google/common/util/concurrent/Striped.java

       * are guaranteed to not deadlock each other.
       *
       * <p>It should be noted that using a {@code Striped<L>} with relatively few stripes, and {@code
       * bulkGet(keys)} with a relative large number of keys can cause an excessive number of shared
       * stripes (much like the birthday paradox, where much fewer than anticipated birthdays are needed
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    	"sort"
    	"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 address of the symbol containing the target, if any;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.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 = new File(new File(basedir, file.getPath()).toURI().normalize()).getAbsoluteFile();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modindex/build.go

    // ran the compiler in the package directory, so any relative -I or -L
    // options would be relative to that directory. In 1.9 we changed to
    // running the compiler in the build directory, to get consistent
    // build results (issue #19964). To keep builds working, we change any
    // relative -I or -L options to be absolute.
    //
    // Using filepath.IsAbs and filepath.Join here means the results will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	prev := prevInfo.Address
    	if prev == curr {
    		return "*"
    	}
    
    	diff := int64(curr - prev)
    	relative := fmt.Sprintf("%+d", diff)
    
    	// Only bother to use the relative address if it is actually shorter.
    	if len(relative) < len(abs) {
    		return relative
    	}
    
    	return abs
    }
    
    // printTree prints a tree-based report in text form.
    func printTree(w io.Writer, rpt *Report) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    ### `available-at` value
    
    This value, nested in `variants`, must contain an object with the following values:
    
    - `url`: The location of the metadata file that describes the variant. A string. In version 1.0, this must be a path relative to the module.
    - `group`: The group of the module. A string
    - `module`: The name of the module. A string
    - `version`: The version of the module. A string
    
    ### `dependencies` value
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. src/go/scanner/scanner.go

    // of the error handler, if there was one installed.
    //
    // Scan adds line information to the file added to the file
    // set with Init. Token positions are relative to that file
    // and thus relative to the file set.
    func (s *Scanner) Scan() (pos token.Pos, tok token.Token, lit string) {
    scanAgain:
    	if s.nlPos.IsValid() {
    		// Return artificial ';' token after /*...*/ comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  8. src/cmd/vet/vet_test.go

    		// But we can't just pass "./rangeloop.go" as the "full name"
    		// argument to errorCheck as it does double duty as both a
    		// string that appears in the output, and as file name
    		// openable relative to the test directory, containing text
    		// expectations.
    		//
    		// So, we munge the file.
    		stderr = strings.ReplaceAll(stderr, filepath.FromSlash("./rangeloop.go"), filename)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. src/os/exec/exec.go

    // methods.
    type Cmd struct {
    	// Path is the path of the command to run.
    	//
    	// This is the only field that must be set to a non-zero
    	// value. If Path is relative, it is evaluated relative
    	// to Dir.
    	Path string
    
    	// Args holds command line arguments, including the command as Args[0].
    	// If the Args field is empty or nil, Run uses {Path}.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/envcmd/env.go

    		}
    		if !filepath.IsAbs(val) && val != "" {
    			return fmt.Errorf("GOPATH entry is relative; must be absolute path: %q", val)
    		}
    	case "GOMODCACHE":
    		if !filepath.IsAbs(val) && val != "" {
    			return fmt.Errorf("GOMODCACHE entry is relative; must be absolute path: %q", val)
    		}
    	case "CC", "CXX":
    		if val == "" {
    			break
    		}
    		args, err := quoted.Split(val)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top