Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 485 for relativeTo (0.35 sec)

  1. src/cmd/link/internal/loadmacho/ldmacho.go

    					// Calculate the addend as the offset into the section.
    					//
    					// The rip-relative offset stored in the object file is encoded
    					// as follows:
    					//
    					//    movsd	0x00000360(%rip),%xmm0
    					//
    					// To get the absolute address of the value this rip-relative address is pointing
    					// to, we must add the address of the next instruction to it. This is done by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    	// module zip file.
    	MaxLICENSE = 16 << 20
    )
    
    // File provides an abstraction for a file in a directory, zip, or anything
    // else that looks like a file.
    type File interface {
    	// Path returns a clean slash-separated relative path from the module root
    	// directory to the file.
    	Path() string
    
    	// Lstat returns information about the file. If the file is a symbolic link,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

            return baseDir.toURI().relativize(toURI());
        }
    
        /**
         * Returns a human-readable relative path to this file from the base directory passed to create this TestFile.
         *
         * Fails if this TestFile was created in a way that did not provide a relative base.
         *
         * @see #relativizeFrom(TestFile)
         * @see java.nio.file.Path#relativize(Path)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/pgen.go

    			// Open-coded defer slots have indices that were assigned
    			// upfront during SSA construction, but the defer statement can
    			// later get removed during deadcode elimination (#61895). To
    			// keep their relative offsets correct, treat them all as used.
    			continue
    		}
    
    		if needAlloc(ln) {
    			ln.SetUsed(false)
    		}
    	}
    
    	for _, l := range f.RegAlloc {
    		if ls, ok := l.(ssa.LocalSlot); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	return s.Serve(ln)
    }
    
    // redirectWithQuery responds with a given redirect code, preserving query
    // parameters in the redirect URL. It does not convert relative paths to
    // absolute paths like http.Redirect does, so that HTTPServerArgs.Handlers can
    // generate relative redirects that work with the external prefixing.
    func redirectWithQuery(path string, code int) http.HandlerFunc {
    	return func(w http.ResponseWriter, r *http.Request) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

        private static final int DEFAULT_MAX_DATA_COUNT =
                Config.getInt( "jcifs.smb1.smb.client.transaction_buf_size",
                        SmbComTransaction.TRANSACTION_BUF_SIZE ) - 512;
    
        // relative to headerStart
        private static final int PRIMARY_SETUP_OFFSET        = 61;
        private static final int SECONDARY_PARAMETER_OFFSET  = 51;
    
        private static final int DISCONNECT_TID      = 0x01;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.5K bytes
    - Viewed (0)
  7. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            fixture.overlappingOutputsAreStillPresent()
    
            where:
            overlappingOutputDir << ['build/outputs', 'build/outputs/child', 'build', 'build/other-output']
        }
    
        def "relative paths canonicalized for cleanup registry"() {
            def fixture = new StaleOutputFixture(buildDir: 'build/../some-dir')
            buildScript(fixture.buildScript)
            fixture.createInputs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. guava/src/com/google/common/eventbus/SubscriberRegistry.java

     */
    @ElementTypesAreNonnullByDefault
    final class SubscriberRegistry {
    
      /**
       * All registered subscribers, indexed by event type.
       *
       * <p>The {@link CopyOnWriteArraySet} values make it easy and relatively lightweight to get an
       * immutable snapshot of all current subscribers to an event without any locking.
       */
      private final ConcurrentMap<Class<?>, CopyOnWriteArraySet<Subscriber>> subscribers =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    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 and 1.1, 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
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package objectpath defines a naming scheme for types.Objects
    // (that is, named entities in Go programs) relative to their enclosing
    // package.
    //
    // Type-checker objects are canonical, so they are usually identified by
    // their address in memory (a pointer), but a pointer has meaning only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top