Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,080 for storeJdk (0.13 sec)

  1. src/syscall/syscall.go

    var _zero uintptr
    
    // Unix returns the time stored in ts as seconds plus nanoseconds.
    func (ts *Timespec) Unix() (sec int64, nsec int64) {
    	return int64(ts.Sec), int64(ts.Nsec)
    }
    
    // Unix returns the time stored in tv as seconds plus nanoseconds.
    func (tv *Timeval) Unix() (sec int64, nsec int64) {
    	return int64(tv.Sec), int64(tv.Usec) * 1000
    }
    
    // Nano returns the time stored in ts as nanoseconds.
    func (ts *Timespec) Nano() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/storage/objectreader.go

    // Typically updateObjFn should perform a noop update to the object so that when stored version of a CRD changes, the object is written at the updated storage version.
    // If the timeout is exceeded a error is returned.
    // This is useful when updating the stored version of an existing CRD because the update does not take effect immediately.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/ClasspathEntryVisitor.java

                /**
                 * The entry is compressed with DEFLATE algorithm.
                 */
                DEFLATED,
                /**
                 * The entry is not compressed and stored as is.
                 */
                STORED,
                /**
                 * The entry is compressed with some other algorithm or the source doesn't support compression at all.
                 */
                UNDEFINED,
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 30 22:03:46 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

    import okhttp3.internal.commonToString
    
    /**
     * A Cache-Control header with cache directives from a server or client. These directives set policy
     * on what responses can be stored, and which requests can be satisfied by those stored responses.
     *
     * See [RFC 7234, 5.2](https://tools.ietf.org/html/rfc7234#section-5.2).
     */
    class CacheControl internal constructor(
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheRemoteStoreBuildOperationType.java

             * The cache key.
             */
            String getCacheKey();
    
            /**
             * The number of bytes of the stored cache artifact.
             */
            long getArchiveSize();
    
        }
    
        public interface Result {
    
            /**
             * Whether the entry has actually been stored.
             * <p>
             * The cache might not store some entries, e.g. when they are too large.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:42:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/sync/atomic/type.go

    package atomic
    
    import "unsafe"
    
    // A Bool is an atomic boolean value.
    // The zero value is false.
    type Bool struct {
    	_ noCopy
    	v uint32
    }
    
    // Load atomically loads and returns the value stored in x.
    func (x *Bool) Load() bool { return LoadUint32(&x.v) != 0 }
    
    // Store atomically stores val into x.
    func (x *Bool) Store(val bool) { StoreUint32(&x.v, b32(val)) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/impl/AbstractZipEntry.java

                }
            });
        }
    
        @Override
        public ZipCompressionMethod getCompressionMethod() {
            switch (entry.getMethod()) {
                case java.util.zip.ZipEntry.STORED:
                    return ZipCompressionMethod.STORED;
                case java.util.zip.ZipEntry.DEFLATED:
                    return ZipCompressionMethod.DEFLATED;
                default:
                    return ZipCompressionMethod.OTHER;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/InPlaceClasspathBuilder.java

                if (shouldCompress(compressionMethod)) {
                    entry.setMethod(ZipArchiveEntry.DEFLATED);
                } else {
                    entry.setMethod(ZipArchiveEntry.STORED);
                    // A stored ZipEntry requires setting size and CRC32 upfront.
                    // See https://stackoverflow.com/q/1206970.
                    entry.setSize(contents.length);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

            @Override
            String getStoreAction() {
                return "stored"
            }
        }
    
        static class StateStoreWithProblemsDetails implements HasBuildActions, HasProblems {
            @Override
            String getStoreAction() {
                return "stored with ${problemsString}"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ChangingProvider.java

     *
     * The given {@link Callable} is stored to the configuration cache, so it must only hold references
     * to configuration cache safe state.
     *
     * Task dependencies attached to the computed value are ignored by this provider.
     *
     * <h3>Configuration Cache Behavior</h3>
     * <b>Lazy</b>. The given {@link Callable} is stored to the cache so the value can be recomputed on each run.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 04 21:04:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top