- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 299 for Initializer (0.15 sec)
-
android/guava/src/com/google/common/math/LinearTransformation.java
RegularLinearTransformation(double slope, double yIntercept) { this.slope = slope; this.yIntercept = yIntercept; this.inverse = null; // to be lazily initialized } RegularLinearTransformation(double slope, double yIntercept, LinearTransformation inverse) { this.slope = slope; this.yIntercept = yIntercept; this.inverse = inverse; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 9.7K bytes - Viewed (0) -
android/pom.xml
<groupId>org.mvnsearch</groupId> <artifactId>toolchains-maven-plugin</artifactId> <executions> <execution> <id>download-11</id> <phase>initialize</phase> <goals> <goal>toolchain</goal> </goals> <configuration> <toolchains> <jdk>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 24.3K bytes - Viewed (0) -
pom.xml
<groupId>org.mvnsearch</groupId> <artifactId>toolchains-maven-plugin</artifactId> <executions> <execution> <id>download-11</id> <phase>initialize</phase> <goals> <goal>toolchain</goal> </goals> <configuration> <toolchains> <jdk>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 23.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/DesignForm.java
* Handles upload and management of design templates and CSS files. */ public class DesignForm { /** * Creates a new instance of DesignForm. * This constructor initializes the form for design file management * in the admin interface, handling upload and management of templates and CSS files. */ public DesignForm() { // Default constructor with explicit documentation
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/AbstractSetTester.java
@SuppressWarnings("JUnit4ClassUsedInJUnit3") public class AbstractSetTester<E> extends AbstractCollectionTester<E> { /* * Previously we had a field named set that was initialized to the value of * collection in setUp(), but that caused problems when a tester changed the * value of set or collection but not both. */ protected final Set<E> getSet() { return (Set<E>) collection; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 1.4K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AggregateFutureState.java
import org.jspecify.annotations.Nullable; /** Emulation of AggregateFutureState. */ abstract class AggregateFutureState<OutputT extends @Nullable Object> extends AbstractFuture.TrustedFuture<OutputT> { // Lazily initialized the first time we see an exception; not released until all the input futures // & this future completes. Released when the future releases the reference to the running state private @Nullable Set<Throwable> seenExceptions = null;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/validation/CronExpressionValidator.java
/** * Default constructor. */ public CronExpressionValidator() { // Empty constructor } @Override public void initialize(final CronExpression constraintAnnotation) { } @Override public boolean isValid(final String value, final ConstraintValidatorContext context) { return determineValid(value); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
private IngestFactory ingestFactory = null; /** * Default constructor for IndexUpdater. * Initializes a new instance with default settings. */ public IndexUpdater() { super(); } /** * Initializes the IndexUpdater after dependency injection. * Sets up the ingest factory if available in the component container. */ @PostConstruct
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
util/gradle_integration_tests.sh
# (And we run it after the main build so that that build has already downloaded Java 11 if necessary.) ./mvnw --projects '!guava-testlib,!guava-tests,!guava-bom,!guava-gwt' initialize -P print-java-11-home export JAVA_HOME=$(<target/java_11_home) # Gradle Wrapper overwrites some files when it runs. # To avoid modifying the Git client, we copy everything we need to another directory.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jan 02 19:24:12 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
propFile.deleteOnExit(); try (FileOutputStream fos = new FileOutputStream(propFile)) { fos.write("fess.version=1.0.0".getBytes()); } // Initialize SystemHelper systemHelper = new SystemHelper() { @Override protected void parseProjectProperties(final java.nio.file.Path propPath) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0)