- Sort Score
- Result 10 results
- Languages All
Results 601 - 610 of 3,382 for authFn (0.15 sec)
-
src/main/java/org/codelibs/core/lang/ClassIterator.java
* </pre> * <p> * デフォルトでは{@link Object}クラスも反復の対象となります。 反復の対象に{@link Object}を含めたくない場合は、 * {@link #iterable(Class, boolean)}または{@link #ClassIterator(Class, boolean)} * の第2引数に{@literal false}を指定します。 * </p> * * @author koichik */ public class ClassIterator implements Iterator<Class<?>> { /** クラス */ protected Class<?> clazz; /** {@link Object}クラスも反復する場合は {@literal true} */ protected final boolean includeObject;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Tuple3.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.misc; /** * 3つの値の組です。 * * @author koichik * @param <T1> * 1番目の値の型 * @param <T2> * 2番目の値の型 * @param <T3> * 3番目の値の型 */ public class Tuple3<T1, T2, T3> { /** 1番目の値 */ protected T1 value1;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb3KeyDerivation.java
import org.bouncycastle.crypto.macs.HMac; import org.bouncycastle.crypto.params.KDFCounterParameters; /** * SMB3 SP800-108 Counter Mode Key Derivation * * @author mbechler * */ final class Smb3KeyDerivation { private static final byte[] SIGNCONTEXT_300 = toCBytes("SmbSign"); private static final byte[] SIGNLABEL_300 = toCBytes("SMB2AESCMAC");
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java
import jcifs.Configuration; import jcifs.internal.smb2.RequestWithFileId; import jcifs.internal.smb2.ServerMessageBlock2Request; import jcifs.internal.smb2.Smb2Constants; import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class Smb2QueryDirectoryRequest extends ServerMessageBlock2Request<Smb2QueryDirectoryResponse> implements RequestWithFileId { /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 10:41:31 UTC 2021 - 6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/ClassUtilTest.java
import org.codelibs.core.exception.EmptyArgumentException; import org.codelibs.core.exception.NoSuchConstructorRuntimeException; import org.codelibs.core.exception.NoSuchFieldRuntimeException; import org.junit.Test; /** * @author higa */ public class ClassUtilTest { /** */ public static final String HOGE = "hoge"; /** * @throws Exception */ @Test(expected = EmptyArgumentException.class)
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 6.2K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts
import groovy.lang.GroovySystem import net.ltgt.gradle.errorprone.CheckSeverity import net.ltgt.gradle.errorprone.errorprone import org.gradle.util.internal.VersionNumber /* * Copyright 2022 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 6.1K bytes - Viewed (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts
/* * Copyright 2020 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS,
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 08 14:54:27 UTC 2024 - 6.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableMapValues.java
import java.io.Serializable; import java.util.Map.Entry; import javax.annotation.CheckForNull; /** * {@code values()} implementation for {@link ImmutableMap}. * * @author Jesse Wilson * @author Kevin Bourrillion */ @GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault final class ImmutableMapValues<K, V> extends ImmutableCollection<V> { private final ImmutableMap<K, V> map;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 3K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMapKeySet.java
import java.io.Serializable; import java.util.Spliterator; import java.util.function.Consumer; import javax.annotation.CheckForNull; /** * {@code keySet()} implementation for {@link ImmutableMap}. * * @author Jesse Wilson * @author Kevin Bourrillion */ @GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault final class ImmutableMapKeySet<K, V> extends IndexedImmutableSet<K> { private final ImmutableMap<K, V> map;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/SystemUtil.java
* governing permissions and limitations under the License. */ package org.codelibs.core.lang; /** * システムプロパティ用のユーティリティクラスです。 * * @author wyukawa * @author shinsuke * */ public abstract class SystemUtil { /** * <code>file.encoding</code>システムプロパティ。例:UTF-8 */ public static final String FILE_ENCODING = System.getProperty("file.encoding");
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.2K bytes - Viewed (0)