Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for Berner (0.17 sec)

  1. android/guava/src/com/google/common/io/ByteStreams.java

       *       then sequentially accessing it could result in other processes dying. This is solvable
       *       via madvise(2), but that obviously doesn't exist in java.
       *   <li>Ordinary copy. Kernel copies bytes into a kernel buffer, from a kernel buffer into a
       *       userspace buffer (byte[] or ByteBuffer), then copies them from that buffer into the
       *       destination channel.
       * </ol>
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Jan 17 18:59:58 GMT 2024
    - 29.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

         * that could call it, nor exposed this Future for users to call cancel() on).
         */
        requireNonNull(futures);
    
        // Corner case: List is empty.
        if (futures.isEmpty()) {
          handleAllCompleted();
          return;
        }
    
        // NOTE: If we ever want to use a custom executor here, have a look at CombinedFuture as we'll
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 01 21:46:34 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsValidator.java

                }
                List<Server> servers = settings.getServers();
                for (int i = 0; i < servers.size(); i++) {
                    Server server = servers.get(i);
                    String serverField = "servers.server[" + i + "]";
                    validateStringEmpty(problems, serverField + ".username", server.getUsername(), msgS);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

                try {
                    if ( query != null ) {
                        String server = queryLookup(query, "server");
                        if ( server != null && server.length() > 0 ) {
                            this.addresses = new UniAddress[1];
                            this.addresses[ 0 ] = this.ctx.getNameServiceClient().getByName(server);
                        }
                        String address = queryLookup(query, "address");
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/pac/PacLogonInfo.java

                // Skip some reserved fields (User Session Key)
                pacStream.skipBytes(16);
    
                // Server related strings as UnicodeStrings
                PacUnicodeString serverNameString = pacStream.readUnicodeString();
                PacUnicodeString domainNameString = pacStream.readUnicodeString();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/NtStatus.java

            "The SAM database on the Windows NT Server does not have a computer account for this workstation trust relationship.",
            "The trust relationship between the primary domain and the trusted domain failed.",
            "The account used is a Computer Account. Use your global user account or local user account to access this server.",
            "The user must change his password before he logs on the first time.",
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

        static final byte TRANS2_SET_FILE_INFORMATION   = (byte)0x08;
    
        static final int NET_SHARE_ENUM   = 0x0000;
        static final int NET_SERVER_ENUM2 = 0x0068;
        static final int NET_SERVER_ENUM3 = 0x00D7;
    
        static final byte TRANS_PEEK_NAMED_PIPE     = (byte)0x23;
        static final byte TRANS_WAIT_NAMED_PIPE     = (byte)0x53;
        static final byte TRANS_CALL_NAMED_PIPE     = (byte)0x54;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

    import org.apache.maven.api.model.RepositoryBase;
    import org.apache.maven.api.model.Scm;
    import org.apache.maven.api.model.Site;
    import org.apache.maven.model.v4.MavenMerger;
    
    /**
     * The domain-specific model merger for the Maven POM, overriding generic code from parent class when necessary with
     * more adapted algorithms.
     *
     */
    public class MavenModelMerger extends MavenMerger {
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTreeConnection.java

            }
            catch ( UnknownHostException uhe ) {
                throw new SmbException("Failed to connect to server", uhe);
            }
            catch ( SmbException se ) {
                throw se;
            }
            catch ( IOException ioe ) {
                throw new SmbException("Failed to connect to server", ioe);
            }
        }
    
    
        /**
         * @param loc
         * @return tree handle
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

     * when appropriate and {@link #awaitHealthy} will still work as expected.
     *
     * <p>Here is a simple example of how to use a {@code ServiceManager} to start a server.
     *
     * <pre>{@code
     * class Server {
     *   public static void main(String[] args) {
     *     Set<Service> services = ...;
     *     ServiceManager manager = new ServiceManager(services);
     *     manager.addListener(new Listener() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Dec 13 19:45:20 GMT 2023
    - 30.5K bytes
    - Viewed (0)
Back to top