Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 95 of 95 for setSession (0.07 sec)

  1. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                    updateHighlightInfo(highlightInfo, width);
                    final HttpSession session = req.getSession(false);
                    if (session != null) {
                        session.setAttribute(SCREEN_WIDTH, width);
                    }
                } else {
                    final HttpSession session = req.getSession(false);
                    if (session != null) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

     */
    @Experimental
    @Immutable
    public interface DependencyResolverRequest {
    
        enum RequestType {
            COLLECT,
            FLATTEN,
            RESOLVE
        }
    
        @Nonnull
        Session getSession();
    
        @Nonnull
        RequestType getRequestType();
    
        @Nonnull
        Optional<Project> getProject();
    
        @Nonnull
        Optional<Artifact> getRootArtifact();
    
        @Nonnull
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 16 14:15:37 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                try {
                    String interpolated =
                            ssi.interpolate(interpolatedModel.getParent().getVersion());
                    interpolatedModel.getParent().setVersion(interpolated);
                } catch (Exception e) {
                    ModelProblemCollectorRequest mpcr = new ModelProblemCollectorRequest(
                                    Severity.ERROR, ModelProblem.Version.BASE)
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 83.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                final EntityCreator<T, SearchResponse, SearchHit> creator) {
            return search(index, searchRequestBuilder -> {
                searchRequestBuilder.setVersion(true);
                return condition.build(searchRequestBuilder);
            }, (queryBuilder, execTime, searchResponse) -> searchResponse.map(response -> {
                final SearchHit[] hits = response.getHits().getHits();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Oct 20 02:08:03 UTC 2024
    - 86.1K bytes
    - Viewed (0)
  5. RELEASE.md

        *   symbolic tensors outside the scope of the model are used in custom loss
            functions. The flag can be disabled for these cases and ideally the
            usage pattern will need to be fixed.
        *   Mark Keras `set_session` as `compat.v1` only.
        *   `tf.keras.estimator.model_to_estimator` now supports exporting to
            `tf.train.Checkpoint format`, which allows the saved checkpoints to be
            compatible with `model.load_weights`.
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
Back to top