Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,733 for isgoexception (0.18 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. android/guava/src/com/google/common/io/LittleEndianDataOutputStream.java

      }
    
      @Override
      public void write(byte[] b, int off, int len) throws IOException {
        // Override slow FilterOutputStream impl
        out.write(b, off, len);
      }
    
      @Override
      public void writeBoolean(boolean v) throws IOException {
        ((DataOutputStream) out).writeBoolean(v);
      }
    
      @Override
      public void writeByte(int v) throws IOException {
        ((DataOutputStream) out).writeByte(v);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            } catch (IOException ex) { }
            return connection.getHeaderField(index);
        }
    
        public Object getContent() throws IOException {
            try {
                handshake();
            } catch (IOException ex) { }
            return connection.getContent();
        }
    
        public Object getContent(Class[] classes) throws IOException {
            try {
                handshake();
            } catch (IOException ex) { }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
Back to top