Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,957 for _return (0.28 sec)

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

                }});
    
                //
                // Add `toString()`
                //
                publicMethod("toString", RETURN_STRING, methodVisitor -> new MethodVisitorScope(methodVisitor) {{
                    // return this.name
                    _ALOAD(0);
                    _GETFIELD(generatedTypeName, NAME_FIELD, STRING);
                    _ARETURN();
                }});
    
                //
    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 _ARETURN() {
            super.visitInsn(ARETURN);
        }
    
        public void _IRETURN_OF(Type type) {
            super.visitInsn(type.getOpcode(IRETURN));
        }
    
        public void _IRETURN() {
            super.visitInsn(IRETURN);
        }
    
        public void _RETURN() {
            super.visitInsn(RETURN);
        }
    
    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/scanner_test.go

    	{_Goto, "goto", 0, 0},
    	{_If, "if", 0, 0},
    	{_Import, "import", 0, 0},
    	{_Interface, "interface", 0, 0},
    	{_Map, "map", 0, 0},
    	{_Package, "package", 0, 0},
    	{_Range, "range", 0, 0},
    	{_Return, "return", 0, 0},
    	{_Select, "select", 0, 0},
    	{_Struct, "struct", 0, 0},
    	{_Switch, "switch", 0, 0},
    	{_Type, "type", 0, 0},
    	{_Var, "var", 0, 0},
    }
    
    func TestComments(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/printer.go

    	}
    }
    
    func groupFor(d Decl) (token, *Group) {
    	switch d := d.(type) {
    	case *ImportDecl:
    		return _Import, d.Group
    	case *ConstDecl:
    		return _Const, d.Group
    	case *TypeDecl:
    		return _Type, d.Group
    	case *VarDecl:
    		return _Var, d.Group
    	case *FuncDecl:
    		return _Func, nil
    	default:
    		panic("unreachable")
    	}
    }
    
    type printGroup struct {
    	node
    	Tok   token
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/scanner.go

    		}
    		keywordMap[h] = tok
    	}
    }
    
    func lower(ch rune) rune     { return ('a' - 'A') | ch } // returns lower-case ch iff ch is ASCII letter
    func isLetter(ch rune) bool  { return 'a' <= lower(ch) && lower(ch) <= 'z' || ch == '_' }
    func isDecimal(ch rune) bool { return '0' <= ch && ch <= '9' }
    func isHex(ch rune) bool     { return '0' <= ch && ch <= '9' || 'a' <= lower(ch) && lower(ch) <= 'f' }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  7. test/return.go

    func _() int {
    	return 2
    	print(3)
    } // ERROR "missing return"
    
    func _() int {
    L:
    	goto L
    	print(3)
    } // ERROR "missing return"
    
    func _() int {
    	panic(2)
    	print(3)
    } // ERROR "missing return"
    
    func _() int {
    	{
    		return 2
    		print(3)
    	}
    } // ERROR "missing return"
    
    func _() int {
    L:
    	{
    		goto L
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 32.7K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/object.h

    template <typename TReturn, typename... TFuncArgs>
    class CallableWrapperUnpackArgs<TReturn (*)(TFuncArgs...)>
        : public CallableWrapper<TReturn (*)(TFuncArgs...), TReturn, TFuncArgs...> {
      using Fn = TReturn (*)(TFuncArgs...);
    
     public:
      CallableWrapperUnpackArgs(Fn fn, const char* name)
          : CallableWrapper<Fn, TReturn, TFuncArgs...>(fn, name) {}
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

            if (!legacyTypesSupport.getSyntheticClasses().contains(name)) {
                return null;
            }
            return legacyTypesSupport.generateSyntheticClass(name);
        }
    
        @Override
        protected boolean shouldTransform(String className) {
            return legacyTypesSupport.getClassesToMixInGroovyObject().contains(className) || legacyTypesSupport.getSyntheticClasses().contains(className);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

         */
        String getProcessResourcesTaskName();
    
        /**
         * Returns the name of the compile Java task for this source set.
         *
         * @return The task name. Never returns null.
         */
        String getCompileJavaTaskName();
    
        /**
         * Returns the name of a compile task for this source set.
         *
         * @param language The language to be compiled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top