Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 539 for resolve1 (0.06 sec)

  1. docs/federation/lookup/README.md

    1. `config.json` and bucket DNS SRV records. `MINIO_DOMAIN` indicates the domain suffix for the bucket which
    2. will be used to resolve bucket through DNS. For example if you have a bucket such as `mybucket`, the
    3. client can use now `mybucket.domain.com` to directly resolve itself to the right cluster. `MINIO_PUBLIC_IPS`
    4. points to the public IP address where each cluster might be accessible, this is unique for each cluster.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java

    1. import javax.inject.Named;
    2. import javax.inject.Singleton;
    3.  
    4. import java.util.Map;
    5.  
    6. import org.apache.maven.artifact.repository.ArtifactRepository;
    7. import org.apache.maven.artifact.resolver.ArtifactNotFoundException;
    8. import org.apache.maven.artifact.resolver.ArtifactResolutionException;
    9. import org.apache.maven.artifact.versioning.InvalidVersionSpecificationException;
    10. import org.apache.maven.execution.MavenSession;
    11. import org.apache.maven.model.Plugin;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

    1. * The server name may also be a DNS name as it is in this example. See
    2. * <a href="../../../resolver.html">Setting Name Resolution Properties</a>
    3. * for details.
    4. * </td>
    5. * </tr>
    6. *
    7. * <tr>
    8. * <td width="20%"><code>smb://192.168.1.15/ADMIN$/</code></td>
    9. * <td>
    10. * The server name may also be an IP address. See <a
    11. * href="../../../resolver.html">Setting Name Resolution Properties</a>
    12. * for details.
    13. * </td>
    14. * </tr>
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NbtAddress.java

    1. *
    2. * @throws UnknownHostException if the host cannot be resolved to find out.
    3. */
    4.  
    5. public int getNodeType() throws UnknownHostException {
    6. checkData();
    7. return nodeType;
    8. }
    9.  
    10. /**
    11. * Determines if this address in the process of being deleted.
    12. *
    13. * @throws UnknownHostException if the host cannot be resolved to find out.
    14. */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/EnumTest.java

    1. try ( SmbResource root = ctx.get(getTestShareURL());
    2. SmbResource f = root.resolve(makeRandomDirectoryName()) ) {
    3. f.mkdir();
    4. try {
    5. for ( int i = 0; i < numFiles; i++ ) {
    6. try ( SmbResource r = f.resolve(String.format("%04x", i)) ) {
    7. r.createNewFile();
    8. }
    9. }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  6. compat/maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java

    1. || getBaseVersion().equals(LATEST_VERSION));
    2. }
    3.  
    4. @Override
    5. public void setResolved(boolean resolved) {
    6. this.resolved = resolved;
    7. }
    8.  
    9. @Override
    10. public boolean isResolved() {
    11. return resolved;
    12. }
    13.  
    14. @Override
    15. public void setResolvedVersion(String version) {
    16. this.version = version;
    17. // retain baseVersion
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/NetbiosAddress.java

    1. */
    2. boolean isActive ( CIFSContext tc ) throws UnknownHostException;
    3.  
    4.  
    5. /**
    6. * Determines if this address is set to be permanent.
    7. *
    8. * @param tc
    9. * context to use
    10. * @return whether this address is permanent
    11. *
    12. * @throws UnknownHostException
    13. * if the host cannot be resolved to find out.
    14. */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  8. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/artifact/MavenArtifactProperties.java

    1. * under the License.
    2. */
    3. package org.apache.maven.repository.internal.artifact;
    4.  
    5. /**
    6. * The keys for Maven specific properties of artifacts. These properties "extend" (or supplement) the Resolver
    7. * core properties defined in {@link org.eclipse.aether.artifact.ArtifactProperties}.
    8. *
    9. * @see org.eclipse.aether.artifact.ArtifactProperties
    10. * @since 4.0.0
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbResource.java

    1. * <p>
    2. * Initially, the SIDs within each ACE will not be resolved however when
    3. * <tt>getType()</tt>, <tt>getDomainName()</tt>, <tt>getAccountName()</tt>,
    4. * or <tt>toString()</tt> is called, the names will attempt to be
    5. * resolved. If the names cannot be resolved (e.g. due to temporary
    6. * network failure), the said methods will return default values (usually
    7. * <tt>S-X-Y-Z</tt> strings of fragments of).
    8. * <p>
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (1)
  10. compat/maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultPathTranslator.java

    1. * under the License.
    2. */
    3. package org.apache.maven.model.path;
    4.  
    5. import javax.inject.Named;
    6. import javax.inject.Singleton;
    7.  
    8. import java.io.File;
    9. import java.nio.file.Path;
    10.  
    11. /**
    12. * Resolves relative paths against a specific base directory.
    13. *
    14. * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead
    15. */
    16. @Named
    17. @Singleton
    18. @Deprecated(since = "4.0.0")
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top