Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 144 for repeated (0.18 sec)

  1. doc/next/1-intro.md

    `hello` `world`.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    ## DRAFT RELEASE NOTES — Introduction to Go 1.23 {#introduction}
    
    **Go 1.23 is not yet released. These are work-in-progress release notes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:25:26 UTC 2024
    - 406 bytes
    - Viewed (0)
  2. hack/testdata/multi-resource-rclist-modify.json

       "items":[
          {
             "kind":"ReplicationController",
             "apiVersion":"v1",
             "metadata":{
                "name":"mock",
                "labels":{
                   "app":"mock",
                   "status":"replaced"
                }
             },
             "spec":{
                "replicas":1,
                "selector":{
                   "app":"mock"
                },
                "template":{
                   "metadata":{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. hack/testdata/multi-resource-rclist.json

       "items":[
          {
             "kind":"ReplicationController",
             "apiVersion":"v1",
             "metadata":{
                "name":"mock",
                "labels":{
                   "app":"mock",
                   "status":"replaced"
                }
             },
             "spec":{
                "replicas":1,
                "selector":{
                   "app":"mock"
                },
                "template":{
                   "metadata":{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/service/scopes/DefaultGradleUserHomeScopeServiceRegistryTest.groovy

            then:
            def e = thrown(IllegalStateException)
            e.message == 'Gradle user home directory scoped services have already been released.'
        }
    
        def "close fails when services not released"() {
            def dir = new File("home-dir")
    
            given:
            homeDirServices.getServicesFor(dir)
    
            when:
            homeDirServices.close()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CheckedFingerprint.kt

        // Everything is up-to-date
        object Valid : CheckedFingerprint()
    
        // The entry cannot be reused at all and should be recreated from scratch
        class EntryInvalid(val reason: String) : CheckedFingerprint()
    
        // The entry can be reused, however the values for certain projects cannot be reused and should be recreated
        class ProjectsInvalid(val reason: String, val invalidProjects: Set<Path>) : CheckedFingerprint()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. hack/testdata/multi-resource-yaml-modify.yaml

      name: mock
      labels:
        app: mock
        status: replaced
    spec:
      ports:
      - port: 99
        protocol: TCP
        targetPort: 9949
      selector:
        app: mock
    ---
    apiVersion: v1
    kind: ReplicationController
    metadata:
      name: mock
    spec:
      replicas: 1
      selector:
        app: mock
      template:
        metadata:
          labels:
            app: mock
            status: replaced
        spec:
          containers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 557 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_vendor_auto.txt

    stderr '^\texample.com/printversion@v1.0.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt'
    stderr '^\texample.com/unused: is replaced in go.mod, but not marked as replaced in vendor/modules.txt'
    stderr '^\texample.com/version@v1.2.0: is replaced in go.mod, but not marked as replaced in vendor/modules.txt'
    stderr '^\tTo ignore the vendor directory, use -mod=readonly or -mod=mod.\n\tTo sync the vendor directory, run:\n\t\tgo mod vendor$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLockManager.java

    @ServiceScope(Scope.Global.class)
    public interface FileLockManager {
        /**
         * Creates a lock for the given file with the given mode. Acquires a lock with the given mode, which is held until the lock is
         * released by calling {@link FileLock#close()}. This method blocks until the lock can be acquired.
         *
         * @param target The file to be locked.
         * @param options The lock options.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultMemoryManager.java

                    long released = holder.attemptToRelease(toReleaseMemory);
                    toReleaseMemory -= released;
                    freeMemory += released;
                    if (freeMemory >= requestedFreeMemory) {
                        break;
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ReplacesEagerProperty.java

         */
        BinaryCompatibility binaryCompatibility() default ACCESSORS_REMOVED;
    
        /**
         * Accessors that are replaced by the property
         */
        ReplacedAccessor[] replacedAccessors() default {};
    
        /**
         * Deprecation configuration for the replaced accessors
         */
        ReplacedDeprecation deprecation() default @ReplacedDeprecation();
    
        interface DefaultValue {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top