Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 123 for updateStats (0.39 sec)

  1. pilot/pkg/model/fake_store.go

    		if configs != nil {
    			if _, f := configs[cfg.Name]; f {
    				configs[cfg.Name] = cfg
    				return "", nil
    			}
    		}
    	}
    
    	return "", errors.New("config not found")
    }
    
    func (*FakeStore) UpdateStatus(config config.Config) (string, error) { return "", nil }
    
    func (*FakeStore) Patch(orig config.Config, patchFn config.PatchFunc) (string, error) {
    	return "", nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 18 06:50:06 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. pkg/kube/kclient/client.go

    }
    
    func (n *writeClient[T]) UpdateStatus(object T) (T, error) {
    	api, ok := kubeclient.GetWriteClient[T](n.client, object.GetNamespace()).(kubetypes.WriteStatusAPI[T])
    	if !ok {
    		return ptr.Empty[T](), fmt.Errorf("%T does not support UpdateStatus", object)
    	}
    	return api.UpdateStatus(context.Background(), object, metav1.UpdateOptions{})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/cc_op_gen.cc

      strings::StrAppend(&body, "  ", scope_str, ".UpdateBuilder(&builder);\n");
      strings::StrAppend(&body, "  ", scope_str, ".UpdateStatus(builder.Finalize(",
                         scope_str, ".graph(), &ret));\n");
      strings::StrAppend(&body, "  ", return_on_error, "\n");
      strings::StrAppend(&body, "  ", scope_str, ".UpdateStatus(", scope_str,
                         ".DoShapeInference(ret));\n");
    
      GetOutput(op_info, &body);
      return body;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/JobLogService.java

        public void deleteByJobStatus(final List<String> jobStatusList) {
            jobLogBhv.queryDelete(cb -> {
                cb.query().setJobStatus_InScope(jobStatusList);
            });
        }
    
        public void updateStatus() {
            final long expiry = ComponentUtil.getSystemHelper().getCurrentTimeAsLong() - expiredJobInterval;
            final List<JobLog> list = jobLogBhv.selectList(cb -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control.go

    	}
    	if shouldExit, err := runForAll(condemned, processCondemnedFn, monotonic); shouldExit || err != nil {
    		updateStatus(&status, set.Spec.MinReadySeconds, currentRevision, updateRevision, replicas, condemned)
    		return &status, err
    	}
    
    	updateStatus(&status, set.Spec.MinReadySeconds, currentRevision, updateRevision, replicas, condemned)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/establish/establishing_controller.go

    		Message: "the initial names have been accepted",
    	}
    	apiextensionshelpers.SetCRDCondition(crd, establishedCondition)
    
    	// Update server with new CRD condition.
    	_, err = ec.crdClient.CustomResourceDefinitions().UpdateStatus(context.TODO(), crd, metav1.UpdateOptions{})
    	if apierrors.IsNotFound(err) || apierrors.IsConflict(err) {
    		// deleted or changed in the meantime, we'll get called again
    		return nil
    	}
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. pilot/pkg/status/manager.go

    	writeFunc := func(m *config.Config, istatus any) {
    		scope.Debugf("writing status for resource %s/%s", m.Namespace, m.Name)
    		status := istatus.(GenerationProvider)
    		m.Status = status.Unwrap()
    		_, err := store.UpdateStatus(*m)
    		if err != nil {
    			// TODO: need better error handling
    			scope.Errorf("Encountered unexpected error updating status for %v, will try again later: %s", m, err)
    			return
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/storage/admin_storage_tag_edit.jsp

    										<em class="fa fa-arrow-circle-left">
    										<la:message key="labels.crud_button_back" />
    									</la:link>
    									<c:if test="${editable}">
    										<button type="submit" class="btn btn-success" name="updateTags"
    											value="<la:message key="labels.crud_button_update" />"
    										>
    											<em class="fa fa-pencil-alt">
    											<la:message key="labels.crud_button_update" />
    										</button>
    									</c:if>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 26 01:48:41 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  9. internal/grid/connection.go

    	}
    	err = conn.SetWriteDeadline(time.Now().Add(connWriteTimeout))
    	if err != nil {
    		return err
    	}
    	return wsutil.WriteMessage(conn, c.side, ws.OpBinary, dst)
    }
    
    func (c *Connection) connect() {
    	c.updateState(StateConnecting)
    	rng := rand.New(rand.NewSource(time.Now().UnixNano()))
    	// Runs until the server is shut down.
    	for {
    		if c.State() == StateShutdown {
    			return
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. tensorflow/cc/training/queue_runner.h

      // The Run function for each thread.
      void Run(Session* sess, const string& enqueue_op);
    
      // Updates the internal status; it only keeps OK or the first unexpected error
      // status.
      void UpdateStatus(const Status& status);
    
      bool IsQueueClosed(Status status) const {
        return queue_closed_exception_types_.count(
                   static_cast<int>(status.code())) > 0;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 18:27:00 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top