Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 317 for pinned (0.11 sec)

  1. android/guava/src/com/google/common/collect/CompactLinkedHashMap.java

       * high 32 bits of each long is the "prev" pointer, whereas the low 32 bits is the "succ" pointer
       * (pointing to the next entry in the linked list). The pointers in [size(), entries.length) are
       * all "null" (UNSET).
       *
       * <p>A node with "prev" pointer equal to {@code ENDPOINT} is the first node in the linked list,
       * and a node with "next" pointer equal to {@code ENDPOINT} is the last node.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/HierarchicalEclipseProject.java

         * @since 1.0-milestone-3
         */
        DomainObjectSet<? extends EclipseSourceDirectory> getSourceDirectories();
    
        /**
         * Returns the linked resources for this project.
         *
         * @return The linked resources.
         * @since 1.0-milestone-4
         */
        DomainObjectSet<? extends EclipseLinkedResource> getLinkedResources();
    
        /**
         * Returns the project directory for this project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/AbstractLinkTask.java

        }
    
        /**
         * Adds a set of object files to be linked. The provided source object is evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         */
        @Override
        public void source(Object source) {
            this.source.from(source);
        }
    
        /**
         * Adds a set of library files to be linked. The provided libs object is evaluated as per {@link org.gradle.api.Project#files(Object...)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/CreateStaticLibrary.java

        @SkipWhenEmpty
        @IgnoreEmptyDirectories
        @PathSensitive(PathSensitivity.RELATIVE)
        public FileCollection getSource() {
            return source;
        }
    
        /**
         * Adds a set of object files to be linked. <p> The provided source object is evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         */
        @Override
        public void source(Object source) {
            this.source.from(source);
        }
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseLinkedResourceIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    class EclipseLinkedResourceIntegrationTest extends AbstractEclipseIntegrationSpec {
    
        @ToBeFixedForConfigurationCache
        def "can reference linked resources as source folders"() {
            given:
            multiProjectWithSiblingSourceFolders()
            when:
            run("eclipse")
            then:
    
            classpath("projectA").sources[0] == "src"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/CompactLinkedHashMap.java

       * high 32 bits of each long is the "prev" pointer, whereas the low 32 bits is the "succ" pointer
       * (pointing to the next entry in the linked list). The pointers in [size(), entries.length) are
       * all "null" (UNSET).
       *
       * <p>A node with "prev" pointer equal to {@code ENDPOINT} is the first node in the linked list,
       * and a node with "next" pointer equal to {@code ENDPOINT} is the last node.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/flags/flags.go

    	Shared     = flag.Bool("shared", false, "generate code that can be linked into a shared library")
    	Dynlink    = flag.Bool("dynlink", false, "support references to Go symbols defined in other shared libraries")
    	Linkshared = flag.Bool("linkshared", false, "generate code that will be linked against Go shared libraries")
    	AllErrors  = flag.Bool("e", false, "no limit on number of errors reported")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:23 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. src/runtime/cgo_mmap.go

    package runtime
    
    import "unsafe"
    
    // _cgo_mmap is filled in by runtime/cgo when it is linked into the
    // program, so it is only non-nil when using cgo.
    //
    //go:linkname _cgo_mmap _cgo_mmap
    var _cgo_mmap unsafe.Pointer
    
    // _cgo_munmap is filled in by runtime/cgo when it is linked into the
    // program, so it is only non-nil when using cgo.
    //
    //go:linkname _cgo_munmap _cgo_munmap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/embedded_protocol_buffers.h

      // This needs to be linked in to any program that wants to execute any of the
      // expressions in `cpp_shims`.
      string object_file_data;
    };
    
    // Describes a protocol buffer to embed into an object file.
    struct ProtobufToEmbed {
      // `symbol_prefix` is prefix that is guaranteed to be unique across the binary
      // or DSO the generated object file will be linked into.
      string symbol_prefix;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 18:19:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

            ModelNodeInternal linked = getLink(name);
            return linked != null && predicate.apply(linked);
        }
    
        @Override
        public void applyToLink(ModelActionRole type, ModelAction action) {
            if (!getPath().isDirectChild(action.getSubject().getPath())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top