Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for steve (0.03 sec)

  1. doc/go_spec.html

    		}
    	}
    }
    
    // The prime sieve: Daisy-chain filter processes together.
    func sieve() {
    	ch := make(chan int)  // Create a new channel.
    	go generate(ch)       // Start generate() as a subprocess.
    	for {
    		prime := <-ch
    		fmt.Print(prime, "\n")
    		ch1 := make(chan int)
    		go filter(ch, ch1, prime)
    		ch = ch1
    	}
    }
    
    func main() {
    	sieve()
    }
    </pre>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/sgml"/>
      <mime-type type="application/sgml-open-catalog"/>
      <mime-type type="application/shf+xml">
        <glob pattern="*.shf"/>
      </mime-type>
      <mime-type type="application/sieve"/>
      <mime-type type="application/simple-filter+xml"/>
      <mime-type type="application/simple-message-summary"/>
      <mime-type type="application/simplesymbolcontainer"/>
      <mime-type type="application/slate"/>
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top