- Sort Score
- Num 10 results
- Language All
Results 3971 - 3980 of 5,779 for classe (0.04 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleTaskSegmentCalculator.java
import org.apache.maven.plugin.version.PluginVersionResolutionException; /** * <p> * Calculates the task segments in the build * </p> * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice. * * @since 3.0 */ public interface LifecycleTaskSegmentCalculator { List<TaskSegment> calculateTaskSegments(MavenSession session)
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/providers/AbstractLifecycleProvider.java
import java.util.HashMap; import java.util.LinkedHashMap; import org.apache.maven.lifecycle.Lifecycle; import org.apache.maven.lifecycle.mapping.LifecyclePhase; /** * Base lifecycle provider. */ public abstract class AbstractLifecycleProvider implements Provider<Lifecycle> { private final Lifecycle lifecycle; protected AbstractLifecycleProvider(String id, String[] phases, String[] pluginBindings) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/exception/SuggestSettingsException.java
* Constructs a new SuggestSettingsException with the specified cause. * @param cause The cause. */ public SuggestSettingsException(final Throwable cause) { super(cause); } /** * Constructs a new SuggestSettingsException with the specified detail message and cause. * @param msg The detail message. * @param cause The cause. */Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Fri Jul 04 14:00:23 GMT 2025 - 2.1K bytes - Click Count (0) -
benchmarks/src/main/java/org/elasticsearch/common/bytes/PagedBytesReferenceReadVIntBenchmark.java
import java.util.concurrent.TimeUnit; @Warmup(iterations = 5) @Measurement(iterations = 7) @BenchmarkMode(Mode.AverageTime) @OutputTimeUnit(TimeUnit.MILLISECONDS) @State(Scope.Thread) @Fork(value = 1) public class PagedBytesReferenceReadVIntBenchmark { @Param(value = { "10000000" }) int entries; private StreamInput streamInput; @Setup public void initResults() throws IOException {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Apr 12 20:25:06 GMT 2021 - 2.2K bytes - Click Count (0) -
benchmarks/src/main/java/org/elasticsearch/common/bytes/PagedBytesReferenceReadVLongBenchmark.java
import java.util.concurrent.TimeUnit; @Warmup(iterations = 5) @Measurement(iterations = 7) @BenchmarkMode(Mode.AverageTime) @OutputTimeUnit(TimeUnit.MILLISECONDS) @State(Scope.Thread) @Fork(value = 1) public class PagedBytesReferenceReadVLongBenchmark { @Param(value = { "10000000" }) int entries; private StreamInput streamInput; @Setup public void initResults() throws IOException {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Apr 12 20:25:06 GMT 2021 - 2.2K bytes - Click Count (0) -
build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/VersionPropertiesLoader.java
// Define this here because we need it early. public class VersionPropertiesLoader { static Properties loadBuildSrcVersion(File input, ProviderFactory providerFactory) throws IOException { Properties props = new Properties(); InputStream is = new FileInputStream(input); try { props.load(is); } finally { is.close(); } loadBuildSrcVersion(props, providerFactory);Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Aug 09 07:39:30 GMT 2021 - 2.7K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableSortedMap.java
throw new InvalidObjectException("Use SerializedForm"); } // This class is never actually serialized directly, but we have to make the // warning go away (and suppressing would suppress for all nested classes too) @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; /**
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 08 18:10:02 GMT 2026 - 54.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/SearchForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.relatedcontent; /** * The search form for Related Content. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The search term field for related content. */ public String term;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/SearchBody.java
*/ package org.codelibs.fess.app.web.api.admin.scheduler; import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for scheduler administration API. */ public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); } /** Scheduler ID */ public String id;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 994 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/SearchForm.java
*/ package org.codelibs.fess.app.web.admin.dict.synonym; import org.lastaflute.web.validation.Required; /** * The search form for Synonym. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The dictionary ID field for synonym dictionary operations. */ @RequiredCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1007 bytes - Click Count (0)