Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 319 for deflate (0.13 sec)

  1. docs/fr/docs/tutorial/body.md

    ```
    
    Les paramètres de la fonction seront reconnus comme tel :
    
    * Si le paramètre est aussi déclaré dans le **chemin**, il sera utilisé comme paramètre de chemin.
    * Si le paramètre est d'un **type singulier** (comme `int`, `float`, `str`, `bool`, etc.), il sera interprété comme un paramètre de **requête**.
    * Si le paramètre est déclaré comme ayant pour type un **modèle Pydantic**, il sera interprété comme faisant partie du **corps** de la requête.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/gover/version.go

    	// module-module "all" pattern no longer closes over the dependencies of
    	// tests outside of the main module.
    	NarrowAllVersion = "1.16"
    
    	// DefaultGoModVersion is the Go version to assume for go.mod files
    	// that do not declare a Go version. The go command has been
    	// writing go versions to modules since Go 1.12, so a go.mod
    	// without a version is either very old or recently hand-written.
    	// Since we can't tell which, we have to assume it's very old.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/OptionalUtil.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.util;
    
    import org.dbflute.optional.OptionalEntity;
    
    public class OptionalUtil {
    
        public static <T> OptionalEntity<T> ofNullable(final T entity) {
            return OptionalEntity.ofNullable(entity, () -> {});
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 866 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/JobLogService.java

    import org.codelibs.fess.es.config.exentity.JobLog;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    public class JobLogService {
    
        @Resource
        protected JobLogBhv jobLogBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java

    import org.codelibs.fess.es.config.exentity.ScheduledJob;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    import org.lastaflute.job.LaCron;
    
    public class ScheduledJobService {
    
        private static final Logger logger = LogManager.getLogger(ScheduledJobService.class);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/UserService.java

                }).orElse(() -> {
                    throw new FessUserNotFoundException(username);
                });
            }
    
        }
    
        public void delete(final User user) {
            ComponentUtil.getAuthenticationManager().delete(user);
    
            userBhv.delete(user, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. docs/en/docs/reference/response.md

    # `Response` class
    
    You can declare a parameter in a *path operation function* or dependency to be of type `Response` and then you can set data for the response like headers or cookies.
    
    You can also use it directly to create an instance of it and return it from your *path operations*.
    
    You can import it directly from `fastapi`:
    
    ```python
    from fastapi import Response
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 397 bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/AbstractInputFilePropertyAnnotationHandler.java

                        .severity(Severity.ERROR)
                        .details("If you don't declare the normalization, outputs can't be re-used between machines or locations on the same machine, therefore caching efficiency drops significantly")
                        .solution("Declare the normalization strategy by annotating the property with either @PathSensitive, @Classpath or @CompileClasspath");
                });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/log/exbhv/SearchLogBhv.java

    import org.codelibs.core.misc.Pair;
    import org.codelibs.fess.es.log.bsbhv.BsSearchLogBhv;
    import org.codelibs.fess.es.log.exentity.SearchLog;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.exception.IllegalBehaviorStateException;
    import org.dbflute.util.DfTypeUtil;
    
    /**
     * @author FreeGen
     */
    public class SearchLogBhv extends BsSearchLogBhv {
        private static final Logger logger = LogManager.getLogger(SearchLogBhv.class);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/AccessTokenService.java

    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.taglib.FessFunctions;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    public class AccessTokenService {
    
        @Resource
        protected AccessTokenBhv accessTokenBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top