Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,239 for Write (0.05 sec)

  1. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

                    throw new DictionaryException("Failed to write: " + oldItem + " -> " + item, e);
                }
            }
    
            public void write(final String line) {
                try {
                    writer.write(line);
                    writer.write(Constants.LINE_SEPARATOR);
                } catch (final IOException e) {
                    throw new DictionaryException("Failed to write: " + line, e);
                }
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/BaseSerializerFactory.java

            public void write(Encoder encoder, Path value) throws Exception {
                encoder.writeString(value.toString());
            }
        }
    
        private static class ByteArraySerializer extends AbstractSerializer<byte[]> {
            @Override
            public byte[] read(Decoder decoder) throws Exception {
                return decoder.readBinary();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. src/testing/iotest/logger_test.go

    	log.SetPrefix("lw: ")
    	log.SetOutput(lOut)
    	log.SetFlags(0)
    
    	lw := errWriter{err: errors.New("Write Error!")}
    	wl := NewWriteLogger("write:", lw)
    	if _, err := wl.Write([]byte("Hello, World!")); err == nil {
    		t.Fatalf("Unexpectedly succeeded to write: %v", err)
    	}
    
    	wantLogWithHex := fmt.Sprintf("lw: write: %x: %v\n", "", "Write Error!")
    	if g, w := lOut.String(), wantLogWithHex; g != w {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 07:03:10 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  4. src/net/rawconn.go

    	"runtime"
    	"syscall"
    )
    
    // BUG(tmm1): On Windows, the Write method of syscall.RawConn
    // does not integrate with the runtime's network poller. It cannot
    // wait for the connection to become writeable, and does not respect
    // deadlines. If the user-provided callback returns false, the Write
    // method will fail immediately.
    
    // BUG(mikio): On JS and Plan 9, the Control, Read and Write
    // methods of syscall.RawConn are not implemented.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

                    throw new DictionaryException("Failed to write: " + oldItem + " -> " + item, e);
                }
            }
    
            public void write(final String line) {
                try {
                    writer.write(line);
                    writer.write(Constants.LINE_SEPARATOR);
                } catch (final IOException e) {
                    throw new DictionaryException("Failed to write: " + line, e);
                }
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. doc/go_mem.html

    <p>
    Note that if there are no read-write or write-write data races on memory location <i>x</i>,
    then any read <i>r</i> on <i>x</i> has only one possible <i>W</i>(<i>r</i>):
    the single <i>w</i> that immediately precedes it in the happens before order.
    </p>
    
    <p>
    More generally, it can be shown that any Go program that is data-race-free,
    meaning it has no program executions with read-write or write-write data races,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

                assert !handle.standardOutput.contains("pom")
            }
            handle.stdinPipe.write((basicTypeOption + TextUtil.platformLineSeparator).bytes)
    
            // Select default project name
            ConcurrentTestUtil.poll(60) {
                assert handle.standardOutput.contains(projectNamePrompt)
            }
            handle.stdinPipe.write(TextUtil.platformLineSeparator.bytes)
    
            // Select 'kotlin DSL'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. internal/ioutil/ioutil.go

    // executes at least one write operation if it is closed.
    //
    // This can be useful within the context of HTTP. At least
    // one write operation must happen to send the HTTP headers
    // to the peer.
    type WriteOnCloser struct {
    	io.Writer
    	hasWritten bool
    }
    
    func (w *WriteOnCloser) Write(p []byte) (int, error) {
    	w.hasWritten = true
    	return w.Writer.Write(p)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/internal/coverage/stringtab/stringtab.go

    		rval += uint32(len(stw.tmp)) + uint32(slen)
    	}
    	return rval
    }
    
    // Write writes the string table in serialized form to the specified
    // io.Writer.
    func (stw *Writer) Write(w io.Writer) error {
    	wr128 := func(v uint) error {
    		stw.tmp = stw.tmp[:0]
    		stw.tmp = uleb128.AppendUleb128(stw.tmp, v)
    		if nw, err := w.Write(stw.tmp); err != nil {
    			return fmt.Errorf("writing string table: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolvedComponentResultSerializer.java

            id = components.size();
            components.put(component, id);
    
            encoder.writeSmallInt(id);
            moduleVersionIdSerializer.write(encoder, component.getModuleVersion());
            componentIdSerializer.write(encoder, component.getId());
            componentSelectionReasonSerializer.write(encoder, component.getSelectionReason());
            List<ResolvedVariantResult> allVariants = ((ResolvedComponentResultInternal) component).getAvailableVariants();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top