Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for OnField (0.19 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractClassChangeIncrementalCompilationIntegrationTest.groovy

                "class OnField { @B(A.class) String foo; }",
                "class OnParameter { void foo(@B(A.class) int x) {} }"
            outputs.snapshot { run language.compileTaskName }
    
            when:
            a.text += "/* change */"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("A", "OnClass", "OnMethod", "OnParameter", "OnField")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalGroovyCompilationIntegrationTest.groovy

            ], impl: [
                // cases where it's relevant, ABI-wise
                "class X {}",
                "@B(A.CST) class OnClass {}",
                "class OnMethod { @B(A.CST) void foo() {} }",
                "class OnField { @B(A.CST) String foo; }",
                "class OnParameter { void foo(@B(A.CST) int x) {} }",
                "class InMethodBody { void foo(int x) { @B(A.CST) int value = 5; } }",
            ]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

                "class A {}"
            ], impl: [
                "class NoAnnotationClass {}",
                "@B(A.class) class OnClass {}",
                "class OnMethod { @B(A.class) void foo() {} }",
                "class OnField { @B(A.class) String foo; }",
                "class OnParameter { void foo(@B(A.class) int x) {} }"
            ]
    
            impl.snapshot { run language.compileTaskName }
    
            when:
            source api: [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalJavaCompilationIntegrationTest.groovy

            ], impl: [
                // cases where it's relevant, ABI-wise
                "@B(A.x) class OnClass {}",
                "class OnMethod { @B(A.y) void foo() {} }",
                "class OnField { @B(A.x) String foo; }",
                "class OnParameter { void foo(@B(A.y) int x) {} }",
                "class InMethodBody { void foo(int x) { @B(A.x) int value = 5; } }"
            ]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  5. src/time/zoneinfo_plan9.go

    }
    
    // Copied from strings to avoid a dependency.
    func fields(s string) []string {
    	// First count the fields.
    	n := 0
    	inField := false
    	for _, rune := range s {
    		wasInField := inField
    		inField = !isSpace(rune)
    		if inField && !wasInField {
    			n++
    		}
    	}
    
    	// Now create them.
    	a := make([]string, n)
    	na := 0
    	fieldStart := -1 // Set to -1 when looking for start of field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 16 23:09:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/pkginit/initAsanGlobals.go

    	nxp := src.NoXPos
    	nfield := types.NewField
    	asanGlobal := types.NewStruct([]*types.Field{
    		nfield(nxp, fname("beg"), up),
    		nfield(nxp, fname("size"), up),
    		nfield(nxp, fname("sizeWithRedzone"), up),
    		nfield(nxp, fname("name"), up),
    		nfield(nxp, fname("moduleName"), up),
    		nfield(nxp, fname("hasDynamicInit"), up),
    		nfield(nxp, fname("sourceLocation"), up),
    		nfield(nxp, fname("odrIndicator"), up),
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:24 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/handlesTagsAndTaglets/src/taglet/java/CustomTaglet.java

    import com.sun.tools.doclets.Taglet;
    import com.sun.javadoc.*;
    
    import java.util.Map;
    
    public class CustomTaglet implements Taglet {
        public boolean inField() {
            return false;
        }
    
        public boolean inConstructor() {
            return false;
        }
    
        public boolean inMethod() {
            return false;
        }
    
        public boolean inOverview() {
            return false;
        }
    
        public boolean inPackage() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 998 bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/canCombineLocalOptionWithOtherOptions/src/taglet/java/LocaleAwareTaglet.java

     */
    import com.sun.javadoc.Tag;
    import com.sun.tools.doclets.Taglet;
    
    import java.util.Locale;
    import java.util.Map;
    
    public class LocaleAwareTaglet implements Taglet {
        public boolean inField() {
            return false;
        }
    
        public boolean inConstructor() {
            return false;
        }
    
        public boolean inMethod() {
            return false;
        }
    
        public boolean inOverview() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    	nBinaryExpr
    	nBlockStmt
    	nBranchStmt
    	nCallExpr
    	nCaseClause
    	nChanType
    	nCommClause
    	nComment
    	nCommentGroup
    	nCompositeLit
    	nDeclStmt
    	nDeferStmt
    	nEllipsis
    	nEmptyStmt
    	nExprStmt
    	nField
    	nFieldList
    	nFile
    	nForStmt
    	nFuncDecl
    	nFuncLit
    	nFuncType
    	nGenDecl
    	nGoStmt
    	nIdent
    	nIfStmt
    	nImportSpec
    	nIncDecStmt
    	nIndexExpr
    	nIndexListExpr
    	nInterfaceType
    	nKeyValueExpr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. src/encoding/csv/reader_test.go

    	Output: [][]string{{"a", "b", "c"}},
    	Comma:  ';',
    }, {
    	Name: "MultiLine",
    	Input: `§"two
    line",§"one line",§"three
    line
    field"`,
    	Output: [][]string{{"two\nline", "one line", "three\nline\nfield"}},
    }, {
    	Name:  "BlankLine",
    	Input: "§a,§b,§c\n\n¶§d,§e,§f\n\n",
    	Output: [][]string{
    		{"a", "b", "c"},
    		{"d", "e", "f"},
    	},
    }, {
    	Name:  "BlankLineFieldCount",
    	Input: "§a,§b,§c\n\n¶§d,§e,§f\n\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 04:25:13 UTC 2022
    - 19.1K bytes
    - Viewed (0)
Back to top