Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 485 for relativeTo (0.19 sec)

  1. 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)
  2. docs/en/docs/alternatives.md

    ### <a href="https://www.djangoproject.com/" class="external-link" target="_blank">Django</a>
    
    It's the most popular Python framework and is widely trusted. It is used to build systems like Instagram.
    
    It's relatively tightly coupled with relational databases (like MySQL or PostgreSQL), so, having a NoSQL database (like Couchbase, MongoDB, Cassandra, etc) as the main store engine is not very easy.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.gen.go

    	// Description: This EnvoyFilter does not have a priority and has a relative patch operation set which can cause the EnvoyFilter not to be applied. Using the INSERT_FIRST or ADD option or setting the priority may help in ensuring the EnvoyFilter is applied correctly.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. misc/go_android_exec/main.go

    	// directory, which will look something like
    	// "$GOROOT/src/mime/multipart" or "$GOPATH/src/golang.org/x/mobile".
    	// We extract everything after the $GOROOT or $GOPATH to run on the
    	// same relative directory on the target device.
    	importPath, isStd, modPath, modDir, err := pkgPath()
    	if err != nil {
    		return 0, err
    	}
    	var deviceCwd string
    	if isStd {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/AbstractProjectGeneratorTask.groovy

        @Internal
        final Map<File, Template> templates = [:]
    
        AbstractProjectGeneratorTask() {
            super()
        }
    
        @InputFiles
        @PathSensitive(PathSensitivity.RELATIVE)
        FileTree getTemplateDirectories() {
            def allTemplates = rootProjectTemplates + subProjectTemplates
            if (buildSrcTemplate) {
                allTemplates += buildSrcTemplate
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  6. src/internal/pkgbits/decoder.go

    	// bitstreams within elemData.
    	//
    	// For example, element I's bitstream data starts at elemEnds[I-1]
    	// (or 0, if I==0) and ends at elemEnds[I].
    	//
    	// Note: elemEnds is indexed by absolute indices, not
    	// section-relative indices.
    	elemEnds []uint32
    
    	// elemEndsEnds stores the index-offset end positions of relocation
    	// sections within elemEnds.
    	//
    	// For example, section K's end positions start at elemEndsEnds[K-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/internal/precompiled/GeneratePluginAdaptersTask.java

        @Inject
        abstract protected CompileOperationFactory getCompileOperationFactory();
    
        @InputFiles
        @SkipWhenEmpty
        @IgnoreEmptyDirectories
        @PathSensitive(PathSensitivity.RELATIVE)
        abstract DirectoryProperty getExtractedPluginRequestsClassesDirectory();
    
        @OutputDirectory
        abstract DirectoryProperty getPluginAdapterSourcesOutputDirectory();
    
        @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 22:50:50 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiRemoteIntegrationTest.groovy

                 it.newBuild().forTasks("help").run()
            }
    
            then:
            toolingApi.gradleUserHomeDir.file("wrapper/dists/custom-dist").assertIsDir().listFiles().size() == 1
        }
    
        def "supports project-relative distribution download dir"() {
            given:
            server.expect(server.get("/custom-dist.zip").sendFile(distribution.binDistribution))
            file("gradle/wrapper/gradle-wrapper.properties") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. src/debug/dwarf/line.go

    		for {
    			directory := buf.string()
    			if buf.err != nil {
    				return buf.err
    			}
    			if len(directory) == 0 {
    				break
    			}
    			if !pathIsAbs(directory) {
    				// Relative paths are implicitly relative to
    				// the compilation directory.
    				directory = pathJoin(compDir, directory)
    			}
    			r.directories = append(r.directories, directory)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  10. android/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)
Back to top