Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 238 for states_ (0.12 sec)

  1. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

        return remove(key, 0);
      }
    
      /**
       * Removes all mappings from this map whose values are zero.
       *
       * <p>This method is not atomic: the map may be visible in intermediate states, where some of the
       * zero values have been removed and others have not.
       */
      public void removeAllZeros() {
        map.values().removeIf(x -> x == 0);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    	}
    	gvi.podVolumes[rcv.podName] = rcv
    }
    
    func (rc *reconciler) cleanupMounts(volume podVolume) {
    	klog.V(2).InfoS("Reconciler sync states: could not find volume information in desired state, clean up the mount points", "podName", volume.podName, "volumeSpecName", volume.volumeSpecName)
    	mountedVolume := operationexecutor.MountedVolume{
    		PodName: volume.podName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // Default to the empty LabelSelector, which matches everything.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector objectSelector = 11;
    
      // SideEffects states whether this webhook has side effects.
      // Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

            state.notInState(State.Finished, modelController::getConfiguredModel);
        }
    
        @Override
        public <T> T withProjectsConfigured(Function<? super GradleInternal, T> action) {
            return state.notInState(State.Finished, () -> action.apply(modelController.getConfiguredModel()));
        }
    
        @Override
        public void resetModel() {
            state.restart(State.ReadyToReset, State.Configure, () -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    )
    
    // Reconciler runs a periodic loop to reconcile the desired state of the world
    // with the actual state of the world by triggering attach, detach, mount, and
    // unmount operations.
    // Note: This is distinct from the Reconciler implemented by the attach/detach
    // controller. This reconciles state for the kubelet volume manager. That
    // reconciles state for the attach/detach controller.
    type Reconciler interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. cmd/notification.go

    			if client == nil {
    				return errPeerNotReachable
    			}
    			st, err := client.BackgroundHealStatus(ctx)
    			if err != nil {
    				return err
    			}
    			states[idx] = st
    			return nil
    		}, idx, *client.host)
    	}
    
    	return states, ng.Wait()
    }
    
    // StartProfiling - start profiling on remote peers, by initiating a remote RPC.
    func (sys *NotificationSys) StartProfiling(profiler string) []NotificationPeerErr {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  7. src/runtime/netpoll.go

    // goroutines respectively. The semaphore can be in the following states:
    //
    //	pdReady - io readiness notification is pending;
    //	          a goroutine consumes the notification by changing the state to pdNil.
    //	pdWait - a goroutine prepares to park on the semaphore, but not yet parked;
    //	         the goroutine commits to park by changing the state to G pointer,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_experimental.cc

      if (h == nullptr) {
        status->status = tensorflow::errors::InvalidArgument("Invalid handle");
        return -1;
      }
      return tensorflow::unwrap(h)->DeviceId(&status->status);
    }
    
    TF_CAPI_EXPORT extern void TFE_TensorHandleGetStatus(TFE_TensorHandle* h,
                                                         TF_Status* status) {
      status->status = tensorflow::unwrap(h)->TensorHandleStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/state/state_checkpoint_test.go

    limitations under the License.
    */
    
    package state
    
    import (
    	"os"
    	"path"
    	"strings"
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    
    	resourcev1alpha2 "k8s.io/api/resource/v1alpha2"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/kubernetes/pkg/kubelet/checkpointmanager"
    	testutil "k8s.io/kubernetes/pkg/kubelet/cm/cpumanager/state/testing"
    )
    
    const testingCheckpoint = "dramanager_checkpoint_test"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/path-params.md

    !!! check
        So, with the same Python type declaration, **FastAPI** gives you data validation.
    
        Notice that the error also clearly states exactly the point where the validation didn't pass.
    
        This is incredibly helpful while developing and debugging code that interacts with your API.
    
    ## Documentation
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top