Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,036 for link66 (0.24 sec)

  1. src/cmd/internal/obj/textflag.go

    // This file defines flags attached to various functions
    // and data objects. The compilers, assemblers, and linker must
    // all agree on these values.
    
    package obj
    
    const (
    	// Don't profile the marked routine.
    	//
    	// Deprecated: Not implemented, do not use.
    	NOPROF = 1
    
    	// It is ok for the linker to get multiple of these symbols. It will
    	// pick one of the duplicates to use.
    	DUPOK = 2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:25:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. test/typeparam/listimp.dir/a.go

    package a
    
    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
    - 1.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ObjectCountLinkedHashMap.java

       * (pointing to the nextEntry 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 "nextEntry" pointer equal to {@code ENDPOINT} is the last node.
       */
      @VisibleForTesting transient long[] links;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedObjectiveCHelloWorldApp.groovy

            return """
                model {
                    binaries {
                        ${binaryName ? binaryName : "all"} {
                            if (targetPlatform.operatingSystem.macOsX) {
                                linker.args "-framework", "Foundation"
                            } else {
                                objcCompiler.args "-I/usr/include/GNUstep", "-I/usr/local/include/objc", "-fconstant-string-class=NSConstantString", "-D_NATIVE_OBJC_EXCEPTIONS"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. test/nosplit.go

    # The linker should accept the test case on systems not explicitly rejected.
    #
    # 64-bit systems do not attempt to execute test cases with frame sizes
    # that are only 32-bit aligned.
    
    # Ordinary function should work
    start 0
    
    # Large frame marked nosplit is always wrong.
    # Frame is so large it overflows cmd/link's int16.
    start 100000 nosplit
    REJECT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CompactLinkedHashMap.java

       * and a node with "next" pointer equal to {@code ENDPOINT} is the last node.
       */
      @CheckForNull @VisibleForTesting transient long[] links;
    
      /** Pointer to the first node in the linked list, or {@code ENDPOINT} if there are no entries. */
      private transient int firstEntry;
    
      /** Pointer to the last node in the linked list, or {@code ENDPOINT} if there are no entries. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateObjectiveCppBaseNamesTestApp.groovy

                        if (targetPlatform.operatingSystem.macOsX) {
                            linker.args "-framework", "Foundation"
                        } else {
                            objcppCompiler.args "-I/usr/include/GNUstep", "-I/usr/local/include/objc", "-fconstant-string-class=NSConstantString", "-D_NATIVE_OBJC_EXCEPTIONS"
                            linker.args "-lgnustep-base", "-lobjc"
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/CreateStaticLibrary.java

        @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)
  9. src/cmd/link/internal/ld/main.go

    	flag.Var(&flagExtld, "extld", "use `linker` when linking in external mode")
    	flag.Var(&flagExtldflags, "extldflags", "pass `flags` to external linker")
    	flag.Var(&flagW, "w", "disable DWARF generation")
    }
    
    // Flags used by the linker. The exported flags are used by the architecture-specific packages.
    var (
    	flagBuildid = flag.String("buildid", "", "record `id` as Go toolchain build id")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. 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)
Back to top