Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 147 for redirection (0.2 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionInfoProvider.kt

         *
         * The missing cases of the when-expression in the following example are Direction.WEST and Direction.EAST:
         *
         * enum class Direction {
         *   NORTH, SOUTH, WEST, EAST
         * }
         * foo = when(direction) {
         *   Direction.NORTH -> 1
         *   Direction.SOUTH -> 2
         *   else -> 3
         * }
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/transfer/AbstractMavenTransferListener.java

            String direction = event.getRequestType() == TransferEvent.RequestType.PUT ? "to" : "from";
    
            TransferResource resource = event.getResource();
            MessageBuilder message = messageBuilderFactory.builder();
            message.style(STYLE).append(action).append(' ').append(direction).append(' ');
            message.resetStyle().append(resource.getRepositoryId());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                      description: |-
                                        RequestRedirect defines a schema for a filter that responds to the
                                        request with an HTTP redirection.
    
    
                                        Support: Core
                                      properties:
                                        hostname:
                                          description: |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/transfer/Slf4jMavenTransferListener.java

            String direction = event.getRequestType() == TransferEvent.RequestType.PUT ? "to" : "from";
    
            TransferResource resource = event.getResource();
            StringBuilder message = new StringBuilder();
            message.append(action).append(' ').append(direction).append(' ').append(resource.getRepositoryId());
            message.append(": ");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/go/types/under.go

    // If x and y are identical channels but for their direction
    // and one of them is unrestricted, match returns the channel
    // with the restricted direction.
    // In all other cases, match returns nil.
    func match(x, y Type) Type {
    	// Common case: we don't have channels.
    	if Identical(x, y) {
    		return x
    	}
    
    	// We may have channels that differ in direction only.
    	if x, _ := x.(*Chan); x != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/under.go

    // If x and y are identical channels but for their direction
    // and one of them is unrestricted, match returns the channel
    // with the restricted direction.
    // In all other cases, match returns nil.
    func match(x, y Type) Type {
    	// Common case: we don't have channels.
    	if Identical(x, y) {
    		return x
    	}
    
    	// We may have channels that differ in direction only.
    	if x, _ := x.(*Chan); x != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      }
    
      function renderGroup(depth, xscale, x, y, g, direction) {
        // Skip if not wide enough.
        const width = groupWidth(xscale, g);
        if (width < MIN_WIDTH) return;
    
        // Draw the box for g.src (except for selected element in upwards direction
        // since that duplicates the box we added in downwards direction).
        if (depth != 0 || direction > 0) {
          const box = {
            x:      x,
            y:      y,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    			return nil // channel elements are not identical.
    		}
    		if ch.Dir() == types.SendRecv {
    			// ch is bidirectional. We can safely always use curr's direction.
    			ch = curr
    		} else if curr.Dir() != types.SendRecv && ch.Dir() != curr.Dir() {
    			// ch and curr are not bidirectional and not the same direction.
    			return nil
    		}
    	}
    	return ch
    }
    
    // NormalTerms returns a slice of terms representing the normalized structural
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder.go

    					},
    				}
    			}
    		}
    	}
    
    	ec := newClusterWrapper(c)
    	cb.setUpstreamProtocol(ec, port)
    	addTelemetryMetadata(c, port, service, direction, inboundServices)
    	if direction == model.TrafficDirectionOutbound {
    		// If stat name is configured, build the alternate stats name.
    		if len(cb.req.Push.Mesh.OutboundClusterStatName) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/JULRedirector.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.redirector;
    
    import java.io.IOException;
    import java.util.logging.ConsoleHandler;
    import java.util.logging.LogManager;
    import java.util.logging.Logger;
    
    /**
     * Some hackery to get JUL output redirected to test output
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top