Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for directionality (0.17 sec)

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

     * @since 20.0
     */
    @Beta
    @DoNotMock
    @ElementTypesAreNonnullByDefault
    public final class GraphBuilder<N> extends AbstractGraphBuilder<N> {
    
      /** Creates a new instance with the specified edge directionality. */
      private GraphBuilder(boolean directed) {
        super(directed);
      }
    
      /** Returns a {@link GraphBuilder} for building directed graphs. */
      public static GraphBuilder<Object> directed() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/NetworkBuilder.java

      boolean allowsParallelEdges = false;
      ElementOrder<? super E> edgeOrder = ElementOrder.insertion();
      Optional<Integer> expectedEdgeCount = Optional.absent();
    
      /** Creates a new instance with the specified edge directionality. */
      private NetworkBuilder(boolean directed) {
        super(directed);
      }
    
      /** Returns a {@link NetworkBuilder} for building directed networks. */
      public static NetworkBuilder<Object, Object> directed() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/ValueGraphBuilder.java

     * @since 20.0
     */
    @Beta
    @ElementTypesAreNonnullByDefault
    public final class ValueGraphBuilder<N, V> extends AbstractGraphBuilder<N> {
    
      /** Creates a new instance with the specified edge directionality. */
      private ValueGraphBuilder(boolean directed) {
        super(directed);
      }
    
      /** Returns a {@link ValueGraphBuilder} for building directed graphs. */
      public static ValueGraphBuilder<Object, Object> directed() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/NetworkBuilder.java

      boolean allowsParallelEdges = false;
      ElementOrder<? super E> edgeOrder = ElementOrder.insertion();
      Optional<Integer> expectedEdgeCount = Optional.absent();
    
      /** Creates a new instance with the specified edge directionality. */
      private NetworkBuilder(boolean directed) {
        super(directed);
      }
    
      /** Returns a {@link NetworkBuilder} for building directed networks. */
      public static NetworkBuilder<Object, Object> directed() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/AbstractNetwork.java

        }
        return hasEdgeConnecting(endpoints.nodeU(), endpoints.nodeV());
      }
    
      /**
       * Throws an IllegalArgumentException if the ordering of {@code endpoints} is not compatible with
       * the directionality of this graph.
       */
      protected final void validateEndpoints(EndpointPair<?> endpoints) {
        checkNotNull(endpoints);
        checkArgument(isOrderingCompatible(endpoints), ENDPOINTS_MISMATCH);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/AbstractNetwork.java

        }
        return hasEdgeConnecting(endpoints.nodeU(), endpoints.nodeV());
      }
    
      /**
       * Throws an IllegalArgumentException if the ordering of {@code endpoints} is not compatible with
       * the directionality of this graph.
       */
      protected final void validateEndpoints(EndpointPair<?> endpoints) {
        checkNotNull(endpoints);
        checkArgument(isOrderingCompatible(endpoints), ENDPOINTS_MISMATCH);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    // The methods of an Ordering should only be called by one goroutine at a time.
    type Ordering struct {
    	runes      [][]rune
    	directions []Direction
    	startpos   []int
    }
    
    // Direction reports the directionality of the runs.
    //
    // The direction may be LeftToRight, RightToLeft, Mixed, or Neutral.
    func (o *Ordering) Direction() Direction {
    	return o.directions[0]
    }
    
    // NumRuns returns the number of runs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  8. src/go/types/unify.go

    				// inexactly unifying channel type remains assignable (go.dev/issue/62157).
    				//
    				// If we have multiple defined channel types, they are either identical or we
    				// have assignment conflicts, so we can ignore directionality in this case.
    				//
    				// If we have defined and literal channel types, a defined type wins to avoid
    				// order dependencies.
    				if mode&exact == 0 {
    					switch {
    					case xn:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/bidi/core.go

    //  - levels array over line
    //  - reordering array over line
    //
    // Note that for conformance to the Unicode Bidirectional Algorithm,
    // implementations are only required to generate correct reordering and
    // character directionality (odd or even levels) over a line. Generating
    // identical level arrays over a line is not required. Bidi explicit format
    // codes (LRE, RLE, LRO, RLO, PDF) and BN can be assigned arbitrary levels and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/unify.go

    				// inexactly unifying channel type remains assignable (go.dev/issue/62157).
    				//
    				// If we have multiple defined channel types, they are either identical or we
    				// have assignment conflicts, so we can ignore directionality in this case.
    				//
    				// If we have defined and literal channel types, a defined type wins to avoid
    				// order dependencies.
    				if mode&exact == 0 {
    					switch {
    					case xn:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top