Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for generic (0.41 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.ir.txt

          annotations:
            Anno
          $this: VALUE_PARAMETER INSTANCE_RECEIVER name:<this> type:<root>.Generic<T of <root>.Generic>
          TYPE_PARAMETER name:T index:0 variance: superTypes:[kotlin.Any?] reified:false
          CONSTRUCTOR visibility:public <> () returnType:<root>.Generic<T of <root>.Generic> [primary]
            BLOCK_BODY
              DELEGATING_CONSTRUCTOR_CALL 'public constructor <init> () [primary] declared in <root>.Ordinary'
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 04 09:35:38 UTC 2024
    - 25K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                    bar
                    baz
                    """
                )
            )
        }
    
        @Test
        fun `multiple generic extension targets`() {
    
            withBuildSrc {
    
                "src/main/kotlin" {
                    withFile(
                        "types.kt",
                        """
    
                        package my
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

                    doLast {
                        // Explicit SAM conversion
                        println(create("foo", NamedDomainObjectFactory<String> { it.toUpperCase() }))
                        // Explicit SAM conversion with generic type argument inference
                        println(create<String>("bar", NamedDomainObjectFactory { it.toUpperCase() }))
                        // Implicit SAM conversion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

        if (descriptor is TypeAliasDescriptor) {
            descriptor = descriptor.classDescriptor
        }
    
        if (descriptor !is ClassDescriptor) {
            return null
        }
    
        // Generic non-array class literals are not supported in K1
        val typeArguments = descriptor.typeConstructor.parameters.map { StarProjectionImpl(it) }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    (DIVVU x (MOVVconst [c])) && isPowerOfTwo64(c) => (SRLVconst [log64(c)] x)
    (REMVU _ (MOVVconst [1])) => (MOVVconst [0])                       // mod
    (REMVU x (MOVVconst [c])) && isPowerOfTwo64(c) => (ANDconst [c-1] x) // mod
    
    // generic simplifications
    (ADDV x (NEGV y)) => (SUBV x y)
    (SUBV x x) => (MOVVconst [0])
    (SUBV (MOVVconst [0]) x) => (NEGV x)
    (AND x x) => x
    (OR  x x) => x
    (XOR x x) => (MOVVconst [0])
    
    // remove redundant *const ops
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    (Select0 (DIVVU _ (MOVVconst [1]))) => (MOVVconst [0])                       // mod
    (Select0 (DIVVU x (MOVVconst [c]))) && isPowerOfTwo64(c) => (ANDconst [c-1] x) // mod
    
    // generic simplifications
    (ADDV x (NEGV y)) => (SUBV x y)
    (SUBV x x) => (MOVVconst [0])
    (SUBV (MOVVconst [0]) x) => (NEGV x)
    (AND x x) => x
    (OR  x x) => x
    (XOR x x) => (MOVVconst [0])
    
    // remove redundant *const ops
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                    *23*
                    *42*
                    """
                )
            )
        }
    
        @Test
        @LeaksFileHandles("Kotlin Compiler Daemon working directory")
        fun `given generic extension types they can be accessed and configured`() {
    
            withDefaultSettingsIn("buildSrc")
    
            withFile(
                "buildSrc/build.gradle.kts",
                """
    
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    // 8 and 128 are magic constants, see runtime/mkduff.go
    (Zero [s] {t} ptr mem)
    	&& s%8 == 0 && s <= 8*128
    	&& t.Alignment()%8 == 0 && !config.noDuffDevice =>
    	(DUFFZERO [8 * (128 - s/8)] ptr mem)
    
    // Generic zeroing uses a loop
    (Zero [s] {t} ptr mem) =>
    	(LoweredZero [t.Alignment()]
    		ptr
    		(ADD <ptr.Type> ptr (MOVDconst [s-moveSize(t.Alignment(), config)]))
    		mem)
    
    // Checks
    (IsNonNil ...) => (SNEZ ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    Preamble
    
    The licenses for most software are designed to take away your freedom to
    share and change it. By contrast, the GNU General Public License is
    intended to guarantee your freedom to share and change free software--to
    make sure the software is free for all its users. This General Public
    License applies to most of the Free Software Foundation's software and
    to any other program whose authors commit to using it. (Some other Free
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. JavadocStyleGuide.md

    # Gradle Javadoc Style Guide
    
    ## 1.1 Formatting
    
    ### 1.1.1 General form
    
    The basic formatting of Javadoc blocks is as seen in this example:
    
    ```java
    /**
     * Returns an Image object that can then be painted on the screen.
     * <p>
     * The url argument must specify an absolute {@link URL}. 
     * The name argument is a specifier that is relative to the url argument.
     * This method always returns immediately, whether or not the image exists. 
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top