- Sort Score
- Num 10 results
- Language All
Results 931 - 940 of 5,147 for new1 (0.02 seconds)
-
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
try { final Auth auth = new Auth(getSettings(), request, response); final AuthnRequestParams authnRequestParams = new AuthnRequestParams(false, false, true); final String loginUrl = auth.login(null, authnRequestParams, true); request.getSession().setAttribute(SAML_STATE, UuidUtil.create());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 03:13:33 GMT 2026 - 20.2K bytes - Click Count (3) -
src/main/java/org/codelibs/core/io/ReaderUtil.java
assertArgumentNotNull("file", file); assertArgumentNotEmpty("encoding", encoding); try { return new InputStreamReader(new FileInputStream(file), encoding); } catch (final IOException e) { throw new IORuntimeException(e); } } /** * Reads a single line from the given {@link BufferedReader}. * * @param reader
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 4.3K bytes - Click Count (0) -
src/test/java/org/codelibs/core/exception/SIllegalStateExceptionTest.java
@Test public void testSIllegalStateExceptionStringThrowable() { final ClIllegalStateException clIllegalStateException = new ClIllegalStateException("hoge", new NullPointerException()); assertThat(clIllegalStateException.getMessage(), is("hoge")); assertThat(clIllegalStateException.getCause(), instanceOf(NullPointerException.class)); } /** * Test method forCreated: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 2.7K bytes - Click Count (0) -
android/guava-tests/benchmark/com/google/common/math/StatsBenchmark.java
sumOfSquaresOfDeltas = t; } return new MeanAndVariance(mean, sumOfSquaresOfDeltas / values.length); } }, KNUTH { @Override MeanAndVariance variance(double[] values, MeanAlgorithm meanAlgorithm) { if (meanAlgorithm != MeanAlgorithm.KNUTH) { throw new SkipThisScenarioException(); } double mean = values[0];Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed May 14 19:40:47 GMT 2025 - 4.7K bytes - Click Count (0) -
guava-tests/benchmark/com/google/common/math/StatsBenchmark.java
sumOfSquaresOfDeltas = t; } return new MeanAndVariance(mean, sumOfSquaresOfDeltas / values.length); } }, KNUTH { @Override MeanAndVariance variance(double[] values, MeanAlgorithm meanAlgorithm) { if (meanAlgorithm != MeanAlgorithm.KNUTH) { throw new SkipThisScenarioException(); } double mean = values[0];Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed May 14 19:40:47 GMT 2025 - 4.7K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Preconditions.java
@Nullable Object p4) { if (reference == null) { throw new NullPointerException(Platform.lenientFormat(errorMessageTemplate, p1, p2, p3, p4)); } return reference; } /* * All recent hotspots (as of 2009) *really* like to have the natural code * * if (guardExpression) { * throw new BadException(messageExpression); * } *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 08 18:10:02 GMT 2026 - 53.5K bytes - Click Count (0) -
.teamcity/scripts/CheckBadMerge.java
return getStdoutLines(new String[] {"git", "diff", "--name-only", commit + "^1.." + commit}); } private static List<String> branchesOf(String commit) throws IOException, InterruptedException, ExecutionException { List<String> lines = getStdoutLines(new String[] {"git", "branch", "-r", "--contains", commit}); List<String> out = new ArrayList<>(); for (String line : lines) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 16:25:09 GMT 2026 - 9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java
} private JvmObj getJvmObj() { final JvmObj jvmObj = new JvmObj(); final JvmStats jvmStats = JvmStats.jvmStats(); final Mem mem = jvmStats.getMem(); final JvmMemoryObj jvmMemoryObj = new JvmMemoryObj(); jvmObj.memory = jvmMemoryObj; final JvmMemoryHeapObj jvmMemoryHeapObj = new JvmMemoryHeapObj(); jvmMemoryObj.heap = jvmMemoryHeapObj;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 19.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java
assertTrue(TypeToken.of(subclass).isSubtypeOf(supertype)); } @SuppressWarnings("RestrictedApiChecker") // crashes under JDK8, which EP no longer supports public void testSubtypeOfInnerClass_nonStaticAnonymousClass_typeParameterOfOwnerTypeNotMatch() { TypeToken<?> supertype = new TypeToken<Mall<Outdoor>.Shop<Electronics>>() {};
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 20.4K bytes - Click Count (0) -
guava/src/com/google/common/collect/LinkedHashMultiset.java
extends AbstractMapBasedMultiset<E> { /** Creates a new, empty {@code LinkedHashMultiset} using the default initial capacity. */ public static <E extends @Nullable Object> LinkedHashMultiset<E> create() { return new LinkedHashMultiset<>(); } /** * Creates a new, empty {@code LinkedHashMultiset} with the specified expected number of distinct * elements. *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 05 23:15:58 GMT 2025 - 3.8K bytes - Click Count (0)