- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 325 for LOCAL (0.04 sec)
-
docs/nl/docs/environment-variables.md
De omgevingsvariabele `PATH` zou er bijvoorbeeld zo uit kunnen zien: //// tab | Linux, macOS ```plaintext /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin ``` Dit betekent dat het systeem naar programma's zoekt in de mappen: * `/usr/local/bin` * `/usr/bin` * `/bin` * `/usr/sbin` * `/sbin` //// //// tab | Windows ```plaintext
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 20 11:13:32 UTC 2024 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
} /** * Constructs an NbtSocket with specified local and remote addresses. * * @param address the NetBIOS address to connect to * @param port the remote port number, or 0 for the default NetBIOS session service port * @param localAddr the local address to bind to * @param localPort the local port to bind to * @throws IOException if an I/O error occurs while creating the socket
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/ClientAuthTest.kt
.build() serverCert = HeldCertificate .Builder() .signedBy(serverIntermediateCa) .serialNumber(3L) .commonName("Local Host") .addSubjectAlternativeName(server.hostName) .build() clientRootCa = HeldCertificate .Builder() .serialNumber(1L) .certificateAuthority(1)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 12.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java
logger.debug(indent + artifact + " (not setting artifactScope to: " + ignoredScope + "; local artifactScope " + artifact.getScope() + " wins)"); // TODO better way than static? this might hide messages in a reactor if (!ignoredArtifacts.contains(artifact)) { logger.warn("\n\tArtifact " + artifact + " retains local artifactScope '" + artifact.getScope()
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstaller.java
* * @param basedir the directory where the artifact is stored * @param finalName the name of the artifact sans extension * @param artifact the artifact definition * @param localRepository the local repository to install into * @throws ArtifactInstallationException if an error occurred installing the artifact * @deprecated to be removed before 2.0 after the install/deploy plugins use the alternate
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaConnection.java
private Socket socket; /** * Create new TCP RDMA connection * * @param remote remote socket address * @param local local socket address, may be null */ public TcpRdmaConnection(InetSocketAddress remote, InetSocketAddress local) { super(remote, local); } @Override public void connect() throws IOException { try { socketChannel = SocketChannel.open();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepositoryFactory.java
} return repository; } private boolean isLocalRepository(ArtifactRepository repository) { // unfortunately, the API doesn't allow to tell a remote repo and the local repo apart... return "local".equals(repository.getId()); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
* This specialized method returns a Map of users and local groups for the * target server where keys are SIDs representing an account and each value * is an ArrayList of SIDs represents the local groups that the account is * a member of. * * This method is designed to assist with computing access control for a * given user when the target object's ACL has local groups. Local groups
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepository.java
import org.apache.maven.repository.Proxy; /** * Abstraction of an artifact repository. Artifact repositories can be remote, local, or even build reactor or * IDE workspace. * * @deprecated Avoid use of this type, if you need access to local repository use repository system classes instead. */ @Deprecated public interface ArtifactRepository { String pathOf(Artifact artifact);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.3K bytes - Viewed (1) -
guava/src/com/google/common/util/concurrent/NullnessCasts.java
* doesn't work: Because nullness analyses typically infer the nullness of local variables, * there's no way to assign a {@code @Nullable T} to a field {@code T foo;} and instruct the * analysis that that means "plain {@code T}" rather than the inferred type {@code @Nullable T}. * (And even if annotations on local variables were permitted as an optional hint, no annotation
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 13 20:49:47 UTC 2025 - 4K bytes - Viewed (0)