Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 195 for inspections (0.26 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/annotations.kt

     * excessive class loading on startup.
     *
     * The [KaCachedService] annotation itself is currently not enforced by any checkers or inspections, but it serves as an anchor for
     * documentation and improves discoverability of cached services.
     */
    @Target(allowedTargets = [AnnotationTarget.PROPERTY, AnnotationTarget.FIELD])
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    t-utils.jar:/home/tcagent1/agent/lib/annotations.jar:/home/tcagent1/agent/lib/serviceMessages.jar:/home/tcagent1/agent/lib/util.jar:/home/tcagent1/agent/lib/patches-impl.jar:/home/tcagent1/agent/lib/xml-rpc-wrapper.jar:/home/tcagent1/agent/lib/inspections-util.jar:/home/tcagent1/agent/lib/common.jar:/home/tcagent1/agent/lib/messages.jar:/home/tcagent1/agent/lib/commons-logging.jar:/home/tcagent1/agent/lib/commons-collections-3.2.2.jar:/home/tcagent1/agent/lib/openapi.jar:/home/tcagent1/agent/lib...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/body.md

        It improves editor support for Pydantic models, with:
    
        * auto-completion
        * type checks
        * refactoring
        * searching
        * inspections
    
    ## Use the model
    
    Inside of the function, you can access all the attributes of the model object directly:
    
    === "Python 3.10+"
    
        ```Python hl_lines="19"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/symtab.go

    	ldr := ctxt.loader
    	t := ldr.CreateSymForUpdate("runtime.textsectionmap", 0)
    	t.SetType(sym.SRODATA)
    	nsections := int64(0)
    
    	for _, sect := range Segtext.Sections {
    		if sect.Name == ".text" {
    			nsections++
    		} else {
    			break
    		}
    	}
    	t.Grow(3 * nsections * int64(ctxt.Arch.PtrSize))
    
    	off := int64(0)
    	n := 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.3.md

    * Handle image digests in node status and image GC ([#25088](https://github.com/kubernetes/kubernetes/pull/25088), [@ncdc](https://github.com/ncdc))
    * PLEG: reinspect pods that failed prior inspections ([#25077](https://github.com/kubernetes/kubernetes/pull/25077), [@ncdc](https://github.com/ncdc))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/JvmInstallationMetadataComparatorTest.groovy

    package org.gradle.jvm.toolchain.internal
    
    
    import org.gradle.internal.jvm.inspection.JvmInstallationMetadata
    import org.gradle.internal.jvm.inspection.JvmInstallationMetadataComparator
    import spock.lang.Issue
    import spock.lang.Specification
    
    import static org.gradle.internal.jvm.inspection.JvmVendor.KnownJvmVendor
    import static org.gradle.internal.jvm.inspection.JvmVendor.KnownJvmVendor.ADOPTOPENJDK
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JvmInstallationMetadata.java

         */
        String getRuntimeVersion();
    
        /**
         * @see org.gradle.internal.jvm.inspection.ProbedSystemProperty#VM_NAME
         */
        String getJvmName();
    
        /**
         * @see org.gradle.internal.jvm.inspection.ProbedSystemProperty#VM_VERSION
         */
        String getJvmVersion();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BasicGlobalScopeServices.java

    import org.gradle.internal.jvm.inspection.CachingJvmMetadataDetector;
    import org.gradle.internal.jvm.inspection.DefaultJvmMetadataDetector;
    import org.gradle.internal.jvm.inspection.DefaultJvmVersionDetector;
    import org.gradle.internal.jvm.inspection.InvalidInstallationWarningReporter;
    import org.gradle.internal.jvm.inspection.JvmMetadataDetector;
    import org.gradle.internal.jvm.inspection.JvmVersionDetector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/toolchain/DaemonClientToolchainServices.java

    import org.gradle.initialization.GradleUserHomeDirProvider;
    import org.gradle.internal.jvm.inspection.DefaultJavaInstallationRegistry;
    import org.gradle.internal.jvm.inspection.JavaInstallationRegistry;
    import org.gradle.internal.jvm.inspection.JvmInstallationProblemReporter;
    import org.gradle.internal.jvm.inspection.JvmMetadataDetector;
    import org.gradle.internal.logging.progress.ProgressLoggerFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/main/java/org/gradle/jvm/internal/services/PlatformJvmServices.java

     */
    
    package org.gradle.jvm.internal.services;
    
    import org.gradle.internal.jvm.inspection.ConditionalInvalidation;
    import org.gradle.internal.jvm.inspection.InvalidJvmInstallationCacheInvalidator;
    import org.gradle.internal.jvm.inspection.JvmInstallationMetadata;
    import org.gradle.internal.jvm.inspection.JvmMetadataDetector;
    import org.gradle.internal.service.ServiceRegistration;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top