Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for directionality (0.29 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    // and N2.
    //
    // e ( NI ) o -> e ( NI ) o
    
    // getStrongTypeN0 maps character's directional code to strong type as required
    // by rule N0.
    //
    // TODO: have separate type for "strong" directionality.
    func (p *bracketPairer) getStrongTypeN0(index int) Class {
    	switch p.codesIsolatedRun[index] {
    	// in the scope of N0, number types are treated as R
    	case EN, AN, AL, R:
    		return R
    	case L:
    		return L
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. architecture/ambient/ztunnel.md

    If all checks pass, ztunnel will open a connection to the target. This will spoof the source IP (from `Forwarded` for waypoints, or the incoming IP otherwise).
    Once the connection is established we return a 200 HTTP code, and bi-directionally copy data to/from the tunnel to the destination.
    
    ## Certificates
    
    Ztunnel certificates are based on the standard Istio SPIFFE format: `spiffe://<trust domain>/ns/<ns>/sa/<sa>`.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top