Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 566 for persistent (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/registry/storage/csidriver/strategy_test.go

    			update:         driverWithCapacityDisabled,
    			wantCapacity:   &disabled,
    			wantGeneration: 1,
    		},
    		{
    			name:           "inline feature enabled, before: none, update: persistent",
    			old:            driverWithNothing,
    			update:         driverWithPersistent,
    			wantModes:      resultPersistent,
    			wantGeneration: 1,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. pkg/volume/util/device_util_linux.go

    				if !strings.HasPrefix(dirName, "connection") {
    					continue
    				}
    
    				connectionPath := sessionPath + "/" + dirName + "/iscsi_connection/" + dirName
    
    				// Read the current and persistent portal information for the connection.
    				addrPath := connectionPath + "/address"
    				addr, err := io.ReadFile(addrPath)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

    // Exactly one member can be set.
    message VolumeAttachmentSource {
      // persistentVolumeName represents the name of the persistent volume to attach.
      // +optional
      optional string persistentVolumeName = 1;
    
      // inlineVolumeSpec contains all the information necessary to attach
      // a persistent volume defined by a pod's inline VolumeSource. This field
      // is populated only for the CSIMigration feature. It contains
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompilerDaemonReuseIntegrationTest.groovy

            and:
            outputContains("JavaAgent configured!")
            result.groupedOutput.task(compileTaskPath('main')).assertOutputContains("Worker requested to be persistent, but the JVM argument '-javaagent:${file("javaagent/build/libs/javaagent.jar")}' may make the worker unreliable when reused across multiple builds. Worker will expire at the end of the build session.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/gradients/grad_test_helper.cc

                 AbstractContext* ctx,
                 absl::Span<AbstractTensorHandle* const> inputs,
                 absl::Span<AbstractTensorHandle*> outputs) -> Status {
        Tape tape(/*persistent=*/false);
        for (size_t i{}; i < inputs.size(); ++i) {
          tape.Watch(inputs[i]);
        }
        std::vector<AbstractTensorHandle*> temp_outputs(1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/types.go

    type VolumeAttachmentSource struct {
    	// persistentVolumeName represents the name of the persistent volume to attach.
    	// +optional
    	PersistentVolumeName *string `json:"persistentVolumeName,omitempty" protobuf:"bytes,1,opt,name=persistentVolumeName"`
    
    	// inlineVolumeSpec contains all the information necessary to attach
    	// a persistent volume defined by a pod's inline VolumeSource. This field
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top