Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for _RETURN (0.22 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

                    // Set this.name = param1
                    _ALOAD(0);
                    _ALOAD(1);
                    _PUTFIELD(generatedTypeName, NAME_FIELD, STRING);
                    // Done
                    _RETURN();
                }});
    
                //
                // Add `getName()`
                //
                publicMethod("getName", RETURN_STRING, methodVisitor -> new MethodVisitorScope(methodVisitor) {{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarIntegrationTest.groovy

            //   However, because of the type of the object returned by `getArchiveFile()` is a `Property`,
            //   we assume it's mutable, even though the _return type_ is `Provider`.
            //   We will produce the correct message after https://github.com/gradle/gradle/issues/26141 is fixed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

        }
    
        public void _IRETURN_OF(Type type) {
            super.visitInsn(type.getOpcode(IRETURN));
        }
    
        public void _IRETURN() {
            super.visitInsn(IRETURN);
        }
    
        public void _RETURN() {
            super.visitInsn(RETURN);
        }
    
        public void _PUTFIELD(String owner, String name, String descriptor) {
            super.visitFieldInsn(PUTFIELD, owner, name, descriptor);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/printer.go

    // a semicolon is automatically inserted. Vice versa, a semicolon may
    // be omitted in those cases.
    func impliesSemi(tok token) bool {
    	switch tok {
    	case _Name,
    		_Break, _Continue, _Fallthrough, _Return,
    		/*_Inc, _Dec,*/ _Rparen, _Rbrack, _Rbrace: // TODO(gri) fix this
    		return true
    	}
    	return false
    }
    
    // TODO(gri) provide table of []byte values for all tokens to avoid repeated string conversion
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top