Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 150 for persistent (0.4 sec)

  1. platforms/core-execution/build-cache-local/build.gradle.kts

        api(projects.stdlibJavaExtensions)
        api(project(":build-cache"))
        api(project(":build-cache-spi"))
        api(project(":files"))
        api(project(":functional"))
        api(project(":hashing"))
        api(project(":persistent-cache"))
    
        implementation(libs.commonsIo)
        implementation(libs.guava)
    
        testImplementation(project(":model-core"))
        testImplementation(project(":file-collections"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 849 bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Protocol.kt

     */
    enum class Protocol(private val protocol: String) {
      /**
       * An obsolete plaintext framing that does not use persistent sockets by default.
       */
      HTTP_1_0("http/1.0"),
    
      /**
       * A plaintext framing that includes persistent connections.
       *
       * This version of OkHttp implements [RFC 7230][rfc_7230], and tracks revisions to that spec.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. pkg/apis/apps/v1beta1/conversion.go

    	} else {
    		out.Selector = ""
    	}
    	return nil
    }
    
    // Convert_v1beta1_StatefulSetSpec_To_apps_StatefulSetSpec augments auto-conversion to preserve < 1.17 behavior
    // setting apiVersion/kind in nested persistent volume claim objects.
    func Convert_v1beta1_StatefulSetSpec_To_apps_StatefulSetSpec(in *appsv1beta1.StatefulSetSpec, out *apps.StatefulSetSpec, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. pkg/registry/core/persistentvolume/storage/storage.go

    	"k8s.io/kubernetes/pkg/registry/core/persistentvolume"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // REST implements a RESTStorage for persistent volumes.
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against persistent volumes.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, *StatusREST, error) {
    	store := &genericregistry.Store{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/build.gradle.kts

        implementation(project(":functional"))
    
        implementation(libs.guava)
    
        testImplementation(project(":process-services"))
        testImplementation(project(":resources"))
        testImplementation(project(":persistent-cache"))
        testImplementation(project(":build-option"))
        testImplementation(project(":enterprise-operations"))
        testImplementation(testFixtures(project(":build-operations")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/build.gradle.kts

        implementation(libs.slf4jApi)
    
        testImplementation(project(":process-services"))
        testImplementation(project(":resources"))
        testImplementation(project(":native"))
        testImplementation(project(":persistent-cache"))
        testImplementation(libs.ant)
        testImplementation(libs.commonsIo)
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":core-api")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. testing/soak/build.gradle.kts

        integTestImplementation(project(":jvm-services"))
        integTestImplementation(project(":launcher"))
        integTestImplementation(project(":logging"))
        integTestImplementation(project(":persistent-cache"))
        integTestImplementation(libs.commonsCompress)
        integTestImplementation(libs.slf4jApi)
        integTestImplementation(libs.jetty)
        integTestImplementation(libs.assertj) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionHistoryCacheAccess.java

     * limitations under the License.
     */
    package org.gradle.internal.execution.history;
    
    import org.gradle.cache.PersistentCache;
    
    import java.util.function.Supplier;
    
    /**
     * Provides access to the persistent execution history store.
     */
    public interface ExecutionHistoryCacheAccess extends Supplier<PersistentCache> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 896 bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DaemonForkOptionsBuilder.java

                Optional<String> unreliableArgument = findUnreliableArgument(jvmArgs);
                if (unreliableArgument.isPresent()) {
                    LOGGER.info("Worker requested to be persistent, but the JVM argument '{}' may make the worker unreliable when reused across multiple builds. Worker will expire at the end of the build session.", unreliableArgument.get());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/workspace/MutableWorkspaceProvider.java

    import org.gradle.internal.execution.history.ExecutionHistoryStore;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    public interface MutableWorkspaceProvider {
        /**
         * Provides a persistent workspace and execution history store for executing the given action in.
         */
        <T> T withWorkspace(String path, WorkspaceAction<T> action);
    
        @FunctionalInterface
        interface WorkspaceAction<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top