- Sort Score
- Result 10 results
- Languages All
Results 3351 - 3360 of 4,194 for voir (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java
* The size field for controlling page size. */ public String size; /** * Sets the page size for search log results. * * @param size the page size to set */ public void setPageSize(final int size) { this.size = Integer.toString(size); } /** * Gets the page size for search log results with validation.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/NormalizerChain.java
return tmp; } /** * Adds a normalizer to the chain. * @param normalizer The normalizer to add. * @throws IllegalArgumentException if normalizer is null */ public void add(final Normalizer normalizer) { if (normalizer == null) { throw new IllegalArgumentException("normalizer must not be null"); } normalizers.add(normalizer); }Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:23:01 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java
/** * Adds a CORS handler for the specified origin. * * @param origin the origin pattern (can be "*" for wildcard) * @param handler the CORS handler to associate with the origin */ public void add(final String origin, final CorsHandler handler) { if (logger.isDebugEnabled()) { logger.debug("Loaded CorsHandler: origin={}", origin); } handerMap.put(origin, handler); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 2.2K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/hash/HashFunctionBenchmark.java
@Param({"10", "1000", "100000", "1000000"}) private int size; @Param HashFunctionEnum hashFunctionEnum; private byte[] testBytes; @BeforeExperiment void setUp() { testBytes = new byte[size]; random.nextBytes(testBytes); } @Benchmark int hasher(int reps) { HashFunction hashFunction = hashFunctionEnum.getHashFunction(); int result = 37;Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2.4K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/DefaultProfileSelectorTest.java
Activation activation = new Activation(); Profile profile = new Profile(); profile.setId(id); profile.setActivation(activation); return profile; } @Test void testThrowingActivator() { DefaultProfileSelector selector = new DefaultProfileSelector(); selector.addProfileActivator(new ProfileActivator() { @Override
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 2.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CWD.java
* * @throws NullPointerException if {@code seg} is {@code null}. * @throws IllegalArgumentException if {@code seg} leads to non-existent directory. */ public void change(String seg) { Path newCwd = resolve(seg); if (Files.isDirectory(newCwd)) { this.directory = newCwd; } else {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Mar 24 14:09:05 UTC 2025 - 2.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/MavenScopeDependenciesValidator.java
@Inject MavenScopeDependenciesValidator(PluginValidationManager pluginValidationManager) { super(pluginValidationManager); } @Override protected void doValidate( RepositorySystemSession session, Artifact pluginArtifact, ArtifactDescriptorResult artifactDescriptorResult) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/properties/internal/EnvironmentUtils.java
* variable lookup. * * @param props The properties to add the environment variables to, may be {@code null}. */ public static void addEnvVars(Properties props) { if (props != null) { if (envVars == null) { Properties tmp = new Properties(); boolean caseSensitive = !Os.IS_WINDOWS;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java
import com.google.inject.Scope; import com.google.inject.name.Named; /** * SessionScope */ public class SessionScope extends org.apache.maven.impl.di.SessionScope implements Scope { public <T> void seed(Class<T> clazz, Provider<T> value) { getScopeState().seed(clazz, value::get); } @Override public <T> Provider<T> scope(final Key<T> key, final Provider<T> unscoped) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.2K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/canonical/CanonicalProjectBuilderTest.java
import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; /** */ class CanonicalProjectBuilderTest extends AbstractMavenProjectTestCase { @Test void testProjectBuilder() throws Exception { File f = getFileForClasspathResource("canonical-pom.xml"); MavenProject project = getProject(f);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 3.4K bytes - Viewed (0)