Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 259 for redirection (0.22 sec)

  1. pilot/pkg/model/service.go

    // The proxy queries Pilot with this key to obtain the list of instances in a subset.
    func BuildSubsetKey(direction TrafficDirection, subsetName string, hostname host.Name, port int) string {
    	return string(direction) + "|" + strconv.Itoa(port) + "|" + subsetName + "|" + string(hostname)
    }
    
    // BuildInboundSubsetKey generates a unique string referencing service instances with port.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

            expect(path, false, [method], redirectTo(location, redirectType), credentials)
        }
    
        @CompileStatic
        private void forbidRedirected(String method, String path, String location, RedirectType redirectType) {
            forbid(path, false, [method], redirectTo(location, redirectType))
        }
    
        enum RedirectType {
            PERMANENT_301(301),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. src/go/types/unify.go

    			return u.nify(x.key, y.key, emode, p) && u.nify(x.elem, y.elem, emode, p)
    		}
    
    	case *Chan:
    		// Two channel types unify if their value types unify
    		// and if they have the same direction.
    		// The channel direction is ignored for inexact unification.
    		if y, ok := y.(*Chan); ok {
    			return (mode&exact == 0 || x.dir == y.dir) && u.nify(x.elem, y.elem, emode, p)
    		}
    
    	case *Named:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

    import org.codelibs.fess.es.client.SearchEngineClient.SearchConditionBuilder;
    import org.codelibs.fess.helper.ViewHelper;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.rank.fusion.SearchResult.SearchResultBuilder;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.DocumentUtil;
    import org.codelibs.fess.util.FacetResponse;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

                    log.println(DaemonMessages.DAEMON_VM_SHUTTING_DOWN);
                }
            });
    
            // close all streams and redirect IO
            redirectOutputsAndInput(log);
    
            // after redirecting we need to add the new std out/err to the renderer singleton
            // so that logging gets its way to the daemon log:
            loggingManager.attachSystemOutAndErr();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/encoding/gob/doc.go

    receiver and transmitter will do all necessary indirection and dereferencing to
    convert between gobs and actual Go values. For instance, a gob type that is
    schematically,
    
    	struct { A, B int }
    
    can be sent from or received into any of these Go types:
    
    	struct { A, B int }	// the same
    	*struct { A, B int }	// extra indirection of the struct
    	struct { *A, **B int }	// extra indirection of the fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/unify.go

    			return u.nify(x.key, y.key, emode, p) && u.nify(x.elem, y.elem, emode, p)
    		}
    
    	case *Chan:
    		// Two channel types unify if their value types unify
    		// and if they have the same direction.
    		// The channel direction is ignored for inexact unification.
    		if y, ok := y.(*Chan); ok {
    			return (mode&exact == 0 || x.dir == y.dir) && u.nify(x.elem, y.elem, emode, p)
    		}
    
    	case *Named:
    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. src/main/java/org/codelibs/fess/util/ComponentUtil.java

    import org.codelibs.fess.ingest.IngestFactory;
    import org.codelibs.fess.job.JobExecutor;
    import org.codelibs.fess.ldap.LdapManager;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.mylasta.direction.FessProp;
    import org.codelibs.fess.query.QueryFieldConfig;
    import org.codelibs.fess.query.QueryProcessor;
    import org.codelibs.fess.query.parser.QueryParser;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

        : public impl::MoveTransposesPassBase<MoveTransposesPass> {
     public:
      MoveTransposesPass() = default;
      explicit MoveTransposesPass(MoveTransposeDirection direction,
                                  bool fold_transpose_in_ops) {
        this->direction_ = direction;
        this->fold_transpose_in_ops_ = fold_transpose_in_ops;
      }
      MoveTransposesPass(const MoveTransposesPass& pass) {}
    
      void runOnOperation() final;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/Graph.java

      @Override
      Set<N> adjacentNodes(N node);
    
      /**
       * Returns a live view of all nodes in this graph adjacent to {@code node} which can be reached by
       * traversing {@code node}'s incoming edges <i>against</i> the direction (if any) of the edge.
       *
       * <p>In an undirected graph, this is equivalent to {@link #adjacentNodes(Object)}.
       *
       * <p>If {@code node} is removed from the graph after this method is called, the {@code Set}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top