Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for noSpan (0.3 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/map.go

    	upperFunc = []struct {
    		upper mapFunc
    		span  spanFunc
    	}{
    		{nil, nil},                  // und
    		{nil, nil},                  // af
    		{aztrUpper(upper), isUpper}, // az
    		{elUpper, noSpan},           // el
    		{ltUpper(upper), noSpan},    // lt
    		{nil, nil},                  // nl
    		{aztrUpper(upper), isUpper}, // tr
    	}
    
    	undUpper            transform.SpanningTransformer = &undUpperCaser{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. src/runtime/slice.go

    	// For goarch.PtrSize, compiler will optimize division/multiplication into a shift by a constant.
    	// For powers of 2, use a variable shift.
    	noscan := !et.Pointers()
    	switch {
    	case et.Size_ == 1:
    		lenmem = uintptr(oldLen)
    		newlenmem = uintptr(newLen)
    		capmem = roundupsize(uintptr(newcap), noscan)
    		overflow = uintptr(newcap) > maxAlloc
    		newcap = int(capmem)
    	case et.Size_ == goarch.PtrSize:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/ConnectionCoalescingTest.kt

        val nonsanUrl = url.newBuilder().host("nonsan.com").build()
        assertFailsWith<SSLPeerUnverifiedException> {
          execute(nonsanUrl)
        }
      }
    
      @Test
      fun skipsOnRedirectWhenNotSubjectAltName() {
        server.enqueue(
          MockResponse.Builder()
            .code(301)
            .addHeader("Location", url.newBuilder().host("nonsan.com").build())
            .build(),
        )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. src/runtime/mcache.go

    	c.scanAlloc = 0
    
    	c.alloc[spc] = s
    }
    
    // allocLarge allocates a span for a large object.
    func (c *mcache) allocLarge(size uintptr, noscan bool) *mspan {
    	if size+_PageSize < size {
    		throw("out of memory")
    	}
    	npages := size >> _PageShift
    	if size&_PageMask != 0 {
    		npages++
    	}
    
    	// Deduct credit for this span allocation and sweep if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/runtime/arena.go

    //
    // The sweeper handles moving chunks out of this quarantine state to be ready for
    // reuse. When the chunk is placed into the quarantine state, its corresponding
    // span is marked as noscan so that the GC doesn't try to scan memory that would
    // cause a fault.
    //
    // At the next layer are the user arenas themselves. They consist of a single
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

            String errorMessage = report.getSummary();
            String htmlReport = new ConsoleRenderer().asClickableFileUrl(report.getHtmlReport());
            errorMessage += "\n\nOpen this report for more details: " + htmlReport;
            return errorMessage;
        }
    
        @Override
        public ResolvedArtifactResult verifiedArtifact(ResolvedArtifactResult artifact) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. .space/CODEOWNERS

    # OWNER_LIST: Zalim.Bashorov
    # OWNER_LIST: Ilya.Goncharov Artem.Kobzar
    # OWNER_LIST: Simon.Ogorodnik Stanislav.Erokhin
    # OWNER_LIST: Alexander.Shabalin Aleksei.Glushko Sergey.Bogolepov Svyatoslav.Scherbina
    # OWNER_LIST: Brian.Norman
    # OWNER_LIST: Sergej.Jaskiewicz
    # OWNER_LIST: Wojciech.Litewka
    # Kotlin Libraries
    # OWNER_LIST: A.Qurbonzoda Vsevolod.Tolstopyato Ilya.Gorbunov Sergey.Shanshin Leonid.Startsev Filipp.Zhinkin
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (2)
  8. src/crypto/tls/bogo_config.json

            "TLS-ECH-Client-Reject-EarlyDataRejected": "We don't support switiching out ECH configs with this level of granularity",
    
            "TLS-ECH-Client-NoNPN": "We don't support NPN",
    
            "TLS-ECH-Client-ChannelID": "We don't support sending channel ID",
            "TLS-ECH-Client-Reject-NoChannelID-TLS13": "We don't support sending channel ID",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. src/runtime/mfinal.go

    		if isGoPointerWithoutSpan(e.data) {
    			return
    		}
    		throw("runtime.SetFinalizer: pointer not in allocated block")
    	}
    
    	// Move base forward if we've got an allocation header.
    	if !span.spanclass.noscan() && !heapBitsInSpan(span.elemsize) && span.spanclass.sizeclass() != 0 {
    		base += mallocHeaderSize
    	}
    
    	if uintptr(e.data) != base {
    		// As an implementation detail we allow to set finalizers for an inner byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/cmd/cover/cover_test.go

    	run(cmd, t)
    
    	cmd = testenv.Command(t, testcover(t), "-mode=set", "-var=Not_an-identifier", "-o", coverOutput, coverInput)
    	err = cmd.Run()
    	if err == nil {
    		t.Error("Expected cover to fail with an error")
    	}
    
    	// Copy testmain to tmpdir, so that it is in the same directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top