Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for maybeInit (0.26 sec)

  1. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanConstructors.kt

            }
        }
    
        private
        fun maybeInit(beanType: Class<*>) {
            val superclass = beanType.superclass
            if (superclass?.classLoader != null) {
                Class.forName(superclass.name, true, superclass.classLoader)
                maybeInit(superclass)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "recompiles but does not relink executable with source comment change"() {
            given:
            run "installMainExecutable"
            maybeWait()
    
            when:
            sourceFile.text = sourceFile.text.replaceFirst("// Simple hello world app", "// Comment is changed")
            run "mainExecutable"
    
            then:
            skipped libraryCompileTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

            getAlternateLibrarySources(path).find { it.name == "hello.${app.sourceExtension}" }.writeToDir(file("src/${lib}"))
            maybeWait()
        }
    
        def libraryHeaderModified() {
            alternateLibraryHeader.writeToDir(file("src/hello"))
            maybeWait()
        }
    
        def libAndPCHTasksExecuted(String lib="hello", String linkage="shared", String sourceSet=app.sourceType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AbstractInstalledToolChainIntegrationSpec.groovy

                (toolChain.displayName.startsWith("clang") ||
                    // GCC 9 or later
                    toolChain.displayName ==~ /gcc (9|\d\d+).*/)
        }
    
        protected void maybeWait() {
            if (toolChain.visualCpp) {
                def now = Time.clock().currentTime
                def nextSecond = now % 1000
                Thread.sleep(1200 - nextSecond)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/static/trace_viewer_full.html

    this.settingsKey_=settingsKey;this.maybeInit_();},maybeInit_(){if(!this.needsInit_)return;if(this.settingsKey_===undefined)return;this.needsInit_=false;this.select(tr.b.Settings.get(this.settingsKey_));},set items(items){this.radioButtons_={};items.forEach(function(e){if(e.key in this.radioButtons_){throw new Error(e.key+' already exists');}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top