- Sort Score
- Result 10 results
- Languages All
Results 1971 - 1980 of 4,322 for nulls (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 32.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponseTest.java
int bytesRead = response.readDataWireFormat(buffer, 0, buffer.length); assertEquals(20, bytesRead, "Should read 20 bytes"); assertNotNull(response.info, "Info object should not be null"); assertTrue(response.info instanceof Trans2QueryFSInformationResponse.SmbInfoAllocation, "Info should be of type SmbInfoAllocation");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java
} /** * @return Required active project selectors, never {@code null}. */ public Set<String> getRequiredActiveProjectSelectors() { return getProjectSelectors(pa -> !pa.optional() && pa.active()); } /** * @return Optional active project selectors, never {@code null}. */ public Set<String> getOptionalActiveProjectSelectors() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 7.2K bytes - Viewed (0) -
tests/test_request_params/test_query/test_optional_str.py
def test_optional_str_schema(path: str): assert app.openapi()["paths"][path]["get"]["parameters"] == [ { "required": False, "schema": { "anyOf": [{"type": "string"}, {"type": "null"}], "title": "P", }, "name": "p", "in": "query", } ] @pytest.mark.parametrize( "path", ["/optional-str", "/model-optional-str"],
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 18:19:10 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exbhv/BoostDocumentRuleBhv.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class BoostDocumentRuleBhv extends BsBoostDocumentRuleBhv { private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexConfigIndex(); indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_config"), name);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exbhv/FileConfigBhv.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class FileConfigBhv extends BsFileConfigBhv { private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexConfigIndex(); indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_config"), name);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exbhv/JobLogBhv.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class JobLogBhv extends BsJobLogBhv { private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexConfigIndex(); indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_config"), name);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.2K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/AcceptedViolationsProvider.groovy
private final File acceptedViolationsDir private Map<String, String> acceptedViolations = null AcceptedViolationsProvider(Directory acceptedViolationsDir) { this.acceptedViolationsDir = acceptedViolationsDir.asFile } Map<String, String> get() { if (acceptedViolations == null) { acceptedViolations = AcceptedApiChanges.parse( acceptedViolationsDir.listFiles()Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:14:25 UTC 2025 - 1.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildSummary.java
* @param project The project being summarized, must not be {@code null}. * @param execTime The exec time of the project in milliseconds. * @param wallTime The wall time of the project in milliseconds. */ protected BuildSummary(MavenProject project, Duration execTime, Duration wallTime) { this.project = Objects.requireNonNull(project, "project cannot be null"); // TODO Validate for < 0? this.execTime = execTime;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 3K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java
Model merged = mavenMerger.merge(target, source, true, null); assertEquals( "SOURCE", merged.getArtifactId(), "Expected merged artifactId to be SOURCE but was " + merged.getArtifactId()); merged = mavenMerger.merge(target, source, false, null); assertEquals( "TARGET", merged.getArtifactId(),Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 3.6K bytes - Viewed (0)