Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 791 for redirection (0.88 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProvider.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.direction.sponsor;
    
    import java.util.TimeZone;
    
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.lastaflute.core.time.TypicalTimeResourceProvider;
    
    /**
     * @author jflute
     */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProvider.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.direction.sponsor;
    
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.lastaflute.core.security.InvertibleCryptographer;
    import org.lastaflute.web.servlet.cookie.CookieResourceProvider;
    
    /**
     * @author jflute
     */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfigImpl.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.direction;
    
    import java.util.concurrent.ExecutionException;
    
    import org.codelibs.fess.Constants;
    import org.dbflute.helper.jprop.ObjectiveProperties;
    import org.lastaflute.core.direction.PropertyFilter;
    
    import com.google.common.cache.Cache;
    import com.google.common.cache.CacheBuilder;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProvider.java

     */
    package org.codelibs.fess.mylasta.direction.sponsor;
    
    import java.util.Locale;
    
    import org.apache.commons.lang3.LocaleUtils;
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. 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)
  7. test/solitaire.go

    // See also: http://en.wikipedia.org/wiki/Peg_solitaire
    
    package main
    
    const N = 11 + 1 // length of a board row (+1 for newline)
    
    // The board must be surrounded by 2 illegal fields in each direction
    // so that move() doesn't need to check the board boundaries. Periods
    // represent illegal fields, ● are pegs, and ○ are holes.
    var board = []rune(
    	`...........
    ...........
    ....●●●....
    ....●●●....
    ..●●●●●●●..
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 2.9K bytes
    - Viewed (0)
  8. docs/ur/docs/benchmarks.md

    ٹول کے ذریعہ حل ہونے والا آسان مسئلہ ، اس کی بہتر کارکردگی ہوگی. اور زیادہ تر بینچ مارک ٹول کے ذریعہ فراہم کردہ اضافی خصوصیات کی جانچ نہیں کرتے ہیں.
    
    درجہ بندی کی طرح ہے:
    
    <ul style="direction: rtl;">
        <li><div style="text-align: right;">ASGI :<b>Uvicorn</b> سرور</div></li>
        <ul>
            <li><div style="text-align: right;"><b>Starlette</b>:  (Uvicorn استعمال کرتا ہے) ایک ویب مائیکرو فریم ورک </div></li>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 05 08:24:21 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/secure/bidirule/bidirule.go

    // R, AL, or AN.
    //
    // An LTR label is any label that is not an RTL label.
    
    // Direction reports the direction of the given label as defined by RFC 5893.
    // The Bidi Rule does not have to be applied to labels of the category
    // LeftToRight.
    func Direction(b []byte) bidi.Direction {
    	for i := 0; i < len(b); {
    		e, sz := bidi.Lookup(b[i:])
    		if sz == 0 {
    			i++
    		}
    		c := e.Class()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  10. .idea/dictionaries/4u7.xml

          <w>cacheable</w>
          <w>cidr</w>
          <w>fastutil</w>
          <w>foldable</w>
          <w>instrumentator</w>
          <w>jdks</w>
          <w>jsshell</w>
          <w>proguarded</w>
          <w>protobuf</w>
          <w>redirector</w>
          <w>remapper</w>
          <w>sonatype</w>
          <w>streamex</w>
          <w>unpresent</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 16 12:19:01 UTC 2023
    - 498 bytes
    - Viewed (0)
Back to top