Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 194 for beat (0.02 sec)

  1. guava/src/com/google/common/collect/ImmutableMultiset.java

       * multisets ("constant multisets"). Example:
       *
       * {@snippet :
       * public static final ImmutableMultiset<Bean> BEANS =
       *     new ImmutableMultiset.Builder<Bean>()
       *         .addCopies(Bean.COCOA, 4)
       *         .addCopies(Bean.GARDEN, 6)
       *         .addCopies(Bean.RED, 8)
       *         .addCopies(Bean.BLACK_EYED, 10)
       *         .build();
       * }
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.24.md

        - [NonPreemptingPriority to Stable](#nonpreemptingpriority-to-stable)
        - [Storage Plugin Migration](#storage-plugin-migration)
        - [gRPC Probes Graduate to Beta](#grpc-probes-graduate-to-beta)
        - [Kubelet Credential Provider Graduates to Beta](#kubelet-credential-provider-graduates-to-beta)
        - [Contextual Logging in Alpha](#contextual-logging-in-alpha)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/HashingOutputStream.java

    import static com.google.common.base.Preconditions.checkNotNull;
    
    import com.google.common.annotations.Beta;
    import java.io.FilterOutputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    
    /**
     * An {@link OutputStream} that maintains a hash of the data written to it.
     *
     * @author Zoe Piepmeier
     * @since 16.0
     */
    @Beta
    public final class HashingOutputStream extends FilterOutputStream {
      private final Hasher hasher;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/HashingInputStream.java

    import com.google.common.annotations.Beta;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.io.FilterInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    
    /**
     * An {@link InputStream} that maintains a hash of the data read from it.
     *
     * @author Qian Huang
     * @since 16.0
     */
    @Beta
    public final class HashingInputStream extends FilterInputStream {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/UserService.java

            });
    
        }
    
        /**
         * Sets up the search conditions for user list queries based on pager criteria.
         * Configures the condition bean with search filters and ordering.
         *
         * @param cb the condition bean for the user query
         * @param userPager the pager containing search criteria
         */
        protected void setupListCondition(final UserCB cb, final UserPager userPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.3.md

    - [v1.3.0-beta.3](#v130-beta3)
      - [Downloads](#downloads-10)
      - [Changelog since v1.3.0-beta.2](#changelog-since-v130-beta2)
        - [Action Required](#action-required)
        - [Other notable changes](#other-notable-changes-10)
    - [v1.3.0-beta.2](#v130-beta2)
      - [Downloads](#downloads-11)
      - [Changes since v1.3.0-beta.1](#changes-since-v130-beta1)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.2.md

    tolerate zone failure.
         * Simplified way to run a container on every node (DaemonSet API (Beta) in the
    Extensions API group): Kubernetes can schedule a service (such as a logging
    agent) that runs one, and only one, pod per node.
         * TLS and L7 support (Ingress API (Beta) in the Extensions API group): Kubernetes
    is now easier to integrate into custom networking environments by supporting
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/ConstructorDesc.java

         *
         * @return {@link BeanDesc}
         */
        BeanDesc getBeanDesc();
    
        /**
         * Returns the constructor.
         *
         * @param <T>
         *            The type of the Bean
         * @return The constructor
         */
        <T> Constructor<T> getConstructor();
    
        /**
         * Returns an array of the parameter types of the constructor.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        /**
         * Sets up the search conditions for listing data configurations.
         *
         * <p>This method configures the condition bean with search criteria from the pager,
         * including name wildcards, handler name wildcards, and description matching.
         * Results are ordered by sort order and name in ascending order.</p>
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

            }).orElse(null);
        }
    
        /**
         * Extracts the user code from the user bean stored in the session.
         * This method retrieves the authenticated user information and creates an encrypted user code.
         *
         * @param request the HTTP servlet request
         * @return the user code from the user bean, or null if not found or invalid
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
Back to top