Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for begreep (0.18 sec)

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

          @Override
          public Set<N> successors(N node) {
            return AbstractNetwork.this.successors(node);
          }
    
          // DO NOT override the AbstractGraph *degree() implementations.
        };
      }
    
      @Override
      public int degree(N node) {
        if (isDirected()) {
          return IntMath.saturatedAdd(inEdges(node).size(), outEdges(node).size());
        } else {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Mar 13 18:17:09 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  2. .github/workflows/update-rbe.yml

              # returned by the API, but a sha256sum of the entire chunk of image
              # metadata. gcr.io helpfully includes it in the header of the response
              # as docker-content-digest: sha256:[digest]. Note we use egrep to
              # match exactly sha256:<hash> because curl may include a ^M symbol at
              # the end of the line.
    Others
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 10 15:40:34 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/graph/ValueGraphTest.java

          assertThat(graph.predecessors(node)).isEqualTo(asGraph.predecessors(node));
          assertThat(graph.successors(node)).isEqualTo(asGraph.successors(node));
          assertThat(graph.degree(node)).isEqualTo(asGraph.degree(node));
          assertThat(graph.inDegree(node)).isEqualTo(asGraph.inDegree(node));
          assertThat(graph.outDegree(node)).isEqualTo(asGraph.outDegree(node));
    
          for (Integer otherNode : graph.nodes()) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 06 18:35:19 GMT 2024
    - 20K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/authentication/v1/generated.proto

      // audiences of the token, and otherwise should reject the token. A
      // token issued for multiple audiences may be used to authenticate
      // against any of the audiences listed but implies a high degree of
      // trust between the target audiences.
      repeated string audiences = 1;
    
      // ExpirationSeconds is the requested duration of validity of the request. The
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  5. common/Makefile.common.mk

    # help works by looking over all Makefile includes matching `target: ## comment` regex and outputting them
    help: ## Show this help
    	@egrep -h '^[a-zA-Z_\.-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort  | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Mar 02 20:07:36 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  6. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    00AE          ; valid                  ;      ; NV8    # 1.1  REGISTERED SIGN
    00AF          ; disallowed_STD3_mapped ; 0020 0304     # 1.1  MACRON
    00B0..00B1    ; valid                  ;      ; NV8    # 1.1  DEGREE SIGN..PLUS-MINUS SIGN
    00B2          ; mapped                 ; 0032          # 1.1  SUPERSCRIPT TWO
    00B3          ; mapped                 ; 0033          # 1.1  SUPERSCRIPT THREE
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Feb 10 11:25:47 GMT 2024
    - 854.1K bytes
    - Viewed (2)
  7. common-protos/k8s.io/api/core/v1/generated.proto

    }
    
    // TopologySpreadConstraint specifies how to spread matching pods among the given topology.
    message TopologySpreadConstraint {
      // MaxSkew describes the degree to which pods may be unevenly distributed.
      // When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference
      // between the number of matching pods in the target topology and the global minimum.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  8. RELEASE.md

        *   Add templates and interfaces for creating lookup tables
        *   `Tensor::UnsafeCopyFromInternal` deprecated in favor
            `Tensor::BitcastFrom`.
        *   In `map_vectorization` optimization, reduce the degree of parallelism in
            the vectorized map node.
        *   Add variant wrapper for `absl::string_view`.
        *   Add OpKernels for some stateless maps.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top