Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,159 for bodies (0.15 sec)

  1. test/fixedbugs/issue4879.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4879: export data misses the '&' for some
    // composite literals in inlined bodies.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 25 23:43:31 UTC 2013
    - 284 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/toolchain-filters/kotlin/build.gradle.kts

    plugins {
        java
    }
    
    val testToolchain = System.getProperty("testToolchain", "knownVendor")
    
    if (testToolchain == "knownVendor") {
    // The bodies of the if statements are intentionally not indented to make the user guide page prettier.
    
    // tag::toolchain-known-vendor[]
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    // end::toolchain-known-vendor[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1000 bytes
    - Viewed (0)
  3. test/fixedbugs/bug459.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 3890: missing detection of init cycle involving
    // method calls in function bodies.
    
    package flag
    
    var commandLine = NewFlagSet() // ERROR "initialization cycle|depends upon itself"
    
    type FlagSet struct {
    }
    
    func (f *FlagSet) failf(format string, a ...interface{}) {
    	f.usage()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 681 bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/bodies/KtFunctionLikeBodyRenderer.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.renderer.declarations.bodies
    
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.symbols.KaFunctionLikeSymbol
    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 879 bytes
    - Viewed (0)
  5. src/os/signal/sig.s

    // package but we still need a .s file so the Go tool does not pass -complete
    // to the go tool compile so the latter does not complain about Go functions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 410 bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/bodies/KtRendererBodyMemberScopeSorter.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.renderer.declarations.bodies
    
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.symbols.KaDeclarationSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaEnumEntrySymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithInnerTypes.java

             */
            class AnotherInner {
                InnerClass getOuter() { return null; }
            }
        }
    
        Sub2Interface getSomeProp() {
            // ignore classes in method bodies
            class IgnoreMe {}
    
            // ignore anonymous classes
            return new Sub2Interface() { };
        }
    
        // ignore anonymous classes
        final Runnable ignoreMe = new Runnable() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 876 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/toolchain-filters/groovy/build.gradle

    plugins {
        id 'java'
    }
    
    def testToolchain = System.getProperty("testToolchain", "knownVendor")
    
    if (testToolchain == "knownVendor") {
    // The bodies of the if statements are intentionally not indented to make the user guide page prettier.
    // tag::toolchain-known-vendor[]
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    // end::toolchain-known-vendor[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1004 bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/bodies/KtPropertyAccessorBodyRenderer.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.renderer.declarations.bodies
    
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.symbols.KaPropertyAccessorSymbol
    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 907 bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/bodies/KtScriptInitializerRenderer.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.renderer.declarations.bodies
    
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.renderer.declarations.KaDeclarationRenderer
    import org.jetbrains.kotlin.analysis.api.symbols.KaScriptSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top