- Sort Score
- Result 10 results
- Languages All
Results 841 - 850 of 1,698 for param7 (0.17 sec)
-
android/guava/src/com/google/common/graph/UndirectedNetworkConnections.java
import java.util.Collections; import java.util.Map; import java.util.Set; /** * An implementation of {@link NetworkConnections} for undirected networks. * * @author James Sexton * @param <N> Node parameter type * @param <E> Edge parameter type */ @ElementTypesAreNonnullByDefault final class UndirectedNetworkConnections<N, E> extends AbstractUndirectedNetworkConnections<N, E> {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 01 17:18:04 UTC 2021 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralRequestBuffer.java
/** * @author mbechler * */ public class DfsReferralRequestBuffer implements Encodable { private final int maxReferralLevel; private final String path; /** * @param filename * @param maxReferralLevel */ public DfsReferralRequestBuffer ( String filename, int maxReferralLevel ) { this.path = filename; this.maxReferralLevel = maxReferralLevel; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComQueryInformation.java
import jcifs.Configuration; import jcifs.internal.smb1.ServerMessageBlock; /** * */ public class SmbComQueryInformation extends ServerMessageBlock { /** * * @param config * @param filename */ public SmbComQueryInformation ( Configuration config, String filename ) { super(config, SMB_COM_QUERY_INFORMATION, filename); } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuildingResult.java
private PersistedToolchains effectiveToolchains; private List<Problem> problems; /** * Default constructor * * @param effectiveToolchains the merged toolchains, may not be {@code null} * @param problems the problems while building the effectiveToolchains, if any. */ public DefaultToolchainsBuildingResult(PersistedToolchains effectiveToolchains, List<Problem> problems) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/NetServerEnum2.java
"WrLehDO\u0000B16BBDz\u0000", "WrLehDz\u0000B16BBDz\u0000", }; String domain, lastName = null; int serverTypes; /** * * @param config * @param domain * @param serverTypes */ public NetServerEnum2 ( Configuration config, String domain, int serverTypes ) { super(config, SMB_COM_TRANSACTION, NET_SERVER_ENUM2); this.domain = domain;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuilder.java
* The model building request passed to this method must be the same as the one used for the first phase of the * model building. * * @param request The model building request that holds the parameters, must not be {@code null}. * @param result The interim result of the first phase of model building, must not be {@code null}. * @return The result of the model building, never {@code null}.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0) -
src/test/java/jcifs/tests/AllTests.java
} } return configs; } /** * @param config * @param applyMutations * @param configs * @throws IOException */ protected static void loadConfigFile ( Path config, String[] applyMutations, Map<String, Map<String, String>> configs ) throws IOException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 14.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/Lists.java
* argument count. * * <p>The returned list is serializable and implements {@link RandomAccess}. * * @param first the first element * @param second the second element * @param rest an array of additional elements, possibly empty * @return an unmodifiable list containing the specified elements */ public static <E extends @Nullable Object> List<E> asList(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 43.1K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/math/BigIntegerMathRoundingBenchmark.java
import static com.google.common.math.MathBenchmarking.randomPositiveBigInteger; import com.google.caliper.BeforeExperiment; import com.google.caliper.Benchmark; import com.google.caliper.Param; import java.math.BigInteger; import java.math.RoundingMode; /** * Benchmarks for the rounding methods of {@code BigIntegerMath}. * * @author Louis Wasserman */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 30 13:06:20 UTC 2020 - 2.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactFactory.java
/** * Service used to create {@link Artifact} objects. * * @since 4.0.0 */ @Experimental public interface ArtifactFactory extends Service { /** * Creates an artifact. * * @param request the request holding artifact creation parameters * @return an {@code Artifact}, never {@code null} * @throws IllegalArgumentException if {@code request} is null or {@code request.session} is null or invalid */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 3.3K bytes - Viewed (0)