- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 6,368 for For (0.01 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/WorkspaceRepository.java
* or similar ad-hoc collections of artifacts. This repository is considered read-only * within the context of a session, meaning it can only be used for artifact resolution, * not for installation or deployment. This interface does not provide direct access * to artifacts; that functionality is handled by a {@code WorkspaceReader}. */ public interface WorkspaceRepository extends Repository { /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
* @return a new LdapUser instance */ protected LdapUser createLdapUser(final String username, final Hashtable<String, String> env) { return new LdapUser(env, username); } /** * Retrieves roles for the specified LDAP user based on the provided filters. * * @param ldapUser the LDAP user to retrieve roles for * @param bindDn the bind DN for LDAP connection
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
} catch (final Exception e) { throw new StorageException("Failed to update tags for " + objectName, e); } } /** * Retrieves the tags for a storage object from the MinIO system. * * @param objectName the name of the object to get tags for * @return map of tag key-value pairs * @throws StorageException if retrieving tags fails */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.1K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacSignatureTest.java
import java.io.ByteArrayOutputStream; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.ByteOrder; import org.junit.jupiter.api.Test; /** * Tests for the PacSignature class. */ class PacSignatureTest { /** * Helper method to write integer in little-endian format. */ private void writeLittleEndianInt(ByteArrayOutputStream baos, int value) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/AbstractVersionTransformation.java
throws RepositoryMetadataResolutionException { RepositoryMetadata metadata; // Don't use snapshot metadata for LATEST (which isSnapshot returns true for) if (!artifact.isSnapshot() || Artifact.LATEST_VERSION.equals(artifact.getBaseVersion())) { metadata = new ArtifactRepositoryMetadata(artifact); } else {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java
import jakarta.annotation.Resource; /** * Admin action for Stemmer Override management. * */ public class AdminDictStemmeroverrideAction extends FessAdminAction { /** * Default constructor. */ public AdminDictStemmeroverrideAction() { super(); } /** * The role for this action. */ public static final String ROLE = "admin-dict";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-HostnamesCommon.kt
labelStart = dot + 1 } return false } internal fun String.containsInvalidHostnameAsciiCodes(): Boolean { for (i in 0 until length) { val c = this[i] // The WHATWG Host parsing rules accepts some character codes which are invalid by // definition for OkHttp's host header checks (and the WHATWG Host syntax definition). Here // we rule out characters that would cause problems in host headers.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
/** * The key for user roles in the request attribute. */ protected static final String USER_ROLES = "userRoles"; /** * The cached cipher for encryption and decryption. */ protected CachedCipher cipher; /** * The separator for values in the role string. */ protected String valueSeparator = "\n"; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java
* * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/collect/SetIterationBenchmark.java
setToTest = (Set<Element>) impl.create(sampleData.getValuesInSet()); } @Benchmark int iteration(int reps) { int x = 0; for (int i = 0; i < reps; i++) { for (Element y : setToTest) { x ^= System.identityHashCode(y); } } return x; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2K bytes - Viewed (0)