Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for RI (0.14 sec)

  1. cmd/batch-handlers.go

    		JobType:          ri.JobType,
    		RetryAttempts:    ri.RetryAttempts,
    		Complete:         ri.Complete,
    		Failed:           ri.Failed,
    		StartTime:        ri.StartTime,
    		LastUpdate:       ri.LastUpdate,
    		Bucket:           ri.Bucket,
    		Object:           ri.Object,
    		Objects:          ri.Objects,
    		ObjectsFailed:    ri.ObjectsFailed,
    		BytesTransferred: ri.BytesTransferred,
    		BytesFailed:      ri.BytesFailed,
    	}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Apr 08 14:11:38 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java

            flags = readInt2( buffer, bufferIndex );
            bufferIndex += 4;
    
            referrals = new Referral[numReferrals];
            for (int ri = 0; ri < numReferrals; ri++) {
                referrals[ri] = new Referral();
                bufferIndex += referrals[ri].readWireFormat( buffer, bufferIndex, len );
            }
    
            return bufferIndex - start;
        }
        public String toString() {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5K bytes
    - Viewed (0)
  3. cmd/bucket-replication-stats.go

    		}
    	case replication.Failed:
    		if ri.OpType.IsDataReplication() && prevStatus == replication.Pending {
    			rs.set(ri.Arn, ri.Size, ri.Duration, status, ri.OpType, ri.endpoint, ri.secure, ri.Err)
    		}
    	case replication.Replica:
    		if ri.OpType == replication.ObjectReplicationType {
    			rs.set(ri.Arn, ri.Size, 0, status, ri.OpType, "", false, ri.Err)
    		}
    	}
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/NtlmContext.java

        }
    
        private String getNtlmsspListItem(byte[] type2token, int id0)
        {
            int ri = 58;
    
            for ( ;; ) {
                int id = Encdec.dec_uint16le(type2token, ri);
                int len = Encdec.dec_uint16le(type2token, ri + 2);
                ri += 4;
                if (id == 0 || (ri + len) > type2token.length) {
                    break;
                } else if (id == id0) {
                    try {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/dfs/DfsReferralResponseBuffer.java

            bufferIndex += 4;
    
            this.referrals = new Referral[this.numReferrals];
            for ( int ri = 0; ri < this.numReferrals; ri++ ) {
                this.referrals[ ri ] = new Referral();
                bufferIndex += this.referrals[ ri ].decode(buffer, bufferIndex, len);
            }
    
            return bufferIndex - start;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.6K bytes
    - Viewed (0)
  6. cmd/batch-rotate.go

    				time.Sleep(wait)
    			}
    		}()
    	}
    	wk.Wait()
    
    	ri.Complete = ri.ObjectsFailed == 0
    	ri.Failed = ri.ObjectsFailed > 0
    	globalBatchJobsMetrics.save(job.ID, ri)
    	// persist in-memory state to disk.
    	batchLogIf(ctx, ri.updateAfter(ctx, api, 0, job))
    
    	if err := r.Notify(ctx, ri); err != nil {
    		batchLogIf(ctx, fmt.Errorf("unable to notify %v", err))
    	}
    
    	cancel()
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  7. cmd/batch-expire.go

    	}
    	xioutil.SafeClose(expireCh)
    
    	<-expireDoneCh // waits for the expire goroutine to complete
    	wk.Wait()      // waits for all expire workers to retire
    
    	ri.Complete = ri.ObjectsFailed == 0
    	ri.Failed = ri.ObjectsFailed > 0
    	globalBatchJobsMetrics.save(job.ID, ri)
    
    	// Close the saverQuitCh - this also triggers saving in-memory state
    	// immediately one last time before we exit this method.
    	xioutil.SafeClose(saverQuitCh)
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 21K bytes
    - Viewed (1)
  8. cmd/bucket-replication-utils.go

    }
    
    // ToMRFEntry returns the relevant info needed by MRF
    func (ri ReplicateObjectInfo) ToMRFEntry() MRFReplicateEntry {
    	return MRFReplicateEntry{
    		Bucket:     ri.Bucket,
    		Object:     ri.Name,
    		versionID:  ri.VersionID,
    		sz:         ri.Size,
    		RetryCount: int(ri.RetryCount),
    	}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 26.2K bytes
    - Viewed (0)
  9. cmd/bucket-replication.go

    		}
    		return
    	}
    
    	var ch, healCh chan<- ReplicationWorkerOperation
    	switch ri.OpType {
    	case replication.HealReplicationType, replication.ExistingObjectReplicationType:
    		ch = p.mrfReplicaCh
    		healCh = p.getWorkerCh(ri.Name, ri.Bucket, ri.Size)
    	default:
    		ch = p.getWorkerCh(ri.Name, ri.Bucket, ri.Size)
    	}
    	if ch == nil && healCh == nil {
    		return
    	}
    
    	select {
    	case <-p.ctx.Done():
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 20 09:05:54 GMT 2024
    - 112K bytes
    - Viewed (1)
  10. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodeIterator.java

    import java.util.ArrayList;
    import java.util.List;
    
    import org.apache.commons.jxpath.ri.Compiler;
    import org.apache.commons.jxpath.ri.compiler.NodeNameTest;
    import org.apache.commons.jxpath.ri.compiler.NodeTest;
    import org.apache.commons.jxpath.ri.compiler.NodeTypeTest;
    import org.apache.commons.jxpath.ri.model.NodeIterator;
    import org.apache.commons.jxpath.ri.model.NodePointer;
    import org.apache.maven.api.xml.XmlNode;
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.5K bytes
    - Viewed (0)
Back to top