- Sort Score
- Result 10 results
- Languages All
Results 1541 - 1550 of 4,169 for auteur (0.05 sec)
-
guava-tests/benchmark/com/google/common/collect/HashMultisetAddPresentBenchmark.java
import com.google.caliper.Benchmark; import java.util.ArrayList; import java.util.List; import java.util.Random; /** * Benchmark for HashMultiset.add for an already-present element. * * @author Louis Wasserman */ public class HashMultisetAddPresentBenchmark { private static final int ARRAY_MASK = 0x0ffff; private static final int ARRAY_SIZE = 0x10000;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvPair.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.ntlmssp.av; /** * @author mbechler * */ public class AvPair { /** * EOL type */ public static final int MsvAvEOL = 0x0; /** * Flags type */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvSingleHost.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.ntlmssp.av; import jcifs.Configuration; import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class AvSingleHost extends AvPair { /** * @param raw */ public AvSingleHost ( byte[] raw ) { super(AvPair.MsvAvSingleHost, raw); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeOutputStream.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; import jcifs.CIFSException; /** * @author mbechler * */ public class SmbPipeOutputStream extends SmbFileOutputStream { private SmbPipeHandleImpl handle; /** * @param handle * @throws SmbException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/StaticJAASConfiguration.java
import java.util.Map; import javax.security.auth.login.AppConfigurationEntry; import javax.security.auth.login.AppConfigurationEntry.LoginModuleControlFlag; import javax.security.auth.login.Configuration; /** * @author mbechler * */ class StaticJAASConfiguration extends Configuration { private Map<String, ?> options; /** * Initialize a static JAAS configuration with default settings */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/UnmodifiableListIterator.java
import java.util.ListIterator; import org.checkerframework.checker.nullness.qual.Nullable; /** * A list iterator that does not support {@link #remove}, {@link #add}, or {@link #set}. * * @since 7.0 * @author Louis Wasserman */ @GwtCompatible @ElementTypesAreNonnullByDefault public abstract class UnmodifiableListIterator<E extends @Nullable Object> extends UnmodifiableIterator<E> implements ListIterator<E> {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jul 09 17:31:04 UTC 2021 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/EmptyArgumentException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.exception; /** * 空の場合にスローされる例外です。 * * @author higa */ public class EmptyArgumentException extends ClIllegalArgumentException { private static final long serialVersionUID = 4625805280526951642L; /** * {@link EmptyArgumentException}を作成します。
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.8K bytes - Viewed (0) -
guava/src/com/google/common/io/package-info.java
* library. For more information on Sources and Sinks as well as other features of this package, see * <a href="https://github.com/google/guava/wiki/IOExplained">I/O Explained</a> on the Guava wiki. * * @author Chris Nokleberg */ @CheckReturnValue @ParametersAreNonnullByDefault package com.google.common.io; import com.google.errorprone.annotations.CheckReturnValue;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jun 23 19:57:03 UTC 2023 - 1.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/TestUtil.java
*/ package org.codelibs.core; import static org.hamcrest.CoreMatchers.is; import org.hamcrest.CoreMatchers; import org.hamcrest.Matcher; /** * @author koichik */ public abstract class TestUtil { /** * 実際の値が期待する{@literal clazz}と等しいかを検証する{@link Matcher}を返します。 * * <pre>assertThat(clazz, is(Xxx.class));</pre> * <p>
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.4K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/BeanMapTest.java
import static org.junit.Assert.assertThat; import org.codelibs.core.exception.IllegalKeyOfBeanMapException; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; /** * @author higa */ public class BeanMapTest { /** * @see org.junit.rules.ExpectedException */ @Rule public ExpectedException exception = ExpectedException.none(); /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.7K bytes - Viewed (0)