Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for setEndpoint (0.18 sec)

  1. istioctl/pkg/writer/envoy/configdump/endpoint.go

    	return ep.GetHealthStatus()
    }
    
    func retrieveEndpointPort(ep *endpoint.LbEndpoint) uint32 {
    	return ep.GetEndpoint().GetAddress().GetSocketAddress().GetPortValue()
    }
    
    func retrieveEndpointAddress(ep *endpoint.LbEndpoint) string {
    	addr := ep.GetEndpoint().GetAddress()
    	if addr := addr.GetSocketAddress(); addr != nil {
    		return addr.Address + ":" + strconv.Itoa(int(addr.GetPortValue()))
    	}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sun Apr 21 17:42:54 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/DcerpcBinding.java

        }
    
    
        /**
         * @return the server
         */
        public String getServer () {
            return this.server;
        }
    
    
        /**
         * @return the endpoint
         */
        public String getEndpoint () {
            return this.endpoint;
        }
    
    
        /**
         * @return the uuid
         */
        UUID getUuid () {
            return this.uuid;
        }
    
    
        /**
         * @return the major
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/DcerpcPipeHandle.java

        }
    
    
        private String makePipeUrl () {
            DcerpcBinding binding = getBinding();
            String url = "smb://" + binding.getServer() + "/IPC$/" + binding.getEndpoint().substring(6);
    
            String params = "";
            String server = (String) binding.getOption("server");
            if ( server != null ) {
                params += "&server=" + server;
            }
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jan 26 11:51:07 GMT 2020
    - 5.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/DcerpcHandle.java

                    break;
                default:
                    si = arr.length;
                }
    
                si++;
            }
            while ( si < arr.length );
    
            if ( binding == null || binding.getEndpoint() == null )
                throw new DcerpcException("Invalid binding URL: " + str);
    
            return binding;
        }
    
        private static final AtomicInteger call_id = new AtomicInteger(1);
    
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jun 30 10:11:57 GMT 2019
    - 12.9K bytes
    - Viewed (0)
  5. docs/security/README.md

    - Seal/Unmount one/some master keys. That will lock all SSE-S3 encrypted objects protected by these master keys. All these objects can not be decrypted as long as the key(s) are sealed.
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Feb 12 00:51:25 GMT 2022
    - 13.8K bytes
    - Viewed (0)
Back to top