Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for has_ended (0.36 sec)

  1. cmd/admin-heal-ops.go

    	defer periodicTimer.Stop()
    
    	for {
    		select {
    		case <-periodicTimer.C:
    			now := UTCNow()
    			ahs.Lock()
    			for path, h := range ahs.healSeqMap {
    				if h.hasEnded() && h.endTime.Add(keepHealSeqStateDuration).Before(now) {
    					delete(ahs.healSeqMap, path)
    				}
    			}
    			ahs.Unlock()
    
    			periodicTimer.Reset(time.Minute * 5)
    		case <-ctx.Done():
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. pkg/apis/certificates/validation/validation.go

    			switch c.Type {
    			case certificates.CertificateApproved:
    				hasApproved = true
    				if hasDenied {
    					allErrs = append(allErrs, field.Invalid(fldPath.Index(i).Child("type"), c.Type, "Approved and Denied conditions are mutually exclusive"))
    				}
    			case certificates.CertificateDenied:
    				hasDenied = true
    				if hasApproved {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/fingerprinting_utils.cc

            if (a.at(i).has_field() && a.at(i).field() == b.at(i).field()) {
              matches += 1;
            }
            break;
          case ::tensorflow::proto_splitter::FieldIndex::KindCase::kIndex:
            if (a.at(i).has_index() && a.at(i).index() == b.at(i).index()) {
              matches += 1;
            }
            break;
          case ::tensorflow::proto_splitter::FieldIndex::KindCase::kMapKey:
            if (a.at(i).has_map_key()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    			if !v.hasEnded() {
    				v.stop()
    			}
    		}
    		globalAllHealState.Unlock()
    	}
    
    	// Init background heal state
    	if globalBackgroundHealState == nil {
    		globalBackgroundHealState = newHealState(GlobalContext, false)
    	} else {
    		globalBackgroundHealState.Lock()
    		for _, v := range globalBackgroundHealState.healSeqMap {
    			if !v.hasEnded() {
    				v.stop()
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/static/trace_viewer_full.html

    process.name=fields.imageFileName;return true;},decodeEnd(header,decoder){const fields=this.decodeFields(header,decoder);const process=this.model.getOrCreateProcess(fields.processId);process.has_ended=true;return true;},decodeDCStart(header,decoder){const fields=this.decodeFields(header,decoder);const process=this.mo...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
  6. cmd/admin-handlers.go

    		}
    	}
    
    	healPath := pathJoin(hip.bucket, hip.objPrefix)
    	if hip.clientToken == "" && !hip.forceStart && !hip.forceStop {
    		nh, exists := globalAllHealState.getHealSequence(healPath)
    		if exists && !nh.hasEnded() && len(nh.currentStatus.Items) > 0 {
    			clientToken := nh.clientToken
    			if globalIsDistErasure {
    				clientToken = fmt.Sprintf("%s:%d", nh.clientToken, GetProxyEndpointLocalIndex(globalProxyEndpoints))
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. src/testdata/Isaac.Newton-Opticks.txt

    Ranges of Colours, _kl_, _mn_, _op_, _qr_, &c. which were parallel to
    one another, and contiguous, and without any Mixture of white. And these
    Ranges of Colours, if the Comb was moved continually up and down with a
    reciprocal Motion, ascended and descended in the Paper, and when the
    Motion of the Comb was so quick, that the Colours could not be
    distinguished from one another, the whole Paper by their Confusion and
    Mixture in the Sensorium appeared white.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  8. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    painted so many Ranges of Colours, _kl_, _mn_, _op_, _qr_, &c. which were parallel to one another, and contiguous, and without any Mixture of white. And these Ranges of Colours, if the Comb was moved continually up and down with a reciprocal Motion, ascended and descended in the Paper, and when the Motion of the Comb was so quick, that the Colours could not be distinguished from one another, the whole Paper by their Confusion and Mixture in the Sensorium appeared white. [Illustration: FIG. 9.] Let the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
Back to top