Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for inPackage (0.16 sec)

  1. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/handlesTagsAndTaglets/src/taglet/java/CustomTaglet.java

            return false;
        }
    
        public boolean inMethod() {
            return false;
        }
    
        public boolean inOverview() {
            return false;
        }
    
        public boolean inPackage() {
            return false;
        }
    
        public boolean inType() {
            return true;
        }
    
        public boolean isInlineTag() {
            return false;
        }
    
        public String getName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 998 bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/canCombineLocalOptionWithOtherOptions/src/taglet/java/LocaleAwareTaglet.java

            return false;
        }
    
        public boolean inMethod() {
            return false;
        }
    
        public boolean inOverview() {
            return true;
        }
    
        public boolean inPackage() {
            return false;
        }
    
        public boolean inType() {
            return true;
        }
    
        public boolean isInlineTag() {
            return false;
        }
    
        public String getName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    	nFuncDecl
    	nFuncLit
    	nFuncType
    	nGenDecl
    	nGoStmt
    	nIdent
    	nIfStmt
    	nImportSpec
    	nIncDecStmt
    	nIndexExpr
    	nIndexListExpr
    	nInterfaceType
    	nKeyValueExpr
    	nLabeledStmt
    	nMapType
    	nPackage
    	nParenExpr
    	nRangeStmt
    	nReturnStmt
    	nSelectStmt
    	nSelectorExpr
    	nSendStmt
    	nSliceExpr
    	nStarExpr
    	nStructType
    	nSwitchStmt
    	nTypeAssertExpr
    	nTypeSpec
    	nTypeSwitchStmt
    	nUnaryExpr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. src/go/format/format_test.go

    	"\n\n", // issue #11275
    	"\t\n", // issue #11275
    
    	// erroneous programs
    	"ERROR1 + 2 +",
    	"ERRORx :=  0",
    
    	// build comments
    	"// copyright\n\n//go:build x\n\npackage p\n",
    	"// copyright\n\n//go:build x\n// +build x\n\npackage p\n",
    }
    
    func String(s string) (string, error) {
    	res, err := Source([]byte(s))
    	if err != nil {
    		return "", err
    	}
    	return string(res), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:46 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  5. src/index/suffixarray/gen.go

    	if x < 0 {
    		log.Fatal("cannot find blank line after copyright comment")
    	}
    
    	var buf bytes.Buffer
    	buf.Write(data[:x])
    	buf.WriteString("\n\n// Code generated by go generate; DO NOT EDIT.\n\npackage suffixarray\n")
    
    	for {
    		x := bytes.Index(data, []byte("\nfunc "))
    		if x < 0 {
    			break
    		}
    		data = data[x:]
    		p := bytes.IndexByte(data, '(')
    		if p < 0 {
    			p = len(data)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-provider-plugins/src/test/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/PrecompiledScriptPluginTest.kt

        @Test
        fun `can extract package name from script with Windows line endings`() {
    
            assertThat(
                scriptPlugin(
                    "my-script.gradle.kts",
                    "/*\r\n */\r\npackage org.acme\r\n"
                ).packageName,
                equalTo("org.acme")
            )
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. src/go/ast/commentmap_test.go

    	_ = i
    }
    
    // the very last comment
    `
    
    // res maps a key of the form "line number: node type"
    // to the associated comments' text.
    var res = map[string]string{
    	" 5: *ast.File":       "the very first comment\npackage p\n",
    	" 5: *ast.Ident":      " the name is p\n",
    	" 8: *ast.GenDecl":    "imports\n",
    	" 9: *ast.ImportSpec": "bytes\n",
    	"10: *ast.ImportSpec": "fmt\n",
    	"16: *ast.GenDecl":    "T\nalso associated with T\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    					resolved++
    					continue
    				}
    
    				filtered, isPackage, m, unique := r.disambiguate(cs)
    				if !unique {
    					unresolved = append(unresolved, filtered)
    					continue
    				}
    
    				if m.Path == "" {
    					// The query is not viable. Choose an arbitrary candidate from
    					// before filtering and “resolve” it to report a conflict.
    					isPackage, m = r.chooseArbitrarily(cs)
    				}
    				if isPackage {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. src/go/build/build_test.go

    	ctxt  Context
    	name  string
    	data  string
    	match bool
    }{
    	{ctxtP9, "foo_arm.go", "", true},
    	{ctxtP9, "foo1_arm.go", "// +build linux\n\npackage main\n", false},
    	{ctxtP9, "foo_darwin.go", "", false},
    	{ctxtP9, "foo.go", "", true},
    	{ctxtP9, "foo1.go", "// +build linux\n\npackage main\n", false},
    	{ctxtP9, "foo.badsuffix", "", false},
    	{ctxtAndroid, "foo_linux.go", "", true},
    	{ctxtAndroid, "foo_android.go", "", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  10. src/cmd/covdata/dump.go

    		counters = v.Counters
    	} else if d.cmd == debugDumpMode && *liveflag {
    		suppressOutput = true
    	}
    
    	if d.cmd == debugDumpMode && !suppressOutput {
    		if !d.preambleEmitted {
    			fmt.Printf("\nPackage path: %s\n", d.pkgImportPath)
    			fmt.Printf("Package name: %s\n", d.pkgName)
    			fmt.Printf("Module path: %s\n", d.modulePath)
    			d.preambleEmitted = true
    		}
    		fmt.Printf("\nFunc: %s\n", fd.Funcname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top