Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fallthrough (0.79 sec)

  1. doc/go1.17_spec.html

    </p>
    
    <h3 id="Fallthrough_statements">Fallthrough statements</h3>
    
    <p>
    A "fallthrough" statement transfers control to the first statement of the
    next case clause in an <a href="#Expression_switches">expression "switch" statement</a>.
    It may be used only as the final non-empty statement in such a clause.
    </p>
    
    <pre class="ebnf">
    FallthroughStmt = "fallthrough" .
    </pre>
    
    
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	if p == nil {
    		return
    	}
    	var ch chan<- ReplicationWorkerOperation
    	switch doi.OpType {
    	case replication.HealReplicationType, replication.ExistingObjectReplicationType:
    		fallthrough
    	default:
    		ch = p.getWorkerCh(doi.Bucket, doi.ObjectName, 0)
    	}
    
    	select {
    	case <-p.ctx.Done():
    	case ch <- doi:
    	default:
    		globalReplicationPool.queueMRFSave(doi.ToMRFEntry())
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
Back to top