Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 4,375 for dwrite (0.24 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. 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 (1)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/crypto/ed25519/ed25519.go

    	}
    
    	R := (&edwards25519.Point{}).ScalarBaseMult(r)
    
    	kh := sha512.New()
    	if domPrefix != domPrefixPure {
    		kh.Write([]byte(domPrefix))
    		kh.Write([]byte{byte(len(context))})
    		kh.Write([]byte(context))
    	}
    	kh.Write(R.Bytes())
    	kh.Write(publicKey)
    	kh.Write(message)
    	hramDigest := make([]byte, 0, sha512.Size)
    	hramDigest = kh.Sum(hramDigest)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top