Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,111 for ONCE (0.04 sec)

  1. cmd/kubeadm/app/util/config/common_test.go

    				t.Errorf("expected error: %v, got %v, error: %v", test.expectedError, (err != nil), err)
    			}
    		})
    	}
    }
    
    // NOTE: do not delete this test once an older API is removed and there is only one API left.
    // Update the inline "gv" and "gvExperimental" variables, to have the GroupVersion String of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device.cc

      return absl::OkStatus();
    }
    
    // Warn about XLA_CPU/XLA_GPU exactly once.
    static void ShowXlaDeviceDeprecationWarning(
        absl::string_view compilation_device_name) {
      static absl::once_flag once;
      if (absl::StrContains(compilation_device_name, "CPU") ||
          absl::StrContains(compilation_device_name, "GPU")) {
        absl::call_once(once, [] {
          LOG(INFO) << "XLA_GPU and XLA_CPU devices are deprecated and will be "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    			t.Fatal(err)
    		}
    
    		// any new pod observations should not impact the metrics, as the pod should be recorder only once
    		tracker.ObservedPodOnWatch(podStarted, frozenTime.Add(time.Second*150))
    		tracker.ObservedPodOnWatch(podStarted, frozenTime.Add(time.Second*200))
    		tracker.ObservedPodOnWatch(podStarted, frozenTime.Add(time.Second*250))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/cache2/Relay.kt

       *  * *m* bytes: metadata
       *
       * This is closed and assigned to null when the last source is closed and no further sources
       * are permitted.
       */
      var file: RandomAccessFile?,
      /**
       * Null once the file has a complete copy of the upstream bytes. Only the [upstreamReader] thread
       * may access this source.
       */
      var upstream: Source?,
      /** The number of bytes consumed from [upstream]. Guarded by this. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. pkg/kubemark/controller.go

    	rcSynced  cache.InformerSynced
    	podLister listersv1.PodLister
    	podSynced cache.InformerSynced
    	client    kubeclient.Interface
    }
    
    // kubemarkCluster is used to delete nodes from kubemark cluster once their
    // respective replication controllers have been deleted and the nodes have
    // become unready. This is to cover for the fact that there is no proper cloud
    // provider for kubemark that would care for deleting the nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 23:02:17 UTC 2020
    - 14.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    	"status":             "status of the condition, one of True, False, Unknown. Approved, Denied, and Failed conditions may not be \"False\" or \"Unknown\".",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. pkg/apis/batch/types.go

    	// as successful before `.status.succeeded >= .spec.completions`. Once any of the rules are met,
    	// the "SucceededCriteriaMet" condition is added, and the lingering pods are removed.
    	// The terminal state for such a Job has the "Complete" condition.
    	// Additionally, these rules are evaluated in order; Once the Job meets one of the rules,
    	// other rules are ignored. At most 20 elements are allowed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apps/v1/generated.proto

    option go_package = "k8s.io/api/apps/v1";
    
    // ControllerRevision implements an immutable snapshot of state data. Clients
    // are responsible for serializing and deserializing the objects that contain
    // their internal state.
    // Once a ControllerRevision has been successfully created, it can not be updated.
    // The API Server will fail validation of all requests that attempt to mutate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. pkg/apis/apps/types.go

    	// The alternative policy is `Parallel` which will create pods in parallel
    	// to match the desired scale without waiting, and on scale down will delete
    	// all pods at once.
    	// +optional
    	PodManagementPolicy PodManagementPolicyType
    
    	// updateStrategy indicates the StatefulSetUpdateStrategy that will be
    	// employed to update Pods in the StatefulSet when a revision is made to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/generated.proto

    option go_package = "k8s.io/api/apps/v1";
    
    // ControllerRevision implements an immutable snapshot of state data. Clients
    // are responsible for serializing and deserializing the objects that contain
    // their internal state.
    // Once a ControllerRevision has been successfully created, it can not be updated.
    // The API Server will fail validation of all requests that attempt to mutate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top