Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 4,372 for dwrite (0.17 sec)

  1. cluster/gce/windows/testonly/user-profile.psm1

                write-verbose "$username creation result: $result"
            }
           elseif($result -eq 0)
           {
               $status = "$username Profile has been created"
               write-verbose "$username Creation Result: $result"
           }
           else
           {
              $status = "$UserName unknown return result: $result"
           }
        }
        catch
        {
            Write-Error $_.Exception.Message;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
  2. cmd/batch-replicate_gen.go

    		return
    	}
    	// write "Path"
    	err = en.Append(0xa4, 0x50, 0x61, 0x74, 0x68)
    	if err != nil {
    		return
    	}
    	err = en.WriteString(z.Path)
    	if err != nil {
    		err = msgp.WrapError(err, "Path")
    		return
    	}
    	// write "Creds"
    	err = en.Append(0xa5, 0x43, 0x72, 0x65, 0x64, 0x73)
    	if err != nil {
    		return
    	}
    	// map header, size 3
    	// write "AccessKey"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 18:51:46 UTC 2023
    - 40.6K bytes
    - Viewed (0)
  3. src/syscall/syscall_dragonfly.go

    func pread(fd int, p []byte, offset int64) (n int, err error) {
    	return extpread(fd, p, 0, offset)
    }
    
    //sys	extpwrite(fd int, p []byte, flags int, offset int64) (n int, err error)
    
    func pwrite(fd int, p []byte, offset int64) (n int, err error) {
    	return extpwrite(fd, p, 0, offset)
    }
    
    func Accept4(fd, flags int) (nfd int, sa Sockaddr, err error) {
    	var rsa RawSockaddrAny
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/AppendableWriter.java

    class AppendableWriter extends Writer {
      private final Appendable target;
      private boolean closed;
    
      /**
       * Creates a new writer that appends everything it writes to {@code target}.
       *
       * @param target target to which to append output
       */
      AppendableWriter(Appendable target) {
        this.target = checkNotNull(target);
      }
    
      /*
       * Abstract methods from Writer
       */
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-local/src/test/groovy/org/gradle/caching/local/internal/DirectoryBuildCacheTest.groovy

                output << "abcd"
                throw new RuntimeException("Simulated write error")
            }
    
            then:
            def ex = thrown RuntimeException
            ex.message == "Simulated write error"
            cacheDir.listFiles() as List == []
            0 * fileAccessTracker.markAccessed(_)
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 14:32:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/CompilationStateSerializer.java

            for (Map.Entry<File, SourceFileState> entry : value.getFileStates().entrySet()) {
                SourceFileState sourceFileState = entry.getValue();
                fileSerializer.write(encoder, entry.getKey());
                hashSerializer.write(encoder, sourceFileState.getHash());
                encoder.writeBoolean(sourceFileState.isHasUnresolved());
                encoder.writeSmallInt(sourceFileState.getEdges().size());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. pkg/proxy/util/linebuffer.go

    type LineBuffer interface {
    	// Write takes a list of arguments, each a string or []string, joins all the
    	// individual strings with spaces, terminates with newline, and writes them to the
    	// buffer. Any other argument type will panic.
    	Write(args ...interface{})
    
    	// WriteBytes writes bytes to the buffer, and terminates with newline.
    	WriteBytes(bytes []byte)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/hash/maphash/maphash.go

    	if h.n == len(h.buf) {
    		h.flush()
    	}
    	h.buf[h.n] = b
    	h.n++
    	return nil
    }
    
    // Write adds b to the sequence of bytes hashed by h.
    // It always writes all of b and never fails; the count and error result are for implementing [io.Writer].
    func (h *Hash) Write(b []byte) (int, error) {
    	size := len(b)
    	// Deal with bytes left over in h.buf.
    	// h.n <= bufSize is always true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. docs/distributed/SIZING.md

    protection bits added automatically to provide the regular safety for these objects up to 50% of the number of drives.
    This will allow normal write operations to take place on systems that exceed the write tolerance.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. pkg/kube/krt/README.md

      * `krt` can accept any object type, from any source, and handle them the same.
    * Provide high level abstractions.
      * Controller authors can write simple transformation functions from `Input` -> `Output` (with dependencies); the framework handles all the state automatically.
    
    ## Key Primitives
    
    The most important primitive provided is the `Collection` interface.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top