Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 90 of 602 for grappe (0.13 seconds)

  1. android/guava/src/com/google/common/graph/PredecessorsFunction.java

     * limitations under the License.
     */
    
    package com.google.common.graph;
    
    import com.google.errorprone.annotations.DoNotMock;
    
    /**
     * A functional interface for <a
     * href="https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)">graph</a>-structured data.
     *
     * <p>This interface is meant to be used as the type of a parameter to graph algorithms (such as
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 4K bytes
    - Click Count (0)
  2. internal/http/response-recorder.go

    package http
    
    import (
    	"bufio"
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"net/http"
    	"time"
    
    	"github.com/klauspost/compress/gzip"
    )
    
    // ResponseRecorder - is a wrapper to trap the http response
    // status code and to record the response body
    type ResponseRecorder struct {
    	http.ResponseWriter
    	io.ReaderFrom
    	StatusCode int
    	// Log body of 4xx or 5xx responses
    	LogErrBody bool
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Mar 30 00:56:02 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/Graph.java

     */
    @Deprecated(since = "4.0.0")
    class Graph {
    
        final Map<String, Set<String>> graph = new LinkedHashMap<>();
    
        synchronized void addEdge(String from, String to) throws CycleDetectedException {
            if (graph.computeIfAbsent(from, l -> new HashSet<>()).add(to)) {
                List<String> cycle = visitCycle(graph, Collections.singleton(to), new HashMap<>(), new LinkedList<>());
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  4. build-logic-settings/build.gradle.kts

    bot-gradle <******@****.***> 1767069054 +0000
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Dec 30 04:30:54 GMT 2025
    - 785 bytes
    - Click Count (0)
  5. build.gradle.kts

      alias(libs.plugins.graalvm) apply false
      alias(libs.plugins.ksp) apply false
      alias(libs.plugins.burst) apply false
      id("okhttp.dokka-multimodule-conventions")
    }
    
    tasks.wrapper {
      distributionType = Wrapper.DistributionType.ALL
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 839 bytes
    - Click Count (1)
  6. container-tests/build.gradle.kts

    Yuri Schimke <******@****.***> 1770283053 +0000
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 1.3K bytes
    - Click Count (1)
  7. okhttp-urlconnection/build.gradle.kts

    Yuri Schimke <******@****.***> 1770157079 +0000
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 595 bytes
    - Click Count (0)
  8. okhttp-brotli/build.gradle.kts

    Yuri Schimke <******@****.***> 1770157079 +0000
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 650 bytes
    - Click Count (0)
  9. okhttp-dnsoverhttps/build.gradle.kts

    Yuri Schimke <******@****.***> 1770157079 +0000
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 761 bytes
    - Click Count (1)
  10. android/guava/src/com/google/common/graph/Network.java

     * "Choosing the right graph type"</a> section of the Guava User Guide for more details.
     *
     * <h3>Capabilities</h3>
     *
     * <p>{@code Network} supports the following use cases (<a
     * href="https://github.com/google/guava/wiki/GraphsExplained#definitions">definitions of
     * terms</a>):
     *
     * <ul>
     *   <li>directed graphs
     *   <li>undirected graphs
     *   <li>graphs that do/don't allow parallel edges
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 17.6K bytes
    - Click Count (0)
Back to Top