- Sort Score
- Result 10 results
- Languages All
Results 2971 - 2980 of 3,596 for authFn (0.04 sec)
-
src/main/webapp/js/admin/plugins/form-validator/file.js
/** File generated by Grunt -- do not modify * JQUERY-FORM-VALIDATOR * * @version 2.3.77 * @website http://formvalidator.net/ * @author Victor Jonsson, http://victorjonsson.se * @license MIT */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 4.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestsForListsInJavaUtil.java
import junit.framework.TestSuite; /** * Generates a test suite covering the {@link List} implementations in the {@link java.util} * package. Can be subclassed to specify tests that should be suppressed. * * @author Kevin Bourrillion */ @GwtIncompatible public class TestsForListsInJavaUtil { public static Test suite() { return new TestsForListsInJavaUtil().allTests(); } public Test allTests() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 11.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/AbstractTableReadTest.java
import com.google.common.testing.NullPointerTester; import junit.framework.TestCase; import org.checkerframework.checker.nullness.qual.Nullable; /** * Test cases for {@link Table} read operations. * * @author Jared Levy */ @GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault public abstract class AbstractTableReadTest<C extends @Nullable Character> extends TestCase { protected Table<String, Integer, C> table;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 15 17:36:06 UTC 2024 - 6.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/Fingerprint2011Test.java
import com.google.common.collect.Ordering; import com.google.common.primitives.UnsignedLong; import java.util.Arrays; import junit.framework.TestCase; /** * Unit test for Fingerprint2011. * * @author ******@****.*** (Kyle Maddison) */ public class Fingerprint2011Test extends TestCase { // Length of the sample string to produce private static final int MAX_BYTES = 1000;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 7.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractIterator.java
* return s; * } * } * return endOfData(); * } * }; * } * }</pre> * * <p>This class supports iterators that include null elements. * * @author Kevin Bourrillion * @since 2.0 */ // When making changes to this class, please also update the copy at // com.google.common.base.AbstractIterator @GwtCompatible @ElementTypesAreNonnullByDefault
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Mar 18 02:04:10 UTC 2022 - 6.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractMultimap.java
import javax.annotation.CheckForNull; import org.checkerframework.checker.nullness.qual.Nullable; /** * A skeleton {@code Multimap} implementation, not necessarily in terms of a {@code Map}. * * @author Louis Wasserman */ @GwtCompatible @ElementTypesAreNonnullByDefault abstract class AbstractMultimap<K extends @Nullable Object, V extends @Nullable Object> implements Multimap<K, V> { @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 21:08:00 UTC 2021 - 7.1K bytes - Viewed (0) -
cmd/main.go
// Set up app. cli.HelpFlag = cli.BoolFlag{ Name: "help, h", Usage: "show help", } cli.VersionPrinter = printMinIOVersion app := cli.NewApp() app.Name = name app.Author = "MinIO, Inc." app.Version = ReleaseTag app.Usage = "High Performance Object Storage" app.Description = `Build high performance data infrastructure for machine learning, analytics and application data workloads with MinIO`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jul 30 22:59:48 UTC 2024 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileHandleImpl.java
import jcifs.SmbFileHandle; import jcifs.internal.smb1.com.SmbComBlankResponse; import jcifs.internal.smb1.com.SmbComClose; import jcifs.internal.smb2.create.Smb2CloseRequest; import jcifs.util.Hexdump; /** * @author mbechler * */ class SmbFileHandleImpl implements SmbFileHandle { private static final Logger log = LoggerFactory.getLogger(SmbFileHandleImpl.class); private final Configuration cfg;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/jar/JarFileUtil.java
import org.codelibs.core.log.Logger; import org.codelibs.core.net.JarURLConnectionUtil; import org.codelibs.core.net.URLUtil; /** * {@link java.util.jar.JarFile}を扱うユーティリティクラスです。 * * @author higa */ public abstract class JarFileUtil { private static final Logger logger = Logger.getLogger(JarFileUtil.class); /** * 指定されたJarファイルを読み取るための<code>JarFile</code>を作成して返します。 *
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/zip/ZipFileUtil.java
import org.codelibs.core.io.FileUtil; import org.codelibs.core.log.Logger; import org.codelibs.core.net.URLUtil; /** * {@link java.util.zip.ZipFile}を扱うユーティリティクラスです。 * * @author higa */ public abstract class ZipFileUtil { private static final Logger logger = Logger.getLogger(ZipFileUtil.class); /** * 指定されたZipファイルを読み取るための<code>ZipFile</code>を作成して返します。 *
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.1K bytes - Viewed (0)