Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 692 for isgoexception (0.2 sec)

  1. src/runtime/symtab.go

    		fi := (*funcinl)(unsafe.Pointer(fn))
    		return fi.startLine
    	}
    	return fn.funcInfo().startLine
    }
    
    // findmoduledatap looks up the moduledata for a PC.
    //
    // It is nosplit because it's part of the isgoexception
    // implementation.
    //
    //go:nosplit
    func findmoduledatap(pc uintptr) *moduledata {
    	for datap := &firstmoduledata; datap != nil; datap = datap.next {
    		if datap.minpc <= pc && pc < datap.maxpc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. src/runtime/panic.go

    	// will work.
    	return true
    }
    
    // isAbortPC reports whether pc is the program counter at which
    // runtime.abort raises a signal.
    //
    // It is nosplit because it's part of the isgoexception
    // implementation.
    //
    //go:nosplit
    func isAbortPC(pc uintptr) bool {
    	f := findfunc(pc)
    	if !f.valid() {
    		return false
    	}
    	return f.funcID == abi.FuncID_abort
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/OutputStreamBackedEncoder.java

            outputStream.writeFloat(value);
        }
    
        @Override
        public void writeDouble(double value) throws IOException {
            outputStream.writeDouble(value);
        }
    
        @Override
        public void writeBoolean(boolean value) throws IOException {
            outputStream.writeBoolean(value);
        }
    
        @Override
        public void writeString(CharSequence value) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/CloserTest.java

      }
    
      public void testCloseExceptionsSuppressed_whenExceptionThrownFromTryBlock() throws IOException {
        Closer closer = new Closer(suppressor);
    
        IOException tryException = new IOException();
        IOException c1Exception = new IOException();
        IOException c2Exception = new IOException();
    
        TestCloseable c1 = closer.register(TestCloseable.throwsOnClose(c1Exception));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/EncoderExtensions.java

    import org.gradle.api.NonNullApi;
    
    import java.io.IOException;
    
    @NonNullApi
    public class EncoderExtensions {
        public static void writeLengthPrefixedShorts(Encoder encoder, short[] array) throws IOException {
            encoder.writeInt(array.length);
            writeShorts(encoder, array);
        }
    
        public static void writeShorts(Encoder encoder, short[] array) throws IOException {
            for (short e : array) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/DecoderExtensions.java

     * limitations under the License.
     */
    
    package org.gradle.internal.serialize;
    
    import org.gradle.api.NonNullApi;
    
    import java.io.IOException;
    
    @NonNullApi
    public class DecoderExtensions {
    
        public static short[] readLengthPrefixedShorts(Decoder decoder) throws IOException {
            int length = decoder.readInt();
            short[] array = new short[length];
            readShorts(decoder, array);
            return array;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/AbstractEncoder.java

        }
    
        @Override
        public void writeBytes(byte[] bytes) throws IOException {
            writeBytes(bytes, 0, bytes.length);
        }
    
        @Override
        public void writeBinary(byte[] bytes) throws IOException {
            writeBinary(bytes, 0, bytes.length);
        }
    
        @Override
        public void writeBinary(byte[] bytes, int offset, int count) throws IOException {
            writeSmallInt(count);
            writeBytes(bytes, offset, count);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. maven-repository-metadata/src/main/java/org/apache/maven/artifact/repository/metadata/io/xpp3/MetadataXpp3Reader.java

         * @param strict a strict object.
         * @return Metadata
         * @throws IOException            IOException if any.
         * @throws XmlPullParserException XmlPullParserException if
         *                                any.
         */
        public Metadata read(Reader reader, boolean strict) throws IOException, XmlPullParserException {
            try {
                return new Metadata(delegate.read(reader, strict));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Decoder.java

         */
        long readLong() throws EOFException, IOException;
    
        /**
         * Reads a signed 64 bit int value. Can read any value that was written using {@link Encoder#writeSmallLong(long)}.
         *
         * @throws EOFException when the end of the byte stream is reached before the int value can be fully read.
         */
        long readSmallLong() throws EOFException, IOException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Writer.kt

        }
      }
    
      @Throws(IOException::class)
      fun flush() {
        this.withLock {
          if (closed) throw IOException("closed")
          sink.flush()
        }
      }
    
      @Throws(IOException::class)
      fun rstStream(
        streamId: Int,
        errorCode: ErrorCode,
      ) {
        this.withLock {
          if (closed) throw IOException("closed")
          require(errorCode.httpCode != -1)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top