Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 791 for redirection (0.19 sec)

  1. src/go/types/chan.go

    type Chan struct {
    	dir  ChanDir
    	elem Type
    }
    
    // A ChanDir value indicates a channel direction.
    type ChanDir int
    
    // The direction of a channel is indicated by one of these constants.
    const (
    	SendRecv ChanDir = iota
    	SendOnly
    	RecvOnly
    )
    
    // NewChan returns a new channel type for the given direction and element type.
    func NewChan(dir ChanDir, elem Type) *Chan {
    	return &Chan{dir: dir, elem: elem}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/chan.go

    type Chan struct {
    	dir  ChanDir
    	elem Type
    }
    
    // A ChanDir value indicates a channel direction.
    type ChanDir int
    
    // The direction of a channel is indicated by one of these constants.
    const (
    	SendRecv ChanDir = iota
    	SendOnly
    	RecvOnly
    )
    
    // NewChan returns a new channel type for the given direction and element type.
    func NewChan(dir ChanDir, elem Type) *Chan {
    	return &Chan{dir: dir, elem: elem}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 01 22:17:50 UTC 2021
    - 910 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/routes/profiling.go

    	c.UnlistedHandleFunc("/debug/pprof", redirectTo("/debug/pprof/"))
    	c.UnlistedHandlePrefix("/debug/pprof/", http.HandlerFunc(pprof.Index))
    	c.UnlistedHandleFunc("/debug/pprof/profile", pprof.Profile)
    	c.UnlistedHandleFunc("/debug/pprof/symbol", pprof.Symbol)
    	c.UnlistedHandleFunc("/debug/pprof/trace", pprof.Trace)
    }
    
    // redirectTo redirects request to a certain destination.
    func redirectTo(to string) func(http.ResponseWriter, *http.Request) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 06 11:35:01 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  4. 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)
  5. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainBeforeHook.java

     */
    package org.codelibs.fess.mylasta.direction.sponsor;
    
    import java.util.TimeZone;
    
    import org.dbflute.system.DBFluteSystem;
    import org.dbflute.system.provider.DfFinalTimeZoneProvider;
    import org.dbflute.util.DfTypeUtil;
    import org.lastaflute.core.direction.CurtainBeforeHook;
    import org.lastaflute.core.direction.FwAssistantDirector;
    
    /**
     * @author jflute
     */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    // bracket pair.
    //
    // b If any strong type (either L or R) matching the embedding direction is
    // found, set the type for both brackets in the pair to match the embedding
    // direction.
    //
    // o [ e ] o -> o e e e o
    //
    // o [ o e ] -> o e o e e
    //
    // o [ NI e ] -> o e NI e e
    //
    // c Otherwise, if a strong type (opposite the embedding direction) is
    // found, test for adjacent strong types as follows: 1 First, check
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHook.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.direction.sponsor;
    
    import java.lang.reflect.Method;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.lastaflute.core.direction.CurtainFinallyHook;
    import org.lastaflute.core.direction.FwAssistantDirector;
    
    /**
     * @author jflute
     */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_cluster_util.cc

    }
    
    // Helper for GetNodesRelatedToRefVariables that traverses the graph in one
    // direction.
    Status GetNodesRelatedToRefVariablesInDirection(
        const Graph& graph, FunctionLibraryRuntime* lib_runtime,
        Direction direction, int depth, absl::flat_hash_set<Node*>* result) {
      std::vector<Node*> nodes_in_order;
      if (direction == Direction::kForward) {
        GetReversePostOrder(graph, &nodes_in_order,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. test/typeparam/graph.go

    					visited[a] = true
    				}
    			}
    		}
    	}
    	return nil, errors.New("no path")
    }
    
    type direction int
    
    const (
    	north direction = iota
    	ne
    	east
    	se
    	south
    	sw
    	west
    	nw
    	up
    	down
    )
    
    func (dir direction) String() string {
    	strs := map[direction]string{
    		north: "north",
    		ne:    "ne",
    		east:  "east",
    		se:    "se",
    		south: "south",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/main/resources/lastaflute_director.xml

    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components>
    	<component name="assistantDirector" class="org.codelibs.fess.mylasta.direction.FessFwAssistantDirector"/>
    	<component name="fessConfig" class="org.codelibs.fess.mylasta.direction.FessConfigImpl"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Jan 15 13:03:59 UTC 2020
    - 368 bytes
    - Viewed (0)
Back to top