Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 799 for called (0.05 sec)

  1. src/test/java/org/codelibs/fess/query/QueryProcessorTest.java

                    calledFirst.set(true);
                    assertFalse(called.get());
                    QueryBuilder builder = chain.execute(context, query, boost);
                    assertTrue(called.get());
                    return builder;
                }
            });
            queryBuilder = queryProcessor.execute(context, query, 1.0f);
            assertTrue(called.get());
            assertTrue(calledFirst.get());
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 3.5K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/ztunnelserver_mocks.go

    	return &MockedZtunnelConnection{}
    }
    
    func (m *MockedZtunnelConnection) Close() {
    	m.Called()
    }
    
    func (m *MockedZtunnelConnection) UUID() uuid.UUID {
    	args := m.Called()
    	return args.Get(0).(uuid.UUID)
    }
    
    func (m *MockedZtunnelConnection) Updates() <-chan UpdateRequest {
    	args := m.Called()
    	return args.Get(0).(<-chan UpdateRequest)
    }
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-02-17 17:40
    - 2K bytes
    - Viewed (0)
  3. cni/pkg/ipset/nldeps_mock.go

    func (m *MockedIpsetDeps) ipsetIPHashCreate(name string, v6 bool) error {
    	args := m.Called(name, v6)
    	return args.Error(0)
    }
    
    func (m *MockedIpsetDeps) destroySet(name string) error {
    	args := m.Called(name)
    	return args.Error(0)
    }
    
    func (m *MockedIpsetDeps) addIP(name string, ip netip.Addr, ipProto uint8, comment string, replace bool) error {
    	args := m.Called(name, ip, ipProto, comment, replace)
    	return args.Error(0)
    }
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-12-11 18:25
    - 2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/AbstractCache.java

        /**
         * Records cache hits. This should be called when a cache request returns a cached value.
         *
         * @param count the number of hits to record
         * @since 11.0
         */
        void recordHits(int count);
    
        /**
         * Records cache misses. This should be called when a cache request returns a value that was not
         * found in the cache. This method should be called by the loading thread, as well as by threads
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 9.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

           *   cause if this Future has failed.
           *
           * - And this future *has* failed: This method is called only from handleException (through
           *   getOrInitSeenExceptions). handleException tried to call setException and failed, so
           *   either this Future was cancelled (which we ruled out with the isCancelled check above),
           *   or it had already failed. (It couldn't have completed *successfully* or even had
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-22 03:38
    - 16K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/Service.java

         *     State#TERMINATED TERMINATED}.
         */
        public void terminated(State from) {}
    
        /**
         * Called when the service transitions to the {@linkplain State#FAILED FAILED} state. The
         * {@linkplain State#FAILED FAILED} state is a terminal state in the transition diagram.
         * Therefore, if this method is called, no other methods will be called on the {@link Listener}.
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-21 03:10
    - 12.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/AbstractCache.java

        /**
         * Records cache hits. This should be called when a cache request returns a cached value.
         *
         * @param count the number of hits to record
         * @since 11.0
         */
        void recordHits(int count);
    
        /**
         * Records cache misses. This should be called when a cache request returns a value that was not
         * found in the cache. This method should be called by the loading thread, as well as by threads
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 9.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Service.java

         *     State#TERMINATED TERMINATED}.
         */
        public void terminated(State from) {}
    
        /**
         * Called when the service transitions to the {@linkplain State#FAILED FAILED} state. The
         * {@linkplain State#FAILED FAILED} state is a terminal state in the transition diagram.
         * Therefore, if this method is called, no other methods will be called on the {@link Listener}.
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-21 03:10
    - 10.8K bytes
    - Viewed (0)
  9. cni/pkg/plugin/plugin_test.go

    		t.Fatal("Didnt Expect nsenterFunc to be called because this pod does not contain a sidecar")
    	}
    }
    
    func TestCmdAddExcludePod(t *testing.T) {
    	pod, ns := buildFakePodAndNSForClient()
    
    	mockIntercept := testDoAddRun(t, buildMockConf(true), "testExcludeNS", pod, ns)
    	if len(mockIntercept.lastRedirect) != 0 {
    		t.Fatal("failed to exclude pod")
    	}
    }
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-05-06 05:38
    - 18.1K bytes
    - Viewed (0)
  10. callbacks/callmethod.go

    package callbacks
    
    import (
    	"reflect"
    
    	"gorm.io/gorm"
    )
    
    func callMethod(db *gorm.DB, fc func(value interface{}, tx *gorm.DB) bool) {
    	tx := db.Session(&gorm.Session{NewDB: true})
    	if called := fc(db.Statement.ReflectValue.Interface(), tx); !called {
    		switch db.Statement.ReflectValue.Kind() {
    		case reflect.Slice, reflect.Array:
    			db.Statement.CurDestIndex = 0
    			for i := 0; i < db.Statement.ReflectValue.Len(); i++ {
    Registered: 2025-05-25 09:35
    - Last Modified: 2023-02-18 01:20
    - 846 bytes
    - Viewed (0)
Back to top