Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 435 for persistent (0.22 sec)

  1. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/README.adoc

    Using _dependency substitution_, the module dependencies on the util libraries are replaced by project dependencies on `my-utils`.
    
    == Converting `my-app` to a composite build
    
    It's possible to make the above arrangement persistent, by making `my-app` a composite build that includes `my-utils`.
    
    ```
    cd my-app
    echo "includeBuild '../my-utils'" >> settings.gradle
    gradle run
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_plugin.go

    	}
    	csiDriver, err := p.csiDriverLister.Get(driver)
    	return csiDriver, err
    }
    
    // getVolumeLifecycleMode returns the mode for the specified spec: {persistent|ephemeral}.
    // 1) If mode cannot be determined, it will default to "persistent".
    // 2) If Mode cannot be resolved to either {persistent | ephemeral}, an error is returned
    // See https://github.com/kubernetes/enhancements/blob/master/keps/sig-storage/596-csi-inline-volumes/README.md
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/daemon/ScalaCompilerDaemonReuseIntegrationTest.groovy

        }
    
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        @UnsupportedWithConfigurationCache(because = "parallel by default")
        def "ignores known changing environment variable when persistent compiler daemons are enabled"() {
            withSingleProjectSources()
            withPersistentScalaCompilerDaemons()
    
            when:
            executer.withEnvironmentVars(['JAVA_MAIN_CLASS_1234': '1234'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/DefaultMetadataFileSourceCodec.java

    import org.gradle.internal.serialize.Encoder;
    
    import java.io.File;
    import java.io.IOException;
    
    /**
     * A codec for {@link MetadataFileSource}. This codec is particular because of the persistent cache
     * which must be relocatable. As a consequence, it would be an error to serialize the file path because
     * it would contain an absolute path to the descriptor file.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/build.gradle.kts

        implementation(project(":functional"))
        implementation(project(":messaging"))
        implementation(project(":logging"))
        implementation(project(":process-services"))
        implementation(project(":persistent-cache"))
        implementation(project(":core-api"))
        implementation(project(":model-core"))
        implementation(project(":core"))
        implementation(project(":file-collections"))
        implementation(project(":file-temp"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes
      // +optional
      optional PersistentVolumeSpec spec = 2;
    
      // status represents the current information/status for the persistent volume.
      // Populated by the system.
      // Read-only.
      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. pkg/controller/volume/expand/expand_controller.go

    	pv, err := expc.getPersistentVolume(ctx, pvc)
    	if err != nil {
    		logger.V(5).Info("Error getting Persistent Volume for PVC from informer", "pvcKey", key, "pvcUID", pvc.UID, "err", err)
    		return err
    	}
    
    	if pv.Spec.ClaimRef == nil || pvc.Namespace != pv.Spec.ClaimRef.Namespace || pvc.UID != pv.Spec.ClaimRef.UID {
    		err := fmt.Errorf("persistent Volume is not bound to PVC being updated : %s", key)
    		logger.V(4).Info("", "err", err)
    		return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/build.gradle.kts

        integTestImplementation(libs.littleproxy)
        integTestImplementation(libs.jetty)
    
        crossVersionTestImplementation(project(":logging"))
        crossVersionTestImplementation(project(":persistent-cache"))
        crossVersionTestImplementation(project(":launcher"))
    
        integTestNormalizedDistribution(project(":distributions-full"))
        crossVersionTestNormalizedDistribution(project(":distributions-full"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/functional/src/main/java/org/gradle/internal/collect/PersistentList.java

    import javax.annotation.CheckReturnValue;
    import javax.annotation.Nullable;
    import java.util.Collections;
    import java.util.Iterator;
    import java.util.Objects;
    import java.util.function.Consumer;
    
    /**
     * A simple persistent List implementation.
     * <p>
     * The main use-case is to create new lists with added elements creating the minimal amount of garbage.
     * Uses Cons/Nil as building blocks.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_executable_persistor.h

          .IgnoreError();
      if (!has_atomic_move) {
        LOG_EVERY_POW_2(WARNING)
            << "Filesystem for XLA persistent cache at "
            << persistent_cache_directory_
            << " does not support atomic moves.  Therefore the persistent cache is "
               "racy if you have multiple XLA compilations occurring "
               "simultaneously!  You have been warned. :)";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top