Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,230 for unreadable (0.26 sec)

  1. test/retjmp.dir/main.go

    	leaf2()
    	if !f4called {
    		panic("f4 not called")
    	}
    }
    
    func f1() { f1called = true }
    func f2() { f2called = true }
    func f3() { f3called = true }
    func f4() { f4called = true }
    
    func unreachable() {
    	panic("unreachable function called")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 22:42:08 UTC 2021
    - 655 bytes
    - Viewed (0)
  2. src/os/pidfd_other.go

    func pidfdFind(_ int) (uintptr, error) {
    	return 0, syscall.ENOSYS
    }
    
    func (p *Process) pidfdRelease() {}
    
    func (_ *Process) pidfdWait() (*ProcessState, error) {
    	panic("unreachable")
    }
    
    func (_ *Process) pidfdSendSignal(_ syscall.Signal) error {
    	panic("unreachable")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 692 bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/LineBufferTest.java

          throws IOException {
        Readable readable =
            asReader ? getChunkedReader(input, chunk) : getChunkedReadable(input, chunk);
        LineReader r = new LineReader(readable);
        List<String> lines = Lists.newArrayList();
        String line;
        while ((line = r.readLine()) != null) {
          lines.add(line);
        }
        return lines;
      }
    
      // Returns a Readable that is *not* a Reader.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/LineBufferTest.java

          throws IOException {
        Readable readable =
            asReader ? getChunkedReader(input, chunk) : getChunkedReadable(input, chunk);
        LineReader r = new LineReader(readable);
        List<String> lines = Lists.newArrayList();
        String line;
        while ((line = r.readLine()) != null) {
          lines.add(line);
        }
        return lines;
      }
    
      // Returns a Readable that is *not* a Reader.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/UsageDescriber.java

        private UsageDescriber() { /* not instantiable */ }
    
        /**
         * Builds a human-readable description of the usage allowed by the given role.
         *
         * @param role the role to describe
         * @return a human-readable description of the role's allowed usage
         */
        public static String describeRole(ConfigurationRole role) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 16:04:58 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

        }
    
        entry.currentEditor = null
        if (entry.zombie) {
          removeEntry(entry)
          return
        }
    
        redundantOpCount++
        journalWriter!!.apply {
          if (entry.readable || success) {
            entry.readable = true
            writeUtf8(CLEAN).writeByte(' '.code)
            writeUtf8(entry.key)
            entry.writeLengths(this)
            writeByte('\n'.code)
            if (success) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/CharSink.java

       * Writes all the text from the given {@link Readable} (such as a {@link Reader}) to this sink.
       * Does not close {@code readable} if it is {@code Closeable}.
       *
       * @return the number of characters written
       * @throws IOException if an I/O error occurs while reading from {@code readable} or writing to
       *     this sink
       */
      @CanIgnoreReturnValue
      public long writeFrom(Readable readable) throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DaemonForkOptionsBuilder.java

         * we cannot delete files that are held by the worker process.
         *
         * @param jvmArgs JVM arguments to check
         * @return Optional that has the value of the JVM argument that is unreliable or empty if no unreliable arguments were found
         */
        @VisibleForTesting
        static Optional<String> findUnreliableArgument(List<String> jvmArgs) {
            for (String jvmArg : jvmArgs) {
                if (jvmArg.startsWith("-")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/sym/reloc.go

    		nr := (r - objabi.MachoRelocOffset) >> 1
    		switch arch.Family {
    		case sys.AMD64:
    			return macho.RelocTypeX86_64(nr).String()
    		case sys.ARM64:
    			return macho.RelocTypeARM64(nr).String()
    		default:
    			panic("unreachable")
    		}
    	case r >= objabi.ElfRelocOffset: // ELF
    		nr := r - objabi.ElfRelocOffset
    		switch arch.Family {
    		case sys.AMD64:
    			return elf.R_X86_64(nr).String()
    		case sys.ARM:
    			return elf.R_ARM(nr).String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 15:33:31 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/CharSink.java

       * Writes all the text from the given {@link Readable} (such as a {@link Reader}) to this sink.
       * Does not close {@code readable} if it is {@code Closeable}.
       *
       * @return the number of characters written
       * @throws IOException if an I/O error occurs while reading from {@code readable} or writing to
       *     this sink
       */
      @CanIgnoreReturnValue
      public long writeFrom(Readable readable) throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top