Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 105 for heal (0.06 sec)

  1. src/net/http/transport.go

    func (q *wantConnQueue) popFront() *wantConn {
    	if q.headPos >= len(q.head) {
    		if len(q.tail) == 0 {
    			return nil
    		}
    		// Pick up tail as new head, clear tail.
    		q.head, q.headPos, q.tail = q.tail, 0, q.head[:0]
    	}
    	w := q.head[q.headPos]
    	q.head[q.headPos] = nil
    	q.headPos++
    	return w
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        //    executing listeners in the order they were added
        // 3. push all the items onto 'onto' and return the new head of the stack
        Listener head = ATOMIC_HELPER.gasListeners(this, Listener.TOMBSTONE);
        Listener reversedList = onto;
        while (head != null) {
          Listener tmp = head;
          head = head.next;
          tmp.next = reversedList;
          reversedList = tmp;
        }
        return reversedList;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        //    executing listeners in the order they were added
        // 3. push all the items onto 'onto' and return the new head of the stack
        Listener head = ATOMIC_HELPER.gasListeners(this, Listener.TOMBSTONE);
        Listener reversedList = onto;
        while (head != null) {
          Listener tmp = head;
          head = head.next;
          tmp.next = reversedList;
          reversedList = tmp;
        }
        return reversedList;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  4. src/runtime/pprof/pprof_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	heap := 1 << 30
    	if runtime.GOOS == "android" {
    		// Use smaller size for Android to avoid crash.
    		heap = 100 << 20
    	}
    	if runtime.GOOS == "windows" && runtime.GOARCH == "arm" {
    		// Use smaller heap for Windows/ARM to avoid crash.
    		heap = 100 << 20
    	}
    	if testing.Short() {
    		heap = 100 << 20
    	}
    	// This makes fork slower.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    The command line client now starts with 64MB of heap instead of 1GB.
    This may affect builds running directly inside the client VM using `--no-daemon` mode.
    We discourage the use of `--no-daemon`, but if you must use it, you can increase the available memory using the `GRADLE_OPTS` environment variable.
    
    The Gradle daemon now starts with 512MB of heap instead of 1GB.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

            // proceed. So we cannot yet null out each bin.
            E head = oldTable.get(oldIndex);
    
            if (head != null) {
              E next = head.getNext();
              int headIndex = head.getHash() & newMask;
    
              // Single node on list
              if (next == null) {
                newTable.set(headIndex, head);
              } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. src/net/http/fs_test.go

    		}
    	}
    
    	// HEAD request.
    	req.Method = MethodHead
    	resp, body := getBody(t, "HEAD", req, c)
    	if len(body) != 0 {
    		t.Fatalf("body mismatch for HEAD request: got %q, want empty", body)
    	}
    	if got, want := resp.Header.Get("Content-Length"), fmt.Sprint(len(file)); got != want {
    		t.Fatalf("Content-Length mismatch for HEAD request: got %v, want %v", got, want)
    	}
    
    	// Range tests
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

            // proceed. So we cannot yet null out each bin.
            E head = oldTable.get(oldIndex);
    
            if (head != null) {
              E next = head.getNext();
              int headIndex = head.getHash() & newMask;
    
              // Single node on list
              if (next == null) {
                newTable.set(headIndex, head);
              } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/type.go

    		return true
    	}
    	switch t.kind {
    	case TNIL, TIDEAL:
    		return true
    	}
    	return false
    }
    
    // HasPointers reports whether t contains a heap pointer.
    // Note that this function ignores pointers to not-in-heap types.
    func (t *Type) HasPointers() bool {
    	return PtrDataSize(t) > 0
    }
    
    var recvType *Type
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        val request = server.takeRequest()
        assertThat(request.requestLine).isEqualTo("GET /foo HTTP/1.1")
      }
    
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
      fun head(
        protocol: Protocol,
        mockWebServer: MockWebServer,
      ) {
        setUp(protocol, mockWebServer)
        val mockResponse =
          MockResponse.Builder()
            .setHeader("Content-Length", 5)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
Back to top