Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for Const (0.81 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/HtmlReportTemplate.kt

     */
    
    package org.gradle.internal.cc.impl.problems
    
    import java.io.BufferedReader
    import java.net.URL
    
    
    internal
    object HtmlReportTemplate {
    
        const val reportHtmlFileName = "configuration-cache-report.html"
    
        private
        const val modelLine = """<script type="text/javascript" src="configuration-cache-report-data.js"></script>"""
    
        /**
         * Returns the header and footer of the html template as a pair.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                    "<script>hljs.highlightAll();</script>" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:10:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/recursiveJavaFieldsReference.kt

    // FILE: JavaConst.java
    public interface JavaConst {
        public static final int x = KotlinConst.y;
    }
    
    // FILE: main.kt
    object KotlinConst {
        const val y = <expr>JavaConst.x</expr>;
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 08:19:41 UTC 2024
    - 186 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/check_test.go

    	// we must have a line comment that starts with a "-"
    	const prefix = "//"
    	if !bytes.HasPrefix(src, []byte(prefix)) {
    		return nil // first line is not a line comment
    	}
    	src = src[len(prefix):]
    	if i := bytes.Index(src, []byte("-")); i < 0 || len(bytes.TrimSpace(src[:i])) != 0 {
    		return nil // comment doesn't start with a "-"
    	}
    	end := bytes.Index(src, []byte("\n"))
    	const maxLen = 256
    	if end < 0 || end > maxLen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/utils/utils.kt

            if (finder::class.java.name == KOTLIN_JAVA_ELEMENT_FINDER_CLASS_NAME) {
                continue
            }
            action(finder)
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 798 bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/softwareTypes/SoftwareTypes.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.evaluator.softwareTypes
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 743 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/testdata/issue49205.go

    // test case from issue
    
    type _ interface{
    	m /* ERROR unexpected name int in interface type; possibly missing semicolon or newline or } */ int
    }
    
    // other cases where the fix for this issue affects the error message
    
    const (
    	x int = 10 /* ERROR unexpected literal "foo" in grouped declaration; possibly missing semicolon or newline or \) */ "foo"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 952 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Trunc(32|64)to16 x) => (MOVHZreg x)
    (Trunc64to32 <t> x) && t.IsSigned() => (MOVWreg x)
    (Trunc64to32 x) => (MOVWZreg x)
    
    // Lowering constants
    (Const(64|32|16|8) [val]) => (MOVDconst [int64(val)])
    (Const(32|64)F ...) => (FMOV(S|D)const ...)
    (ConstNil) => (MOVDconst [0])
    (ConstBool [t]) => (MOVDconst [b2i(t)])
    
    // Carrying addition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/FirStandaloneServiceRegistrar.kt

    import org.jetbrains.kotlin.asJava.finder.JavaElementFinder
    
    @OptIn(KaAnalysisNonPublicApi::class)
    object FirStandaloneServiceRegistrar : AnalysisApiSimpleServiceRegistrar() {
        private const val PLUGIN_RELATIVE_PATH = "/META-INF/analysis-api/analysis-api-fir-standalone-base.xml"
    
        override fun registerApplicationServices(application: MockApplication) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/fix/main.go

    var (
    	doDiff    = flag.Bool("diff", false, "display diffs instead of rewriting files")
    	goVersion = flag.String("go", "", "go language version for files")
    )
    
    // enable for debugging fix failures
    const debug = false // display incorrectly reformatted source and exit
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: go tool fix [-diff] [-r fixname,...] [-force fixname,...] [path ...]\n")
    	flag.PrintDefaults()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top