Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for extld (0.13 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    		switch {
    		case ctxt.IsELF:
    		case ctxt.HeadType == objabi.Hdarwin:
    		case ctxt.HeadType == objabi.Hwindows:
    		case ctxt.HeadType == objabi.Haix:
    			res, err := dwarf.IsDWARFEnabledOnAIXLd(ctxt.extld())
    			if err != nil {
    				Exitf("%v", err)
    			}
    			return res
    		default:
    			return false
    		}
    	}
    
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentResultSerializerTest.groovy

            false
        )
    
        def "serializes"() {
            def componentIdentifier = new DefaultModuleComponentIdentifier(DefaultModuleIdentifier.newId('group', 'module'), 'version')
            def extId = DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId('group', 'external'), '1.0')
            def attributes = AttributeTestUtil.attributesFactory().mutable()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	if ldflags := BuildLdflags.String(); ldflags != "" {
    		// https://go.dev/issue/52372: only include ldflags if -trimpath is not set,
    		// since it can include system paths through various linker flags (notably
    		// -extar, -extld, and -extldflags).
    		//
    		// TODO: since we control cmd/link, in theory we can parse ldflags to
    		// determine whether they may refer to system paths. If we do that, we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

      // Guarded by this.
      private lateinit var publicSuffixListBytes: ByteArray
      private lateinit var publicSuffixExceptionListBytes: ByteArray
    
      /**
       * Returns the effective top-level domain plus one (eTLD+1) by referencing the public suffix list.
       * Returns null if the domain is a public suffix or a private address.
       *
       * Here are some examples:
       *
       * ```java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/jar.go

    // Jar implements the http.CookieJar interface from the net/http package.
    type Jar struct {
    	psList PublicSuffixList
    
    	// mu locks the remaining fields.
    	mu sync.Mutex
    
    	// entries is a set of entries, keyed by their eTLD+1 and subkeyed by
    	// their name/domain/path.
    	entries map[string]map[string]entry
    
    	// nextSeqNum is the next sequence number assigned to a new cookie
    	// created SetCookies.
    	nextSeqNum uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    com.im
    ltd.co.im
    net.im
    org.im
    plc.co.im
    tt.im
    tv.im
    
    // in : https://en.wikipedia.org/wiki/.in
    // see also: https://registry.in/policies
    // Please note, that nic.in is not an official eTLD, but used by most
    // government institutions.
    in
    5g.in
    6g.in
    ac.in
    ai.in
    am.in
    bihar.in
    biz.in
    business.in
    ca.in
    cn.in
    co.in
    com.in
    coop.in
    cs.in
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/trace_viewer_full.html

    IT','Write Cache Hit');this.addL2Counter('mali_hwc_L2_EXT_READ_FULL','ExtRD with BIU Full');this.addL2Counter('mali_hwc_L2_EXT_READ_HALF','ExtRD with BIU >1/2 Full');this.addL2Counter('mali_hwc_L2_EXT_WRITE_FULL','ExtWR with BIU Full');this.addL2Counter('mali_hwc_L2_EXT_WRITE_HALF','ExtWR with BIU >1/2 Full');this.addL2Counter('mali_hwc_L2_EXT_READ','External Read (ExtRD)');this.addL2Counter('mali_hwc_L2_EXT_READ_LINE','ExtRD (linefill)');this.addL2Counter('mali_hwc_L2_EXT_WRITE','External Write...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top