Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2711 - 2720 of 3,972 for atrule (0.09 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/AbstractIntervalController.java

    import org.codelibs.fess.crawler.interval.IntervalController;
    
    /**
     * @author shinsuke
     *
     */
    public abstract class AbstractIntervalController implements IntervalController {
    
        protected boolean ignoreException = true;
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.interval.IntervalController#delay(int)
         */
        @Override
        public void delay(final int type) {
            try {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/FilteredEntryMultimap.java

            if (collection.size() == entry.getValue().size()) {
              entryIterator.remove();
            } else {
              collection.clear();
            }
            changed = true;
          }
        }
        return changed;
      }
    
      @WeakOuter
      class AsMap extends ViewCachingAbstractMap<K, Collection<V>> {
        @Override
        public boolean containsKey(@CheckForNull Object key) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java

            return false;
        }
    
        @Override
        public boolean canPagingCountLater() {
            return false;
        }
    
        @Override
        public boolean canPagingReSelect() {
            return true;
        }
    
        @Override
        public void paging(int pageSize, int pageNumber) {
            if (pageSize <= 0) {
                throwPagingPageSizeNotPlusException(pageSize, pageNumber);
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

            configuration.groups
                .filter { group ->
                    performanceTestTypes.any { type ->
                        group.performanceTestTypes[type]?.contains(performanceTestSpec.os) == true
                    }
                }
                .map { PerformanceScenario(Scenario.fromTestId(configuration.testId), it.testProject) }
        }
    }
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon Feb 19 11:22:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/net.go

    	s.currentPodSnapshot.Ensure(string(pod.UID))
    	openNetns, err := s.getOrOpenNetns(pod, netNs)
    	if err != nil {
    		return err
    	}
    
    	// If true, the pod will run in 'ingress mode'. This is intended to be used for "ingress" type workloads which handle
    	// non-mesh traffic on inbound, and send to the mesh on outbound.
    	// Basically, this just disables inbound redirection.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Oct 21 16:48:55 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/Service.java

       *
       * @return this
       * @throws IllegalStateException if the service is not {@link State#NEW}
       * @since 15.0
       */
      @CanIgnoreReturnValue
      Service startAsync();
    
      /** Returns {@code true} if this service is {@linkplain State#RUNNING running}. */
      boolean isRunning();
    
      /** Returns the lifecycle state of the service. */
      State state();
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/ConcurrentHashMultisetTest.java

      ConcurrentHashMultiset<String> multiset;
    
      @SuppressWarnings("unchecked")
      @Override
      protected void setUp() {
        backingMap = mock(ConcurrentMap.class);
        when(backingMap.isEmpty()).thenReturn(true);
    
        multiset = new ConcurrentHashMultiset<>(backingMap);
      }
    
      public void testCount_elementPresent() {
        final int COUNT = 12;
        when(backingMap.get(KEY)).thenReturn(new AtomicInteger(COUNT));
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtlmContext.java

                    initSessionSecurity(msg3.getMasterKey());
                }
    
                this.isEstablished = true;
                this.state++;
                return out;
            }
            catch ( SmbException e ) {
                throw e;
            }
            catch ( Exception e ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/boostdoc/admin_boostdoc_edit.jsp

                                </div>
                                <div class="card-body">
                                    <div>
                                        <la:info id="msg" message="true">
                                            <div class="alert alert-info">${msg}</div>
                                        </la:info>
                                        <la:errors property="_global"/>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/query/PrefixQueryCommand.java

    public class PrefixQueryCommand extends QueryCommand {
        private static final Logger logger = LogManager.getLogger(PrefixQueryCommand.class);
    
        protected boolean lowercaseWildcard = true;
    
        @Override
        protected String getQueryClassName() {
            return PrefixQuery.class.getSimpleName();
        }
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top