Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,356 for bework (0.18 sec)

  1. docs/contribute/concurrency.md

    #### Blocking APIs
    
    Blocking APIs are convenient because you get top-to-bottom procedural code without indirection. Network calls work like regular method calls: ask for data and it is returned. If the request fails, you get a stacktrace right where the call was made.
    
    Blocking APIs may be inefficient because you hold a thread idle while waiting on the network. Threads are expensive because they have both a memory overhead and a context-switching overhead.
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 16:35:36 GMT 2022
    - 7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/graph/DefaultNetworkImplementationsTest.java

        network.addEdge(N1, N1, E11);
        network.addEdge(N1, N1, E11_A);
        assertThat(network.edgesConnecting(N1, N1)).containsExactly(E11, E11_A);
      }
    
      private static class NetworkForTest<N, E> extends AbstractNetwork<N, E> {
        private final Network<N, E> network;
    
        NetworkForTest(Network<N, E> network) {
          this.network = network;
        }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 7.4K bytes
    - Viewed (0)
  3. src/README.vendor

    in GOROOT/src.
    
    Maintaining vendor directories
    ==============================
    
    Before updating vendor directories, ensure that module mode is enabled.
    Make sure that GO111MODULE is not set in the environment, or that it is
    set to 'on' or 'auto', and if you use a go.work file, set GOWORK=off.
    
    Requirements may be added, updated, and removed with 'go get'.
    The vendor directory may be updated with 'go mod vendor'.
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 02 02:20:05 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/Graphs.java

      /**
       * Returns a view of {@code network} with the direction (if any) of every edge reversed. All other
       * properties remain intact, and further updates to {@code network} will be reflected in the view.
       */
      public static <N, E> Network<N, E> transpose(Network<N, E> network) {
        if (!network.isDirected()) {
          return network; // the transpose of an undirected network is an identical network
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  5. common/scripts/kind_provisioner.sh

      ITER_END=$((NUM_CLUSTERS-1))
      for i in $(seq 0 "$ITER_END"); do
        for j in $(seq 0 "$ITER_END"); do
          if [[ "${j}" -gt "${i}" ]]; then
            NETWORK_ID_I="${CLUSTER_NETWORK_ID[i]}"
            NETWORK_ID_J="${CLUSTER_NETWORK_ID[j]}"
            if [[ "$NETWORK_ID_I" == "$NETWORK_ID_J" ]]; then
              POD_TO_POD_AND_SERVICE_CONNECTIVITY=1
            else
              POD_TO_POD_AND_SERVICE_CONNECTIVITY=0
            fi
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
  6. docs/en/docs/async.md

    You stand in line while several (let's say 8) cashiers that at the same time are cooks take the orders from the people in front of you.
    
    Everyone before you is waiting for their burgers to be ready before leaving the counter because each of the 8 cashiers goes and prepares the burger right away before getting the next order.
    
    <img src="/img/async/parallel-burgers/parallel-burgers-01.png" class="illustration">
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/graph/GraphPropertiesTest.java

        for (MutableNetwork<Integer, String> network : networksToTest) {
          network.addEdge(1, 2, "1-2a");
          network.addEdge(1, 2, "1-2b");
        }
        assertThat(hasCycle(directedNetwork)).isFalse();
        assertThat(hasCycle(undirectedNetwork)).isTrue(); // cyclic in undirected case
      }
    
      @Test
      public void hasCycle_cyclicMultigraph() {
        for (MutableNetwork<Integer, String> network : networksToTest) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 19 21:11:54 GMT 2017
    - 5.7K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java

            // file. Ideally, we'd do full pattern-evaluation against the sysprops, but this
            // is a first step. There are several replacements below, in order to normalize
            // the path character before we operate on the string as a regex input, and
            // in order to avoid surprises with the File construction...
            // -------------------------------------------------------------------------------------
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/EventListener.kt

     * to mutate the event parameters, or be re-entrant back into the client. Any IO - writing to files
     * or network should be done asynchronously.
     */
    abstract class EventListener {
      /**
       * Invoked as soon as a call is enqueued or executed by a client. In case of thread or stream
       * limits, this call may be executed well before processing the request is able to begin.
       *
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  10. manifests/charts/base/crds/crd-all.gen.yaml

                          description: The locality associated with the endpoint.
                          type: string
                        network:
                          description: Network enables Istio to group endpoints resident
                            in the same L3 domain/network.
                          type: string
                        ports:
                          additionalProperties:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
Back to top