Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,230 for unreadable (0.21 sec)

  1. android/guava/src/com/google/common/io/CharStreams.java

          Readable readable, LineProcessor<T> processor) throws IOException {
        checkNotNull(readable);
        checkNotNull(processor);
    
        LineReader lineReader = new LineReader(readable);
        String line;
        while ((line = lineReader.readLine()) != null) {
          if (!processor.processLine(line)) {
            break;
          }
        }
        return processor.getResult();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/CharStreams.java

          Readable readable, LineProcessor<T> processor) throws IOException {
        checkNotNull(readable);
        checkNotNull(processor);
    
        LineReader lineReader = new LineReader(readable);
        String line;
        while ((line = lineReader.readLine()) != null) {
          if (!processor.processLine(line)) {
            break;
          }
        }
        return processor.getResult();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/notboring.go

    )
    
    const available = false
    
    // Unreachable marks code that should be unreachable
    // when BoringCrypto is in use. It is a no-op without BoringCrypto.
    func Unreachable() {
    	// Code that's unreachable when using BoringCrypto
    	// is exactly the code we want to detect for reporting
    	// standard Go crypto.
    	sig.StandardCrypto()
    }
    
    // UnreachableExceptTests marks code that should be unreachable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/image/jpeg/reader.go

    		d.bytes.i++
    		d.bytes.nUnreadable = 1
    		if x != 0xff {
    			return x, err
    		}
    		if d.bytes.buf[d.bytes.i] != 0x00 {
    			return 0, errMissingFF00
    		}
    		d.bytes.i++
    		d.bytes.nUnreadable = 2
    		return 0xff, nil
    	}
    
    	d.bytes.nUnreadable = 0
    
    	x, err = d.readByte()
    	if err != nil {
    		return 0, err
    	}
    	d.bytes.nUnreadable = 1
    	if x != 0xff {
    		return x, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

     * actions taken by the java garbage collection system:
     *
     * <ul>
     *   <li>invoking the {@code finalize} methods of unreachable objects
     *   <li>clearing weak references to unreachable referents
     *   <li>enqueuing weak references to unreachable referents in their reference queue
     * </ul>
     *
     * <p>This class uses (possibly repeated) invocations of {@link java.lang.System#gc()} to cause
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_blank_func_decl.txt

    stdout 'coverage: 100.0% of statements'
    
    
    -- go.mod --
    module coverblank
    
    go 1.16
    -- a.go --
    package coverblank
    
    func _() {
    	println("unreachable")
    }
    
    type X int
    
    func (x X) Print() {
    	println(x)
    }
    
    func (x X) _() {
    	println("unreachable")
    }
    
    -- a_test.go --
    package coverblank
    
    import "testing"
    
    func TestX(t *testing.T) {
    	var x X
    	x.Print()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 385 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    //
    //  The branch that has an always false condition is used to ensure that
    //  statement and regex are compiled (and thus syntactically correct) but
    //  never executed. The unreachable code macro protects the terminator
    //  statement from generating an 'unreachable code' warning in case
    //  statement unconditionally returns or throws. The Message constructor at
    //  the end allows the syntax of streaming additional messages into the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/GcFinalization.java

     * actions taken by the java garbage collection system:
     *
     * <ul>
     *   <li>invoking the {@code finalize} methods of unreachable objects
     *   <li>clearing weak references to unreachable referents
     *   <li>enqueuing weak references to unreachable referents in their reference queue
     * </ul>
     *
     * <p>This class uses (possibly repeated) invocations of {@link java.lang.System#gc()} to cause
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    //
    //  The branch that has an always false condition is used to ensure that
    //  statement and regex are compiled (and thus syntactically correct) but
    //  never executed. The unreachable code macro protects the terminator
    //  statement from generating an 'unreachable code' warning in case
    //  statement unconditionally returns or throws. The Message constructor at
    //  the end allows the syntax of streaming additional messages into the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. 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)
Back to top