Search Options

Results per page
Sort
Preferred Languages
Advance

Results 321 - 330 of 2,304 for white (0.02 sec)

  1. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

    1. * Lesser General Public License for more details.
    2. *
    3. * You should have received a copy of the GNU Lesser General Public
    4. * License along with this library; if not, write to the Free Software
    5. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    6. */
    7. package jcifs.smb;
    8.  
    9.  
    10. import java.net.MalformedURLException;
    11. import java.net.URL;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/LittleEndianDataOutputStream.java

    1. * little-endian byte order.
    2. *
    3. * @throws IOException if an I/O error occurs
    4. */
    5. @Override
    6. public void writeInt(int v) throws IOException {
    7. out.write(0xFF & v);
    8. out.write(0xFF & (v >> 8));
    9. out.write(0xFF & (v >> 16));
    10. out.write(0xFF & (v >> 24));
    11. }
    12.  
    13. /**
    14. * Writes a {@code long} as specified by {@link DataOutputStream#writeLong(long)}, except using
    15. * little-endian byte order.
    16. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 26 12:34:49 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. docs/en/docs/alternatives.md

    1. It would actually be common to use Requests *inside* of a FastAPI application.
    2.  
    3. But still, FastAPI got quite some inspiration from Requests.
    4.  
    5. **Requests** is a library to *interact* with APIs (as a client), while **FastAPI** is a library to *build* APIs (as a server).
    6.  
    7. They are, more or less, at opposite ends, complementing each other.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. internal/dsync/dsync-server_test.go

    1. }
    2. if reply = locksHeld == WriteLock; !reply { // Unless it is a write lock
    3. return false, fmt.Errorf("Unlock attempted on a read locked entity: %s (%d read locks active)", args.Resources[0], locksHeld)
    4. }
    5. delete(l.lockMap, args.Resources[0]) // Remove the write lock
    6. return true, nil
    7. }
    8.  
    9. const ReadLock = 1
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jan 23 16:46:37 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. src/archive/zip/example_test.go

    1. // license that can be found in the LICENSE file.
    2.  
    3. package zip_test
    4.  
    5. import (
    6. "archive/zip"
    7. "bytes"
    8. "compress/flate"
    9. "fmt"
    10. "io"
    11. "log"
    12. "os"
    13. )
    14.  
    15. func ExampleWriter() {
    16. // Create a buffer to write our archive to.
    17. buf := new(bytes.Buffer)
    18.  
    19. // Create a new zip archive.
    20. w := zip.NewWriter(buf)
    21.  
    22. // Add some files to the archive.
    23. var files = []struct {
    24. Name, Body string
    25. }{
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Jan 27 00:22:03 UTC 2016
    - 2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/TestOutputStream.java

    1. public boolean closed() {
    2. return closed;
    3. }
    4.  
    5. @Override
    6. public void write(byte[] b, int off, int len) throws IOException {
    7. throwIf(closed);
    8. throwIf(WRITE_THROWS);
    9. super.write(b, off, len);
    10. }
    11.  
    12. @Override
    13. public void write(int b) throws IOException {
    14. throwIf(closed);
    15. throwIf(WRITE_THROWS);
    16. super.write(b);
    17. }
    18.  
    19. @Override
    20. public void close() throws IOException {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/SocketOutputStream.java

    1. class SocketOutputStream extends FilterOutputStream {
    2.  
    3. SocketOutputStream( OutputStream out ) {
    4. super( out );
    5. }
    6.  
    7. public synchronized void write( byte[] b, int off, int len ) throws IOException {
    8. if( len > 0xFFFF ) {
    9. throw new IOException( "write too large: " + len );
    10. } else if( off < 4 ) {
    11. throw new IOException( "NetBIOS socket output buffer requires 4 bytes available before off" );
    12. }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  8. compat/maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3WriterEx.java

    1. /**
    2. * Method write.
    3. *
    4. * @param writer a writer object.
    5. * @param model a model object.
    6. * @throws IOException java.io.IOException if any.
    7. */
    8. public void write(Writer writer, Model model) throws IOException {
    9. super.write(writer, model);
    10. } // -- void write( Writer, Model )
    11.  
    12. /**
    13. * Method write.
    14. *
    15. * @param stream a stream object.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/io/AppendableWriterTest.java

    1. StringBuilder builder = new StringBuilder();
    2. Writer writer = new AppendableWriter(builder);
    3.  
    4. writer.write("Hello".toCharArray());
    5. writer.write(',');
    6. writer.write(0xBEEF0020); // only lower 16 bits are important
    7. writer.write("Wo");
    8. writer.write("Whirled".toCharArray(), 3, 2);
    9. writer.write("Mad! Mad, I say", 2, 2);
    10.  
    11. assertEquals("Hello, World!", builder.toString());
    12. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/DefaultSettingsWriter.java

    1. @Override
    2. public void write(File output, Map<String, Object> options, Settings settings) throws IOException {
    3. Objects.requireNonNull(output, "output cannot be null");
    4. Objects.requireNonNull(settings, "settings cannot be null");
    5.  
    6. output.getParentFile().mkdirs();
    7.  
    8. write(Files.newOutputStream(output.toPath()), options, settings);
    9. }
    10.  
    11. @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top