Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 894 for Opcode (0.3 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeCodeGenTest.groovy

                                                   String descriptor, boolean isInterface, Supplier<MethodNode> readMethodNode) {
                        if (metadata.isInstanceOf(owner, "org/gradle/test/Task")) {
                             if (name.equals("isIncremental") && descriptor.equals("()Z") && (opcode == Opcodes.INVOKEVIRTUAL || opcode == Opcodes.INVOKEINTERFACE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. src/encoding/json/decode.go

    		d.scanWhile(scanSkipSpace)
    		if d.opcode == scanEndArray {
    			break
    		}
    
    		v = append(v, d.valueInterface())
    
    		// Next token must be , or ].
    		if d.opcode == scanSkipSpace {
    			d.scanWhile(scanSkipSpace)
    		}
    		if d.opcode == scanEndArray {
    			break
    		}
    		if d.opcode != scanArrayValue {
    			panic(phasePanicMsg)
    		}
    	}
    	return v
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGeneratorTest.groovy

                            String descriptor, boolean isInterface, Supplier<MethodNode> readMethodNode) {
                        if (metadata.isInstanceOf(owner, "org/gradle/api/Rule")) {
                            if (name.equals("getDescription") && descriptor.equals("()Ljava/lang/String;") && (opcode == Opcodes.INVOKEVIRTUAL || opcode == Opcodes.INVOKEINTERFACE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:21:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt

          }
        }
      }
    
      @Throws(IOException::class)
      private fun readMessageFrame() {
        val opcode = this.opcode
        if (opcode != OPCODE_TEXT && opcode != OPCODE_BINARY) {
          throw ProtocolException("Unknown opcode: ${opcode.toHexString()}")
        }
    
        readMessage()
    
        if (readingCompressedMessage) {
          val messageInflater =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    			log.Fatalf("unexpected opcode %v", p.As)
    		case ACFEBRA:
    			opcode = op_CFEBRA
    		case ACFDBRA:
    			opcode = op_CFDBRA
    		case ACGEBRA:
    			opcode = op_CGEBRA
    		case ACGDBRA:
    			opcode = op_CGDBRA
    		case ACLFEBR:
    			opcode = op_CLFEBR
    		case ACLFDBR:
    			opcode = op_CLFDBR
    		case ACLGEBR:
    			opcode = op_CLGEBR
    		case ACLGDBR:
    			opcode = op_CLGDBR
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/InstrumentingClassTransform.java

    import static org.objectweb.asm.Opcodes.ACC_PRIVATE;
    import static org.objectweb.asm.Opcodes.ACC_STATIC;
    import static org.objectweb.asm.Opcodes.ACC_SYNTHETIC;
    import static org.objectweb.asm.Opcodes.H_INVOKESTATIC;
    import static org.objectweb.asm.Opcodes.INVOKESPECIAL;
    import static org.objectweb.asm.Opcodes.INVOKESTATIC;
    import static org.objectweb.asm.Opcodes.INVOKEVIRTUAL;
    import static org.objectweb.asm.Type.INT_TYPE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

                interceptedCallable.getKind() == CallableKindInfo.INSTANCE_METHOD ? CodeBlock.of("(opcode == $1T.INVOKEVIRTUAL || opcode == $1T.INVOKEINTERFACE)", Opcodes.class) :
                    interceptedCallable.getKind() == CallableKindInfo.AFTER_CONSTRUCTOR ? CodeBlock.of("opcode == $T.INVOKESPECIAL", Opcodes.class) : null;
            if (result == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt

      }
    
      fun closeCodeExceptionMessage(code: Int): String? {
        return if (code < 1000 || code >= 5000) {
          "Code must be in range [1000,5000): $code"
        } else if (code in 1004..1006 || code in 1015..2999) {
          "Code $code is reserved and may not be used."
        } else {
          null
        }
      }
    
      fun validateCloseCode(code: Int) {
        val message = closeCodeExceptionMessage(code)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketWriter.kt

      }
    
      /**
       * Send a close frame with optional code and reason.
       *
       * @param code Status code as defined by
       *     [Section 7.4 of RFC 6455](http://tools.ietf.org/html/rfc6455#section-7.4) or `0`.
       * @param reason Reason for shutting down or `null`.
       */
      @Throws(IOException::class)
      fun writeClose(
        code: Int,
        reason: ByteString?,
      ) {
        var payload = ByteString.EMPTY
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/jvmbytecode/JvmBytecodeCallInterceptor.java

    import java.util.function.Supplier;
    
    public interface JvmBytecodeCallInterceptor extends FilterableBytecodeInterceptor {
        boolean visitMethodInsn(
                String className,
                int opcode,
                String owner,
                String name,
                String descriptor,
                boolean isInterface,
                Supplier<MethodNode> readMethodNode
        );
    
        @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:55:59 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top