Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,254 for overwrite (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

         *
         * @return the FessUserBean class
         */
        @Override
        protected Class<FessUserBean> getUserBeanType() {
            return FessUserBean.class;
        }
    
        /**
         * Gets the login action type class.
         *
         * @return the LoginAction class
         */
        @Override
        protected Class<?> getLoginActionType() {
            return LoginAction.class;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java

                }
    
                @Override
                public BigDecimal getQueryBoostTitleAsDecimal() {
                    return new BigDecimal("0.5");
                }
    
                @Override
                public BigDecimal getQueryBoostContentAsDecimal() {
                    return new BigDecimal("0.05");
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  3. docs/features/events.md

        System.out.printf("%.3f %s%n", elapsedNanos / 1000000000d, name);
      }
    
      @Override public void callStart(Call call) {
        printEvent("callStart");
      }
    
      @Override public void callEnd(Call call) {
        printEvent("callEnd");
      }
    
      @Override public void dnsStart(Call call, String domainName) {
        printEvent("dnsStart");
      }
    
      @Override public void dnsEnd(Call call, String domainName, List<InetAddress> inetAddressList) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHookTest.java

        private FessConfig originalFessConfig;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            ComponentUtil.register(new SystemHelper(), "systemHelper");
            apiFailureHook = new FessApiFailureHook();
            originalFessConfig = ComponentUtil.getFessConfig();
        }
    
        @Override
        public void tearDown() throws Exception {
            if (originalFessConfig != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/user/cbean/bs/BsRoleCB.java

        @Override
        public RoleDbm asDBMeta() {
            return RoleDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "role";
        }
    
        @Override
        public boolean hasSpecifiedColumn() {
            return _specification != null;
        }
    
        @Override
        public ConditionQuery localCQ() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  6. samples/guide/src/main/java/okhttp3/recipes/UploadProgress.java

          this.delegate = delegate;
          this.progressListener = progressListener;
        }
    
        @Override
        public MediaType contentType() {
          return delegate.contentType();
        }
    
        @Override
        public long contentLength() throws IOException {
          return delegate.contentLength();
        }
    
        @Override
        public void writeTo(BufferedSink sink) throws IOException {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 4.2K bytes
    - Viewed (1)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/GzipRequestBody.kt

    internal class GzipRequestBody(
      val delegate: RequestBody,
    ) : RequestBody() {
      override fun contentType() = delegate.contentType()
    
      // We don't know the compressed length in advance!
      override fun contentLength() = -1L
    
      override fun writeTo(sink: BufferedSink) {
        GzipSink(sink).buffer().use(delegate::writeTo)
      }
    
      override fun isOneShot() = delegate.isOneShot()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 04 17:43:43 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProvider.java

        private static final Logger logger = LogManager.getLogger(FessUserLocaleProcessProvider.class);
    
        @Override
        public boolean isAcceptCookieLocale() {
            return false;
        }
    
        @Override
        public OptionalThing<Locale> findBusinessLocale(final ActionRuntime runtimeMeta, final RequestManager requestManager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsDuplicateHostCB.java

        @Override
        public DuplicateHostDbm asDBMeta() {
            return DuplicateHostDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "duplicate_host";
        }
    
        @Override
        public boolean hasSpecifiedColumn() {
            return _specification != null;
        }
    
        @Override
        public ConditionQuery localCQ() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsRelatedQueryCB.java

        @Override
        public RelatedQueryDbm asDBMeta() {
            return RelatedQueryDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "related_query";
        }
    
        @Override
        public boolean hasSpecifiedColumn() {
            return _specification != null;
        }
    
        @Override
        public ConditionQuery localCQ() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7K bytes
    - Viewed (0)
Back to top