Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 791 for redirection (0.2 sec)

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

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * 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.lastaflute.core.security.InvertibleCryptographer;
    import org.lastaflute.core.security.OneWayCryptographer;
    import org.lastaflute.core.security.SecurityResourceProvider;
    
    /**
     * @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)
  2. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreator.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.List;
    import java.util.Locale;
    
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.dbflute.mail.send.SMailDeliveryDepartment;
    import org.dbflute.mail.send.SMailPostalMotorbike;
    import org.dbflute.mail.send.SMailPostalParkingLot;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. test-site/public/javascripts/suggestor.js

                    suggestingSts = false;
                },
    
                selectlist: function(direction) {
                    if($boxElement.css("display") == "none") {
                        return;
                    }
    
                    if(direction == "down") {
                        listSelNum++;
                    } else if(direction == "up") {
                        listSelNum--;
                    } else {
                        return;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
  4. test/indirect.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test various safe uses of indirection.
    
    package main
    
    var m0 map[string]int
    var m1 *map[string]int
    var m2 *map[string]int = &m0
    var m3 map[string]int = map[string]int{"a": 1}
    var m4 *map[string]int = &m3
    
    var s0 string
    var s1 *string
    var s2 *string = &s0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 1.4K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue62157.go

    func _() {
    	type namedA chan int
    	type namedB chan<- int
    
    	var a chan int
    	var A namedA
    	var b chan<- int
    	var B namedB
    
    	// Defined types win over channel types irrespective of channel direction.
    	f(A, b /* ERROR "cannot use b (variable of type chan<- int) as namedA value in argument to f" */)
    	f(b /* ERROR "cannot use b (variable of type chan<- int) as namedA value in argument to f" */, A)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 23:22:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/score/LtrQueryRescorer.java

     */
    package org.codelibs.fess.score;
    
    import java.util.Map;
    
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.es.query.StoredLtrQueryBuilder;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.opensearch.search.rescore.QueryRescorerBuilder;
    import org.opensearch.search.rescore.RescorerBuilder;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    	setParallel(t)
    	mux := NewServeMux()
    	for _, e := range serveMuxRegister {
    		mux.Handle(e.pattern, e.h)
    	}
    
    	for _, tt := range serveMuxTests2 {
    		tries := 1 // expect at most 1 redirection if redirOk is true.
    		turl := tt.url
    		for {
    			u, e := url.Parse(turl)
    			if e != nil {
    				t.Fatal(e)
    			}
    			r := &Request{
    				Method: tt.method,
    				Host:   tt.host,
    				URL:    u,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/recv.go

    // in a field or method selection, without losing the named type
    // (which is needed to compute the method set).
    //
    // See also [typeparams.MustDeref], which removes one level of
    // indirection from the type, regardless of named types (analogous to
    // a LOAD instruction).
    func Unpointer(t types.Type) types.Type {
    	if ptr, ok := aliases.Unalias(t).(*types.Pointer); ok {
    		return ptr.Elem()
    	}
    	return t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/LazyLogger.java

         *
         * We could use Suppliers.memoizingSupplier here, but I micro-optimized to this implementation
         * to avoid the extra class for the lambda (and maybe more for memoizingSupplier itself) and the
         * indirection.
         *
         * One thing to *avoid* is a change to make each Logger user use memoizingSupplier directly:
         * That may introduce an extra class for each lambda (currently a dozen).
         */
        Logger local = logger;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. istioctl/pkg/proxyconfig/testdata/config_dump_summary.txt

    Istio Proxy Version: ee85c5f28702f00621aed895915fca565796b9e4
    Envoy Version:       0.0.0
    
    NAME                                                                SERVICE FQDN                          PORT     SUBSET     DIRECTION       TYPE       DESTINATION RULE
    cluster/agent                                                       cluster/agent                         -        -          -               STATIC     
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top