Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,529 for dwrite (0.1 sec)

  1. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.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. 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)
  3. 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)
  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/testing/iotest/logger_test.go

    		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 {
    		t.Errorf("WriteLogger mismatch\n\tgot:  %q\n\twant: %q", g, w)
    	}
    }
    
    func TestReadLogger(t *testing.T) {
    	olw := log.Writer()
    	olf := log.Flags()
    	olp := log.Prefix()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 07:03:10 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. 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)
  7. samples/health-check/server.go

    func foo8001(w http.ResponseWriter, _ *http.Request) {
    	w.Write([]byte("Listening on 8001: foo "))
    }
    
    func bar8001(w http.ResponseWriter, _ *http.Request) {
    	w.Write([]byte("Listening on 8001: bar "))
    }
    
    func foo8002(w http.ResponseWriter, _ *http.Request) {
    	w.Write([]byte("Listening on 8002: foo "))
    }
    
    func bar8002(w http.ResponseWriter, _ *http.Request) {
    	w.Write([]byte("Listening on 8002: bar "))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  8. tests/fuzz/pki_fuzzer.go

    	if err != nil {
    		return 0
    	}
    	_, err = certFile.Write(certFileBytes)
    	if err != nil {
    		return 0
    	}
    
    	privKeyFile, err := os.Create("privKeyFile")
    	if err != nil {
    		return 0
    	}
    	defer privKeyFile.Close()
    	defer os.Remove("privKeyFile")
    
    	privKeyFileBytes, err := f.GetBytes()
    	if err != nil {
    		return 0
    	}
    	_, err = privKeyFile.Write(privKeyFileBytes)
    	if err != nil {
    		return 0
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 05 14:00:25 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. test/fixedbugs/issue4590.dir/pkg1.go

    // license that can be found in the LICENSE file.
    
    package pkg1
    
    type A interface {
    	Write() error
    }
    
    type B interface {
    	Hello()
    	world()
    }
    
    type C struct{}
    
    func (c C) Write() error { return nil }
    
    var T = struct{ A }{nil}
    var U = struct{ B }{nil}
    var V A = struct{ *C }{nil}
    var W = interface {
    	Write() error
    	Hello()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 438 bytes
    - Viewed (0)
  10. 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)
Back to top