Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 25 for WINS (0.37 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                        i++;
                    } else if (s.equalsIgnoreCase("WINS")) {
                        if (NbtAddress.getWINSAddress() == null) {
                            if (LogStream.level > 1) {
                                log.println("NetBIOS resolveOrder specifies WINS however the "
                                        + "jcifs.smb1.netbios.wins property has not been set");
                            }
                            continue;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 17.6K bytes
    - Click Count (0)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            return svr.equals(this.baddr) || svr.getAddress()[3] == (byte) 0xFF;
        }
    
        /**
         * Switches to the next available WINS server in round-robin fashion.
         *
         * @return the next WINS server address, or null if no WINS servers are configured
         */
        protected InetAddress switchWINS() {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 38.5K bytes
    - Click Count (0)
  3. src/test/java/jcifs/config/BaseConfigurationTest.java

        }
    
        @Test
        @DisplayName("Test initResolverOrder with invalid resolver and WINS without server")
        void testInitResolverOrderWithInvalidResolver() {
            config.winsServer = new InetAddress[0];
            config.initResolverOrder("DNS,INVALID,WINS,LMHOSTS");
    
            List<ResolverType> order = config.getResolveOrder();
            assertEquals(2, order.size());
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 20.6K bytes
    - Click Count (0)
  4. src/main/java/jcifs/ResolverType.java

     */
    package jcifs;
    
    /**
     * Enumeration of usable resolver types
     *
     * @author mbechler
     *
     */
    public enum ResolverType {
        /**
         * Resolve using WINS server
         */
        RESOLVER_WINS,
    
        /**
         * NETBIOS broadcast
         */
        RESOLVER_BCAST,
    
        /**
         * DNS
         */
        RESOLVER_DNS,
    
        /**
         * LMHosts file lookup
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 1.1K bytes
    - Click Count (0)
  5. src/main/java/jcifs/smb1/netbios/NbtAddress.java

            }
        }
    
        /**
         * Gets the current WINS server address.
         *
         * @return the WINS server address, or null if no WINS servers are configured
         */
        public static InetAddress getWINSAddress() {
            return NBNS.length == 0 ? null : NBNS[nbnsIndex];
        }
    
        /**
         * Checks if the given address is a configured WINS server.
         *
         * @param svr the server address to check
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 31.7K bytes
    - Click Count (0)
  6. src/main/java/jcifs/netbios/UniAddress.java

     * This class is a wrapper for both {@link jcifs.netbios.NbtAddress}
     * and {@link java.net.InetAddress}. The name resolution mechanisms
     * used will systematically query all available configured resolution
     * services including WINS, broadcasts, DNS, and LMHOSTS. See
     * <a href="../../resolver.html">Setting Name Resolution Properties</a>
     * and the <code>jcifs.resolveOrder</code> property. Changing
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 8.3K bytes
    - Click Count (0)
  7. src/main/java/jcifs/config/BaseConfiguration.java

                        this.resolverOrder.add(ResolverType.RESOLVER_LMHOSTS);
                    } else if (s.equalsIgnoreCase("WINS")) {
                        if (this.winsServer.length == 0) {
                            log.error("UniAddress resolveOrder specifies WINS however " + " WINS server has not been configured");
                            continue;
                        }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  8. src/main/java/jcifs/netbios/NbtAddress.java

     *
     *
     *  * <b>About NetBIOS:</b> The NetBIOS name
     * service is a dynamic distributed service that allows hosts to resolve
     * names by broadcasting a query, directing queries to a server such as
     * Samba or WINS. NetBIOS is currently the primary networking layer for
     * providing name service, datagram service, and session service to the
     * Microsoft Windows platform. A NetBIOS name can be 15 characters long
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 15.1K bytes
    - Click Count (0)
  9. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

            assertEquals(createSet(new Object[] {a.artifact, modifiedC}), res.getArtifacts(), "Check artifact list");
            Artifact artifact = getArtifact("c", res.getArtifacts());
            // local wins now, and irrelevant if not local as test/provided aren't transitive
            // assertEquals( Artifact.SCOPE_COMPILE, artifact.getArtifactScope(), "Check artifactScope" );
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 43K bytes
    - Click Count (0)
  10. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PrecedenceCoreExtensionSelector.java

            return selectCoreExtensions(
                    context, context.invokerRequest.coreExtensions().orElseThrow());
        }
    
        /**
         * Selects extensions to load discovered from various sources by precedence ("first wins"), as
         * {@link InvokerRequest#coreExtensions()} is in precedence order. Also reports conflicts, if any.
         * Finally, at DEBUG level reports configured vs selected extensions.
         */
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Sep 29 15:32:43 GMT 2025
    - 4.6K bytes
    - Click Count (0)
Back to Top