Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 655 for reflectively (0.4 sec)

  1. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/propertyInCompanionObject.kt

    package prop.`in`.`companion`
    
    class Test {
        fun test() {
            val x = <expr>someField</expr>
        }
        companion object {
            // effectively constant
            val someField = "something"
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 11 12:51:16 UTC 2022
    - 205 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/propertyInCompanionObject_indirect_twice.kt

    package prop.`in`.`companion`.indirect.twice
    
    class Test {
        fun test() {
            val x = <expr>oneMore</expr>
        }
        companion object {
            // effectively constant
            val someField = "something"
            val indirectPointer = someField
            val oneMore = indirectPointer
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 11 12:51:16 UTC 2022
    - 296 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationValve.java

     * <p>
     * This is required as the build operation notification machinery is effectively session scoped,
     * but we need to allow, external (i.e. non ListenerManager), listeners per build.
     * <p>
     * Furthermore, the actual lifecycle is not something that we currently model with the service registries.
     * The notification listener is effectively of cross build tree scope, which doesn't exist.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/propertyInCompanionObject_indirect.kt

    package prop.`in`.`companion`.indirect
    
    class Test {
        fun test() {
            val x = <expr>indirectPointer</expr>
        }
        companion object {
            // effectively constant
            val someField = "something"
            val indirectPointer = someField
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 11 12:51:16 UTC 2022
    - 260 bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/reflect/66056.md

    The new methods [Value.Seq] and [Value.Seq2] return sequences that iterate over the value
    as though it were used in a for/range loop.
    The new methods [Type.CanSeq] and [Type.CanSeq2] report whether calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 11:54:18 UTC 2024
    - 282 bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/failure/TestFailureMapper.java

         * A {@link Throwable} is supported if its class name, or any of its superclasses, is present in the list returned by {@link #getSupportedClassNames()}.
         * <p>
         * This method does the check purely by reflective means, and don't need the checked class to be on the classpath.
         *
         * @param cls the {@link Class} to checked
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:48:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/runtime/stubs_arm64.go

    //go:noescape
    func asmcgocall_no_g(fn, arg unsafe.Pointer)
    
    func emptyfunc()
    
    // Used by reflectcall and the reflect package.
    //
    // Spills/loads arguments in registers to/from an internal/abi.RegArgs
    // respectively. Does not follow the Go ABI.
    func spillArgs()
    func unspillArgs()
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    // TODO: Make this a compiler intrinsic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 10:04:13 UTC 2023
    - 700 bytes
    - Viewed (0)
  8. src/runtime/stubs_riscv64.go

    func save_g()
    
    //go:noescape
    func asmcgocall_no_g(fn, arg unsafe.Pointer)
    
    // Used by reflectcall and the reflect package.
    //
    // Spills/loads arguments in registers to/from an internal/abi.RegArgs
    // respectively. Does not follow the Go ABI.
    func spillArgs()
    func unspillArgs()
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    // TODO: Make this a compiler intrinsic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 695 bytes
    - Viewed (0)
  9. internal/config/errors.go

    	)
    
    	ErrMissingEnvCredentialRootPassword = newErrFn(
    		"Missing credential environment variable, \""+EnvRootPassword+"\"",
    		"Environment variable \""+EnvRootPassword+"\" is missing",
    		`Root user name (access key) and root password (secret key) are expected to be specified via environment variables MINIO_ROOT_USER and MINIO_ROOT_PASSWORD respectively`,
    	)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 18 22:25:32 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. releasenotes/notes/revision-tag-command.yaml

        **Added** `istioctl experimental revision tag` command group. Revision tags act as aliases for
        control plane revisions. Users can label their namespaces with a revision tag rather than pointing them
        directly at a revision and selectively decide the granularity of their namespace labels. This makes it possible
        to perform upgrades with the ease of in-place upgrades while having the safety revision-based upgrades
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 16 06:17:37 UTC 2021
    - 532 bytes
    - Viewed (0)
Back to top