Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 420 for pinned (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. guava/src/com/google/common/cache/ReferenceEntry.java

      int getHash();
    
      /** Returns the key for this entry. */
      @CheckForNull
      K getKey();
    
      /*
       * Used by entries that use access order. Access entries are maintained in a doubly-linked list.
       * New entries are added at the tail of the list at write time; stale entries are expired from
       * the head of the list.
       */
    
      /** Returns the time that this entry was last accessed, in ns. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. test/typeparam/list.go

    import (
    	"fmt"
    )
    
    type Ordered interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
    		~float32 | ~float64 |
    		~string
    }
    
    // _List is a linked list of ordered values of type T.
    type _List[T Ordered] struct {
    	next *_List[T]
    	val  T
    }
    
    func (l *_List[T]) Largest() T {
    	var max T
    	for p := l; p != nil; p = p.next {
    		if p.val > max {
    			max = p.val
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. src/container/list/list.go

    // Package list implements a doubly linked list.
    //
    // To iterate over a list (where l is a *List):
    //
    //	for e := l.Front(); e != nil; e = e.Next() {
    //		// do something with e.Value
    //	}
    package list
    
    // Element is an element of a linked list.
    type Element struct {
    	// Next and previous pointers in the doubly-linked list of elements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  10. 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)
Back to top