Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 566 for persistent (0.2 sec)

  1. tensorflow/c/eager/gradients.h

                         TapeTensor>::GradientTape;
      // Returns whether the tape is persistent, i.e., whether the tape will hold
      // onto its internal state after a call to `ComputeGradient`.
      using GradientTape<AbstractTensorHandle, GradientFunction,
                         TapeTensor>::IsPersistent;
    
      // Adds this tensor to the list of watched tensors.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 26 10:27:05 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  2. pkg/apis/apps/v1/conversion.go

    	for k, v := range m {
    		ret[k] = v
    	}
    	return ret
    }
    
    // Convert_apps_StatefulSetSpec_To_v1_StatefulSetSpec augments auto-conversion to preserve < 1.17 behavior
    // setting apiVersion/kind in nested persistent volume claim objects.
    func Convert_v1_StatefulSetSpec_To_apps_StatefulSetSpec(in *appsv1.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
    - 6.2K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	defer ctrl.eventBroadcaster.Shutdown()
    
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting persistent volume controller")
    	defer logger.Info("Shutting down persistent volume controller")
    
    	if !cache.WaitForNamedCacheSync("persistent volume", ctx.Done(), ctrl.volumeListerSynced, ctrl.claimListerSynced, ctrl.classListerSynced, ctrl.podListerSynced, ctrl.NodeListerSynced) {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  4. helm/minio/README.md

    ```bash
    helm install --name my-release --set persistence.size=1Ti minio/minio
    ```
    
    The above command deploys MinIO server with a 1Ti backing persistent volume.
    
    Alternately, you can provide a YAML file that specifies parameter values while installing the chart. For example,
    
    ```bash
    helm install --name my-release -f values.yaml minio/minio
    ```
    
    ### Persistence
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/build.gradle.kts

        // Dependencies of the integ test fixtures
        integTestImplementation(project(":build-option"))
        integTestImplementation(project(":messaging"))
        integTestImplementation(project(":persistent-cache"))
        integTestImplementation(project(":native"))
        integTestImplementation(testFixtures(project(":problems-api")))
        integTestImplementation(libs.guava)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    			existingPods:     []*v1.Pod{runningPod, ephemeralVolumePod, csiEBSTwoVolPod},
    			maxVols:          3,
    			limitSource:      "node",
    			test:             "persistent doesn't when node volume limit <= pods ephemeral CSI volume + persistent volume, ephemeral disabled",
    			wantStatus:       framework.NewStatus(framework.Unschedulable, ErrReasonMaxVolumeCountExceeded),
    		},
    		{
    			newPod:           csiEBSOneVolPod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. pkg/registry/core/persistentvolumeclaim/storage/storage.go

    	"k8s.io/kubernetes/pkg/registry/core/persistentvolumeclaim"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // REST implements a RESTStorage for persistent volume claims.
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against persistent volume claims.
    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
    - 5.8K bytes
    - Viewed (0)
  8. tensorflow/c/eager/gradients_test.cc

      std::vector<AbstractTensorHandle*> outputs(1);
      GradientRegistry registry;
      s = RegisterGradients(&registry);
      ASSERT_EQ(errors::OK, s.code()) << s.message();
      auto tape = std::make_unique<Tape>(/*persistent=*/false);
      s = Execute(check_numerics_op.get(), ctx.get(), absl::MakeSpan(outputs),
                  &num_retvals, &forward_op, tape.get(), registry);
      ASSERT_EQ(errors::OK, s.code()) << s.message();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/RemappingScriptSource.java

     */
    package org.gradle.groovy.scripts.internal;
    
    import org.gradle.groovy.scripts.DelegatingScriptSource;
    import org.gradle.groovy.scripts.ScriptSource;
    
    /**
     * When stored into the persistent store, we want the script to be created with a predictable class name: we don't want the path of the script
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  10. helm/minio/values.yaml

    trustedCertsSecret: ""
    
    ## Enable persistence using Persistent Volume Claims
    ## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
    ##
    persistence:
      enabled: true
      annotations: {}
    
      ## A manually managed Persistent Volume and Claim
      ## Requires persistence.enabled: true
      ## If defined, PVC must be created manually before volume will be bound
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top