Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for 1final (0.13 sec)

  1. src/main/java/org/codelibs/core/beans/impl/FieldDescImpl.java

        /** このフィールドを所有するクラスの{@link BeanDesc} */
        protected final BeanDesc beanDesc;
    
        /** フィールド */
        protected final Field field;
    
        /** フィールド名 */
        protected final String fieldName;
    
        /** フィールドの型 */
        protected final Class<?> fieldType;
    
        /** パラメータ化された型の情報 */
        protected final ParameterizedClassDesc parameterizedClassDesc;
    
        /**
         * インスタンスを構築します。
         *
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/MacHashFunction.java

     */
    @Immutable
    @ElementTypesAreNonnullByDefault
    final class MacHashFunction extends AbstractHashFunction {
    
      @SuppressWarnings("Immutable") // cloned before each use
      private final Mac prototype;
    
      @SuppressWarnings("Immutable") // keys are immutable, but not provably so
      private final Key key;
    
      private final String toString;
      private final int bits;
      private final boolean supportsClone;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 15 22:31:55 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/CloseableUtil.java

         * @see Closeable#close()
         */
        public static void close(final Closeable closeable) {
            if (closeable == null) {
                return;
            }
            try {
                closeable.close();
            } catch (final IOException e) {
                logger.log(format("ECL0017", e.getMessage()), e);
            }
        }
    
        public static void closeQuietly(final Closeable closeable) {
            if (closeable == null) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/lang/MethodUtil.java

        public static <T> T invoke(final Method method, final Object target, final Object... args)
                throws InvocationTargetRuntimeException, IllegalAccessRuntimeException {
            assertArgumentNotNull("method", method);
    
            try {
                return (T) method.invoke(target, args);
            } catch (final InvocationTargetException ex) {
                final Throwable t = ex.getCause();
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java

            }
    
            public MyToken(final String word, final int startOffset, final int endOffset, final int posInc) {
                this(word, startOffset, endOffset, posInc, Integer.MAX_VALUE); // Integer.MAX_VALUE for seq means unused
            }
    
            public MyToken(final String word, final int startOffset, final int endOffset, final int posInc, final int seq) {
                this.word = word;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtlmContext.java

        private static final String S2C_SIGN_CONSTANT = "session key to server-to-client signing key magic constant";
        private static final String S2C_SEAL_CONSTANT = "session key to server-to-client sealing key magic constant";
    
        private static final String C2S_SIGN_CONSTANT = "session key to client-to-server signing key magic constant";
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

        protected static class PropertyMetadata {
            private final String name;
            private final List<MethodMetadata> getters = new ArrayList<>();
            private final List<MethodMetadata> overridableGetters = new ArrayList<>();
            private final List<Method> overridableSetters = new ArrayList<>();
            private final List<Method> setters = new ArrayList<>();
            private final List<Method> setMethods = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/PropertyValidationAccess.java

    import java.util.List;
    
    /**
     * Class for easy access to property validation from the validator task.
     */
    @NonNullApi
    public class PropertyValidationAccess {
        private static final PropertyValidationAccess INSTANCE = new PropertyValidationAccess();
    
        private final List<TypeScheme> typeSchemes;
    
        private PropertyValidationAccess() {
            ServiceRegistryBuilder builder = ServiceRegistryBuilder.builder().displayName("Global services");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/lang/FieldUtil.java

         */
        public static void set(final Field field, final Object target, final Object value) throws IllegalAccessRuntimeException {
            assertArgumentNotNull("field", field);
    
            try {
                field.set(target, value);
            } catch (final IllegalAccessException e) {
                throw new IllegalAccessRuntimeException(field.getDeclaringClass(), e);
            } catch (final IllegalArgumentException e) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

            private final List<ExtractedRuleDetails> rules;
            @Nullable
            private final ModelProperty<?> target;
            private final List<ModelProperty<?>> implicitInputs;
            private final StructSchema<?> schema;
            private final StructBindings<?> bindings;
            private final ManagedProxyFactory proxyFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top