- Sort Score
- Result 10 results
- Languages All
Results 611 - 620 of 2,682 for SET (0.06 sec)
-
src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateRequest.java
/** * Get the minimum SMB Direct protocol version * * @return minimum protocol version */ public int getMinVersion() { return minVersion; } /** * Set the minimum SMB Direct protocol version * * @param minVersion minimum protocol version */ public void setMinVersion(int minVersion) { this.minVersion = minVersion; } /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 5.4K bytes - Viewed (0) -
guava/src/com/google/common/graph/AbstractDirectedNetworkConnections.java
checkState(selfLoopCount <= inEdgeMap.size() && selfLoopCount <= outEdgeMap.size()); } @Override public Set<N> adjacentNodes() { return Sets.union(predecessors(), successors()); } @Override public Set<E> incidentEdges() { return new AbstractSet<E>() { @Override public UnmodifiableIterator<E> iterator() { Iterable<E> incidentEdges =
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/CoreExtension.java
return this.version; } // -- String getVersion() /** * Set the artifact ID of the extension. * * @param artifactId a artifactId object. */ public void setArtifactId(String artifactId) { this.artifactId = artifactId; } // -- void setArtifactId( String ) /** * Set the class loading strategy: 'self-first' (the default),Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 4.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/SetWithResolutionResult.java
implements ProjectArtifactsCache.ArtifactsSetWithResult { final DependencyResolutionResult result; final Set<Artifact> artifacts; public SetWithResolutionResult(DependencyResolutionResult result, Set<Artifact> artifacts) { this.result = result; this.artifacts = Collections.unmodifiableSet(artifacts); } @Override public Iterator<Artifact> iterator() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MapsCollectionTest.java
Set<String> set = new LinkedHashSet<>(); for (Object e : elements) { Entry<?, ?> entry = (Entry<?, ?>) e; checkNotNull(entry.getValue()); set.add((String) checkNotNull(entry.getKey())); } return Maps.asMap( set,
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 32.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java
*/ int VALIDATION_LEVEL_STRICT = VALIDATION_LEVEL_MAVEN_3_0; /** * Gets the raw model to build. If not set, model source will be used to load raw model. * * @return The raw model to build or {@code null} if not set. */ Model getRawModel(); /** * Set raw model. * * @param rawModel */ ModelBuildingRequest setRawModel(Model rawModel); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 12.8K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/GAVUtilsTest.java
* under the License. */ package org.apache.maven.cling.invoker.mvnup.goals; import java.nio.file.Path; import java.nio.file.Paths; import java.util.HashMap; import java.util.Map; import java.util.Set; import java.util.stream.Stream; import eu.maveniverse.domtrip.Document; import eu.maveniverse.domtrip.maven.Coordinates; import org.apache.maven.cling.invoker.mvnup.UpgradeContext; import org.junit.jupiter.api.BeforeEach;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 17.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ExtractDataTest.java
assertEquals("analysis", retrievedKeywords[2]); String[] retrievedPasswords = data.getValues(ExtractData.FILE_PASSWORDS); assertEquals(2, retrievedPasswords.length); // Verify key set Set<String> keySet = data.getKeySet(); assertEquals(7, keySet.size()); assertTrue(keySet.contains("title")); assertTrue(keySet.contains("author")); assertTrue(keySet.contains("keywords"));
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenInit.java
* @param contextFlags the context flags to set */ public void setContextFlags(final int contextFlags) { this.contextFlags = contextFlags; } /** * Checks if a specific context flag is set * @param flag the context flag to check * @return true if the flag is set, false otherwise */ public boolean getContextFlag(final int flag) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0)