Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for updateIPs (0.2 sec)

  1. cmd/site-replication.go

    		if change.UserReq == nil {
    			return errSRInvalidRequest(errInvalidArgument)
    		}
    		userReq := *change.UserReq
    		if userReq.Status != "" && userReq.SecretKey == "" {
    			// Status is set without secretKey updates means we are
    			// only changing the account status.
    			_, err = globalIAMSys.SetUserStatus(ctx, change.AccessKey, userReq.Status)
    		} else {
    			// We don't allow internal user creation with LDAP enabled for now
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

        volatile int count;
    
        /** The weight of the live elements in this segment's region. */
        @GuardedBy("this")
        long totalWeight;
    
        /**
         * Number of updates that alter the size of the table. This is used during bulk-read methods to
         * make sure they see a consistent snapshot: If modCounts change during a traversal of segments
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

      status->status = graph->graph.UpdateEdge(&new_src.oper->node, new_src.index,
                                               &dst.oper->node, dst.index);
    
      if (TF_GetCode(status) == TF_OK) {
        // This modification only updates the destination node for
        // the purposes of running this graph in a session. Thus, we don't
        // record the source node as being modified.
        RecordMutation(graph, *dst.oper, "updating input tensor");
      }
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

        volatile int count;
    
        /** The weight of the live elements in this segment's region. */
        @GuardedBy("this")
        long totalWeight;
    
        /**
         * Number of updates that alter the size of the table. This is used during bulk-read methods to
         * make sure they see a consistent snapshot: If modCounts change during a traversal of segments
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    	mgmtClientToken = "clientToken"
    	mgmtForceStart  = "forceStart"
    	mgmtForceStop   = "forceStop"
    )
    
    // ServerUpdateV2Handler - POST /minio/admin/v3/update?updateURL={updateURL}&type=2
    // ----------
    // updates all minio servers and restarts them gracefully.
    func (a adminAPIHandlers) ServerUpdateV2Handler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // top-level "crash/bang".
    //
    // Code in vendor directories is not subject to import path
    // checking (see 'go help importpath').
    //
    // When 'go get' checks out or updates a git repository, it now also
    // updates submodules.
    //
    // Vendor directories do not affect the placement of new repositories
    // being checked out for the first time by 'go get': those are always
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    		wantSucceededPodsMetric int
    		wantFailedPodsMetric    int
    
    		// features
    		enableJobBackoffLimitPerIndex bool
    		enableJobSuccessPolicy        bool
    	}{
    		"no updates": {},
    		"new active": {
    			job: batch.Job{
    				Status: batch.JobStatus{
    					Active: 1,
    				},
    			},
    			needsFlush: true,
    			wantStatusUpdates: []batch.JobStatus{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        SameOperandsAndResultsScale,
        TFL_OperandHasAtleastRank<0, 1>,
        TFL_OperandHasAtleastRank<1, 1>,
        PredOpTrait<"updates and output must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 1>>
      ]> {
      let summary = "Scatter_nd operator";
    
      let description = [{
        Scatter `updates` into a new tensor according to `indices`
      }];
    
      let arguments = (ins
        TFL_TensorOf<[I32]>:$indices,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    // of this call is the minimum latency for static pods to be restarted if they
    // are updated with a fixed UID (most should use a dynamic UID), and no config
    // updates are delivered to the pod workers while this method is running.
    func (kl *Kubelet) HandlePodCleanups(ctx context.Context) error {
    	// The kubelet lacks checkpointing, so we need to introspect the set of pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    {
      "definitions": {
        "io.k8s.api.apps.v1.Deployment": {
          "description": "Deployment enables declarative updates for Pods and ReplicaSets.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top