Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 456 for linksTo (0.1 sec)

  1. docs/tr/docs/external-links.md

    Hasan Sezer Taşan <******@****.***> 1704814127 +0300
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 15:28:47 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. docs/em/docs/external-links.md

    Sebastián Ramírez <******@****.***> 1697960113 +0400
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Oct 22 07:35:13 UTC 2023
    - 929 bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	// linkedit section, but all the others can be copied directly.
    	linkseg := exem.Segment("__LINKEDIT")
    	if linkseg == nil {
    		return fmt.Errorf("missing __LINKEDIT segment")
    	}
    
    	if _, err := exef.Seek(0, 0); err != nil {
    		return err
    	}
    	if _, err := io.CopyN(outf, exef, int64(linkseg.Offset)); err != nil {
    		return err
    	}
    
    	realdwarf := dwarfm.Segment("__DWARF")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/base/link.go

    		return linksym(prefix, "_", abi)
    	}
    	sep := "."
    	if ReservedImports[prefix] {
    		sep = ":"
    	}
    	return linksym(prefix, prefix+sep+name, abi)
    }
    
    // Linkname returns the linker symbol for the given name as it might
    // appear within a //go:linkname directive.
    func Linkname(name string, abi obj.ABI) *obj.LSym {
    	return linksym("_", name, abi)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/test/groovy/org/gradle/docs/releasenotes/StaticReleaseNotesTest.groovy

            then:
            duplicateIds.empty
        }
    
        def "no broken internal links"() {
            when:
            def brokenAnchorLinks = []
            def links = renderedDocument.select("a")
            def ids = renderedDocument.allElements.findAll { it.id() }*.id()
            def anchors = links.findAll { it.attr("name") }*.attr("name")
    
            links.each {
                def href = it.attr("href")
                if (href.startsWith("#")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ObjectCountLinkedHashMap.java

      }
    
      private int getPredecessor(int entry) {
        return (int) (links[entry] >>> 32);
      }
    
      private int getSuccessor(int entry) {
        return (int) links[entry];
      }
    
      private void setSuccessor(int entry, int succ) {
        long succMask = (~0L) >>> 32;
        links[entry] = (links[entry] & ~succMask) | (succ & succMask);
      }
    
      private void setPredecessor(int entry, int pred) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/staticdata/data.go

    	}
    	funcsymsmu.Unlock()
    
    	return sf.Linksym()
    }
    
    func GlobalLinksym(n *ir.Name) *obj.LSym {
    	if n.Op() != ir.ONAME || n.Class != ir.PEXTERN {
    		base.Fatalf("expected global variable: %v", n)
    	}
    	return n.Linksym()
    }
    
    func WriteFuncSyms() {
    	sort.Slice(funcsyms, func(i, j int) bool {
    		return funcsyms[i].Linksym().Name < funcsyms[j].Linksym().Name
    	})
    	for _, nam := range funcsyms {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_symlink.txt

    # Create a copy of the module using symlinks in src/links.
    mkdir links
    symlink links/go.mod -> $GOPATH/src/go.mod
    symlink links/go.sum -> $GOPATH/src/go.sum
    symlink links/issue.go -> $GOPATH/src/issue.go
    mkdir links/subpkg
    symlink links/subpkg/issue.go -> $GOPATH/src/subpkg/issue.go
    
    # We should see the copy as a valid module root.
    cd links
    go env GOMOD
    stdout links[/\\]go.mod
    go list -m
    stdout golang.org/issue/28107
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

        public boolean hasLink(String name) {
            return links != null && links.containsKey(name);
        }
    
        @Override
        @Nullable
        public ModelNodeInternal getLink(String name) {
            return links == null ? null : links.get(name);
        }
    
        @Override
        public Iterable<? extends ModelNodeInternal> getLinks() {
            return links == null ? Collections.<ModelNodeInternal>emptyList() : links.values();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/tflite-converter-issue.md

    ```
    (You can paste links or attach files by dragging & dropping them below)
    - Provide links to your updated versions of the above two colab notebooks.
    - Provide links to your TensorFlow model and (optionally) TensorFlow Lite Model.
    ```
    
    #### Option B: Paste your code here or provide a link to a custom end-to-end colab
    
    ```
    (You can paste links or attach files by dragging & dropping them below)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 15 03:35:58 UTC 2022
    - 2.1K bytes
    - Viewed (0)
Back to top