- Sort Score
- Result 10 results
- Languages All
Results 2131 - 2140 of 7,721 for class2 (0.07 sec)
-
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java
RepositorySystemSession session, List<RemoteRepository> repositories, Class<?> repoClass, String repoId) { if (repoClass != null) { if (WorkspaceRepository.class.isAssignableFrom(repoClass)) { return session.getWorkspaceReader().getRepository(); } else if (LocalRepository.class.isAssignableFrom(repoClass)) { return session.getLocalRepository();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 20.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java
/** * TODO: this is session scoped as SPI can contribute. */ @Named @Singleton public class DefaultPackagingRegistry extends ExtensibleEnumRegistries.DefaultExtensibleEnumRegistry<Packaging, PackagingProvider> implements PackagingRegistry { private static final Logger LOGGER = LoggerFactory.getLogger(DefaultPackagingRegistry.class); private final Lookup lookup; private final TypeRegistry typeRegistry;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
} protected String getUserCodeFromUserBean(final HttpServletRequest request) { final SessionManager sessionManager = ComponentUtil.getComponent(SessionManager.class); String userCode = sessionManager.getAttribute(USER_BEAN, TypicalUserBean.class) .filter(u -> !Constants.EMPTY_USER_ID.equals(u.getUserId())).map(u -> u.getUserId().toString()).orElse(StringUtil.EMPTY); if (StringUtil.isBlank(userCode)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 8.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableTable.java
@GwtCompatible @ElementTypesAreNonnullByDefault abstract class RegularImmutableTable<R, C, V> extends ImmutableTable<R, C, V> { RegularImmutableTable() {} abstract Cell<R, C, V> getCell(int iterationIndex); @Override final ImmutableSet<Cell<R, C, V>> createCellSet() { return isEmpty() ? ImmutableSet.<Cell<R, C, V>>of() : new CellSet(); } @WeakOuter private final class CellSet extends IndexedImmutableSet<Cell<R, C, V>> {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java
import jakarta.annotation.Resource; /** * @author shinsuke * @author Keiichi Watanabe */ public class AdminDictKuromojiAction extends FessAdminAction { public static final String ROLE = "admin-dict"; private static final Logger logger = LogManager.getLogger(AdminDictKuromojiAction.class); // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 18.8K bytes - Viewed (0) -
docs/de/docs/async.md
<img src="/img/async/concurrent-burgers/concurrent-burgers-06.png" class="illustration"> Sie und Ihr Schwarm essen die Burger und haben eine schöne Zeit. ✨ <img src="/img/async/concurrent-burgers/concurrent-burgers-07.png" class="illustration"> /// info Die wunderschönen Illustrationen stammen von <a href="https://www.instagram.com/ketrinadrawsalot" class="external-link" target="_blank">Ketrina Thompson</a>. 🎨 ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 26.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java
@GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault public class ImmutableSortedSetTest extends AbstractImmutableSetTest { @J2ktIncompatible @GwtIncompatible // suite public static Test suite() { TestSuite suite = new TestSuite(); suite.addTest( NavigableSetTestSuiteBuilder.using(new ImmutableSortedSetCopyOfGenerator()) .named(ImmutableSortedSetTest.class.getName()) .withFeatures(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 46.7K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/LoggingInterceptors.java
import java.util.logging.Logger; import okhttp3.Interceptor; import okhttp3.OkHttpClient; import okhttp3.Request; import okhttp3.Response; public final class LoggingInterceptors { private static final Logger logger = Logger.getLogger(LoggingInterceptors.class.getName()); private final OkHttpClient client = new OkHttpClient.Builder() .addInterceptor(new LoggingInterceptor()) .build();
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Fri Jan 01 15:55:32 UTC 2016 - 2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/builder/RequestDataBuilder.java
import org.codelibs.fess.crawler.entity.RequestData.Method; /** * Builder class to create a request. * * @author shinsuke * */ public final class RequestDataBuilder { private RequestDataBuilder() { } public static RequestDataContext newRequestData() { return new RequestDataContext(); } public static class RequestDataContext { private final RequestData data;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoLoginException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class SsoLoginException extends FessSystemException { private static final long serialVersionUID = 1L; public SsoLoginException(final String message) { super(message); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 967 bytes - Viewed (0)