Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 274 for lmhosts (0.17 sec)

  1. src/main/java/jcifs/smb1/UniAddress.java

            } catch( UnknownHostException uhe ) {
            }
    
            if( ro == null || ro.length() == 0 ) {
    
                /* No resolveOrder has been specified, use the
                 * default which is LMHOSTS,WINS,BCAST,DNS or just
                 * LMHOSTS,BCAST,DNS if jcifs.smb1.netbios.wins has not
                 * been specified.
                 */
    
                if( nbns == null ) {
                    resolveOrder = new int[3];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

            in  = new DatagramPacket( rcv_buf, RCV_BUF_SIZE );
    
            if( RO == null || RO.length() == 0 ) {
    
                /* No resolveOrder has been specified, use the
                 * default which is LMHOSTS,DNS,WINS,BCAST
                 * LMHOSTS,BCAST,DNS if jcifs.smb1.netbios.wins has not
                 * been specified.
                 */
    
                if( NbtAddress.getWINSAddress() == null ) {
                    resolveOrder = new int[2];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NameServiceClientImpl.java

        private List<ResolverType> resolveOrder = new ArrayList<>();
    
        private InetAddress laddr, baddr;
        private CIFSContext transportContext;
        private NbtAddress localhostAddress;
    
        private Lmhosts lmhosts = new Lmhosts();
        private Name unknownName;
        private NbtAddress unknownAddress;
    
    
        /**
         * 
         * @param tc
         */
        public NameServiceClientImpl ( CIFSContext tc ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/BaseConfiguration.java

            if ( ro == null || ro.length() == 0 ) {
                /*
                 * No resolveOrder has been specified, use the
                 * default which is LMHOSTS,DNS,WINS,BCAST or just
                 * LMHOSTS,DNS,BCAST if jcifs.netbios.wins has not
                 * been specified.
                 */
                if ( this.winsServer.length == 0 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         * 
         * @return whether to force extended security usage
         */
        boolean isForceExtendedSecurity ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.netbios.lmhosts</tt> (string)
         * 
         * @return lmhosts file to use
         */
        String getLmHostsFileName ();
    
    
        /**
         * 
         * Property <tt>jcifs.netbios.scope</tt> (string)
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/httproute.go

    	// Add the uniqueHost.
    	vhosts = appendDomainPort(vhosts, uniqueHostname, port)
    	if len(uniqueHostnameParts) == 2 {
    		// This is the case of uniqHostname having namespace already.
    		dnsHostName := uniqueHostname + "." + sharedDNSDomainParts[0]
    		vhosts = appendDomainPort(vhosts, dnsHostName, port)
    	}
    	return vhosts
    }
    
    // portNoAppendPortSuffix is a signal to not append port to vhost
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. pkg/dns/client/dns.go

    			// that is likely to be already present in the altHosts
    			if _, exists := altHosts[expandedHost]; !exists {
    				table.cname[expandedHost] = cname(expandedHost, h)
    				table.allHosts.Insert(expandedHost)
    			}
    		}
    	}
    }
    
    // Borrowed from https://github.com/coredns/coredns/blob/master/plugin/hosts/hosts.go
    // a takes a slice of ip string and returns a slice of A RRs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/sidecar.go

    		}
    
    		// exact hosts are saved separately for map lookup
    		if !hName.IsWildCarded() {
    			hostsByNamespace[ns].exactHosts.Insert(hName)
    		}
    
    		// allHosts contains the exact hosts and wildcard hosts,
    		// since SelectVirtualServices will use `Matches` semantic matching.
    		hc := hostsByNamespace[ns]
    		hc.allHosts = append(hc.allHosts, hName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/gateway.go

    			virtualServiceHosts := host.NewNames(virtualService.Spec.(*networking.VirtualService).Hosts)
    			serverHosts := host.NamesForNamespace(server.Hosts, virtualService.Namespace)
    
    			// We have two cases here:
    			// 1. virtualService hosts are 1.foo.com, 2.foo.com, 3.foo.com and server hosts are ns/*.foo.com
    			// 2. virtualService hosts are *.foo.com, and server hosts are ns/1.foo.com, ns/2.foo.com, ns/3.foo.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/gateway_simulation_test.go

    		},
    	)
    }
    
    func TestGatewayConflicts(t *testing.T) {
    	tcpServer := `port:
      number: 80
      name: tcp
      protocol: TCP
    hosts:
    - "foo.bar"`
    	httpServer := `port:
      number: 80
      name: http
      protocol: HTTP
    hosts:
    - "foo.bar"`
    	tlsServer := `hosts:
      - ./*
    port:
      name: https-ingress
      number: 443
      protocol: HTTPS
    tls:
      credentialName: sds-credential
      mode: SIMPLE`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top