Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,322 for isgoexception (0.32 sec)

  1. src/runtime/signal_windows.go

    		pc--
    	}
    	return isAbortPC(pc)
    }
    
    // isgoexception reports whether this exception should be translated
    // into a Go panic or throw.
    //
    // It is nosplit to avoid growing the stack in case we're aborting
    // because of a stack overflow.
    //
    //go:nosplit
    func isgoexception(info *exceptionrecord, r *context) bool {
    	// Only handle exception if executing instructions in Go binary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/StringDeduplicatingDecoder.java

            return delegate.readSmallInt();
        }
    
        @Nullable
        @Override
        public Integer readNullableSmallInt() throws IOException {
            return delegate.readNullableSmallInt();
        }
    
        @Override
        public short readShort() throws EOFException, IOException {
            return delegate.readShort();
        }
    
        @Override
        public float readFloat() throws EOFException, IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 11:24:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/Exchange.kt

            this.bytesReceived += byteCount
          } catch (e: IOException) {
            throw complete(e)
          }
        }
    
        @Throws(IOException::class)
        override fun flush() {
          try {
            super.flush()
          } catch (e: IOException) {
            throw complete(e)
          }
        }
    
        @Throws(IOException::class)
        override fun close() {
          if (closed) return
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Reader.kt

      }
    
      @Throws(IOException::class)
      private fun readPriority(
        handler: Handler,
        length: Int,
        flags: Int,
        streamId: Int,
      ) {
        if (length != 5) throw IOException("TYPE_PRIORITY length: $length != 5")
        if (streamId == 0) throw IOException("TYPE_PRIORITY streamId == 0")
        readPriority(handler, streamId)
      }
    
      @Throws(IOException::class)
      private fun readPriority(
        handler: Handler,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/JsonWriterScope.java

            jsonWriter.beginArray();
            contents.write();
            endArray();
        }
    
        protected void beginArray(String name) throws IOException {
            jsonWriter.name(name);
            jsonWriter.beginArray();
        }
    
        protected void endArray() throws IOException {
            jsonWriter.endArray();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top