Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 266 for tp (0.02 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsbhv/BsJobLogBhv.java

            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected JobLogCB xprepareCBAsPK(String id) {
            assertObjectNotNull("id", id);
            return newConditionBean().acceptPK(id);
        }
    
        protected <ENTITY extends JobLog> OptionalEntity<ENTITY> doSelectOptionalByPK(String id, Class<? extends ENTITY> tp) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsbhv/BsRoleTypeBhv.java

            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected RoleTypeCB xprepareCBAsPK(String id) {
            assertObjectNotNull("id", id);
            return newConditionBean().acceptPK(id);
        }
    
        protected <ENTITY extends RoleType> OptionalEntity<ENTITY> doSelectOptionalByPK(String id, Class<? extends ENTITY> tp) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. src/runtime/tagptr_32bit.go

    	return taggedPointer(uintptr(ptr))<<32 | taggedPointer(tag)
    }
    
    // Pointer returns the pointer from a taggedPointer.
    func (tp taggedPointer) pointer() unsafe.Pointer {
    	return unsafe.Pointer(uintptr(tp >> 32))
    }
    
    // Tag returns the tag from a taggedPointer.
    func (tp taggedPointer) tag() uintptr {
    	return uintptr(tp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:22:50 UTC 2023
    - 927 bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue54424.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func f[P ~*T, T any]() {
    	var p P
    	var tp *T
    	tp = p // this assignment is valid
    	_ = tp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 05 14:01:09 UTC 2023
    - 262 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileAuthenticationBhv.java

        }
    
        protected <ENTITY extends FileAuthentication> OptionalEntity<ENTITY> doSelectOptionalEntity(FileAuthenticationCB cb,
                Class<? extends ENTITY> tp) {
            return createOptionalEntity(doSelectEntity(cb, tp), cb);
        }
    
        @Override
        public FileAuthenticationCB newConditionBean() {
            return new FileAuthenticationCB();
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/tests/tfcompile_test.cc

    TEST(TFCompileTest, VariableReadonly) {
      Eigen::ThreadPool tp(1);
      Eigen::ThreadPoolDevice device(&tp, tp.NumThreads());
    
      VariableReadonlyComp fn;
      float x = 23;
      fn.set_var_x_data(&x);
    
      fn.set_thread_pool(&device);
      fn.Run();
      EXPECT_EQ(fn.result0(), 65);
      EXPECT_EQ(fn.var_x(), 23);
    }
    
    TEST(TFCompileTest, Variable) {
      Eigen::ThreadPool tp(1);
      Eigen::ThreadPoolDevice device(&tp, tp.NumThreads());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  7. src/go/types/operand.go

    	}
    
    	Vu := under(V)
    	Tu := under(T)
    	Vp, _ := V.(*TypeParam)
    	Tp, _ := T.(*TypeParam)
    
    	// x is an untyped value representable by a value of type T.
    	if isUntyped(Vu) {
    		assert(Vp == nil)
    		if Tp != nil {
    			// T is a type parameter: x is assignable to T if it is
    			// representable by each specific type in the type set of T.
    			return Tp.is(func(t *term) bool {
    				if t == nil {
    					return false
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileConfigBhv.java

            return doSelectEntity(xprepareCBAsPK(id), tp);
        }
    
        protected FileConfigCB xprepareCBAsPK(String id) {
            assertObjectNotNull("id", id);
            return newConditionBean().acceptPK(id);
        }
    
        protected <ENTITY extends FileConfig> OptionalEntity<ENTITY> doSelectOptionalByPK(String id, Class<? extends ENTITY> tp) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/mylasta/FessActionDefTest.java

        //    public void test_component() throws Exception {
        //        policeStoryOfJavaClassChase(new ActionComponentPolice(tp -> getComponent(tp)));
        //    }
    
        // TODO
        //    public void test_hotDeployDestroyer() throws Exception {
        //        policeStoryOfJavaClassChase(new HotDeployDestroyerPolice(tp -> getComponent(tp)));
        //    }
    
        public void test_nonActionExtendsAction() throws Exception {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/endpoints/mtls_checker.go

    	}
    	return nil
    }
    
    func trafficPolicyTLSModeForPort(tp *networkingapi.TrafficPolicy, port int) *networkingapi.ClientTLSSettings_TLSmode {
    	if tp == nil {
    		return nil
    	}
    	var mode *networkingapi.ClientTLSSettings_TLSmode
    	if tp.Tls != nil {
    		mode = &tp.Tls.Mode
    	}
    	// if there is a port-level setting matching this cluster
    	for _, portSettings := range tp.GetPortLevelSettings() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top