Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 424 for loadOps (0.18 sec)

  1. tools/docker.yaml

    # Unlike standard Dockerfiles, Istio builds artifacts outside of docker and then copies them to a temp folder;
    # This folder is then passed as the docker context. This avoids complex .dockerignore or large context loads.
    
    # Example image config
    example:
    - name: helloworld # Name of the image. Will end up pushed to <HUB>/helloworld:<TAG>
      dockerfile: helloworld/Dockerfile.proxyv2
      files:
      # Include a static file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_mipsx.go

    //go:noescape
    func Load(ptr *uint32) uint32
    
    //go:noescape
    func Load8(ptr *uint8) uint8
    
    // NO go:noescape annotation; *ptr escapes if result escapes (#31525)
    func Loadp(ptr unsafe.Pointer) unsafe.Pointer
    
    //go:noescape
    func LoadAcq(ptr *uint32) uint32
    
    //go:noescape
    func LoadAcquintptr(ptr *uintptr) uintptr
    
    //go:noescape
    func And8(ptr *uint8, val uint8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 20:08:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/changedetection/state/DefaultFileAccessTimeJournalTest.groovy

            when:
            journal.setLastAccessTime(file, 42)
            journal.deleteLastAccessTime(file)
    
            then:
            journal.getLastAccessTime(file) == inceptionTimestamp
        }
    
        def "loads and uses previously stored inception time unless file has a later modification time"() {
            given:
            def inceptionTimestamp = System.currentTimeMillis() - 30_000
            file.lastModified = inceptionTimestamp - 30_000
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:30 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/Resources.java

       * {@linkplain Thread#getContextClassLoader() context class loader}. In simple environments, the
       * context class loader will find resources from the class path. In environments where different
       * threads can have different class loaders, for example app servers, the context class loader
       * will typically have been set to an appropriate loader for the current thread.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/GroovyCallInterceptorsProvider.java

            public List<FilterableCallInterceptor> getCallInterceptors() {
                return interceptors.get();
            }
        }
    
        /**
         * Use {@link ClassLoaderSourceGroovyCallInterceptorsProvider} instead that loads classes via SPI.
         * Kept to support old case where we loaded a class directly.
         */
        @NonNullApi
        @Deprecated
        @SuppressWarnings("DeprecatedIsStillUsed")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:46:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/initialization/ProjectPropertySettingBuildLoaderTest.groovy

            2 * gradleProperties.mergeProperties([:]) >> [prop: 'value']
    
            when:
            loader.load(settings, gradle)
    
            then:
            1 * rootProperties.set('prop', 'value')
        }
    
        def "loads project properties from gradle.properties file in project dir"() {
            given:
            GUtil.saveProperties(new Properties([prop: 'rootValue']), rootPropertiesFile())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:58 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  7. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

            then:
            secondResult.assertTaskSkipped(":test")
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        /**
         * Loads the JUnit XML test results file for the given, named test case. It
         * assumes the file path to that file and loads it using Groovy's XmlSlurper
         * which can then be used to extract information from the XML.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

    Rel(scriptResolver, editorReportPanel, "Reports")
    Rel(scriptResolver, editorHints, "Reports")
    Rel(scriptResolver, tapiModels, "Requests", "TAPI")
    Rel(gradleKotlinDslApi, kotlinc, "Uses", "Embedded")
    
    Rel(ideKotlin, scriptResolver, "Loads", "Embedded")
    Rel(ideKotlin, kotlinc, "Uses")
    
    Rel_Neighbor(kgp, buildCache, "Uses")
    Rel(providerExecution, buildCache, "Uses")
    
    Lay_D(gradle, gradleKotlinDsl)
    Lay_D(ide, gradleBuildTool)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

    In order to avoid hard-coding the included builds to load, the `settings.gradle` file in `multirepo-app` loads each of these builds dynamically:
    
    ====
    include::sample[dir="kotlin",files="settings.gradle.kts[tags=include_builds]"]
    include::sample[dir="groovy",files="settings.gradle[tags=include_builds]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/api/GeneratorTask.java

    import javax.inject.Inject;
    import java.io.File;
    
    /**
     * <p>A {@code GeneratorTask} generates a configuration file based on a domain object of type T.
     * When executed the task:
     * <ul>
     *
     * <li>loads the object from the input file, if it exists.</li>
     *
     * <li>Calls the beforeConfigured actions, passing the object to each action.</li>
     *
     * <li>Configures the object in some task-specific way.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top