Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 158 for mute (0.18 sec)

  1. src/main/resources/fess_indices/fess/cs/stopwords.txt

    a
    s
    k
    o
    i
    u
    v
    z
    dnes
    cz
    tímto
    budeš
    budem
    byli
    jseš
    můj
    svým
    ta
    tomto
    tohle
    tuto
    tyto
    jej
    zda
    proč
    máte
    tato
    kam
    tohoto
    kdo
    kteří
    mi
    nám
    tom
    tomuto
    mít
    nic
    proto
    kterou
    byla
    toho
    protože
    asi
    ho
    naši
    napište
    re
    což
    tím
    takže
    svých
    její
    svými
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 992 bytes
    - Viewed (0)
  2. src/main/webapp/css/admin/style.css

    .top10 {
    	margin-top: 1.0em;
    }
    
    .top15 {
    	margin-top: 1.5em;
    }
    
    .top20 {
    	margin-top: 2.0em;
    }
    
    .top25 {
    	margin-top: 2.5em;
    }
    
    .top30 {
    	margin-top: 3.0em;
    }
    
    .container .text-muted {
    	margin: 20px 0;
    }
    
    .notification {
    	text-align: center;
    }
    
    ul.has-error {
    	color: #dd4b39 !important;
    	list-style-type: none;
    	padding: 0;
    }
    
    .form-group .has-error + .form-control {
    CSS
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 1.1K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_function.cc

    }
    
    int TF_GraphNumFunctions(TF_Graph* g) {
      tensorflow::mutex_lock l(g->mu);
      return g->graph.flib_def().num_functions();
    }
    
    int TF_GraphGetFunctions(TF_Graph* g, TF_Function** funcs, int max_func,
                             TF_Status* status) {
      tensorflow::FunctionDefLibrary lib;
      {
        tensorflow::mutex_lock l(g->mu);
        lib = g->graph.flib_def().ToProto();
      }
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 13.6K bytes
    - Viewed (2)
  4. cmd/prepare-storage.go

    )
    
    var printEndpointError = func() func(Endpoint, error, bool) {
    	var mutex sync.Mutex
    	printOnce := make(map[Endpoint]map[string]int)
    
    	return func(endpoint Endpoint, err error, once bool) {
    		reqInfo := (&logger.ReqInfo{}).AppendTags("endpoint", endpoint.String())
    		ctx := logger.SetReqInfo(GlobalContext, reqInfo)
    		mutex.Lock()
    		defer mutex.Unlock()
    
    		m, ok := printOnce[endpoint]
    		if !ok {
    			m = make(map[string]int)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 15 08:25:46 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  5. doc/go_mem.html

        or a <i>synchronizing operation</i> such as an atomic data access,
    	a mutex operation, or a channel operation,</li>
    	<li>its location in the program,</li>
    	<li>the memory location or variable being accessed, and</li>
    	<li>the values read or written by the operation.</li>
    </ul>
    <p>
    Some memory operations are <i>read-like</i>, including read, atomic read, mutex lock, and channel receive.
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess/eu/stopwords.txt

    arabera
    asko
    baina
    bat
    batean
    batek
    bati
    batzuei
    batzuek
    batzuetan
    batzuk
    bera
    beraiek
    berau
    berauek
    bere
    berori
    beroriek
    beste
    bezala
    da
    dago
    dira
    ditu
    du
    dute
    edo
    egin
    ere
    eta
    eurak
    ez
    gainera
    gu
    gutxi
    guzti
    haiei
    haiek
    haietan
    hainbeste
    hala
    han
    handik
    hango
    hara
    hari
    hark
    hartan
    hau
    hauei
    hauek
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 709 bytes
    - Viewed (0)
  7. cmd/untar.go

    	prefixAll  string
    }
    
    // disconnectReader will ensure that no reads can take place on
    // the upstream reader after close has been called.
    type disconnectReader struct {
    	r  io.Reader
    	mu sync.Mutex
    }
    
    func (d *disconnectReader) Read(p []byte) (n int, err error) {
    	d.mu.Lock()
    	defer d.mu.Unlock()
    	if d.r != nil {
    		return d.r.Read(p)
    	}
    	return 0, errors.New("reader closed")
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 6K bytes
    - Viewed (0)
  8. internal/dsync/locked_rand.go

    package dsync
    
    import (
    	"math/rand"
    	"sync"
    )
    
    // lockedRandSource provides protected rand source, implements rand.Source interface.
    type lockedRandSource struct {
    	lk  sync.Mutex
    	src rand.Source
    }
    
    // Int63 returns a non-negative pseudo-random 63-bit integer as an int64.
    func (r *lockedRandSource) Int63() (n int64) {
    	r.lk.Lock()
    	n = r.src.Int63()
    	r.lk.Unlock()
    	return
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Oct 18 15:39:59 GMT 2021
    - 1.3K bytes
    - Viewed (0)
  9. internal/config/identity/plugin/config.go

    		return nil
    	}
    	plugin := AuthNPlugin{
    		args:        args,
    		client:      &http.Client{Transport: args.Transport},
    		shutdownCtx: shutdownCtx,
    		serviceMetrics: &metrics{
    			Mutex:            sync.Mutex{},
    			LastCheckSuccess: time.Unix(0, 0),
    			LastCheckFailure: time.Unix(0, 0),
    			lastFullMinute:   serviceRTTMinuteStats{},
    			currentMinute:    serviceRTTMinuteStats{},
    		},
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 13.3K bytes
    - Viewed (3)
  10. doc/go1.22.html

      <dd>
        <p><!-- https://go.dev/issue/61015 -->
          Mutex profiles now scale contention by the number of goroutines blocked on the mutex.
          This provides a more accurate representation of the degree to which a mutex is a bottleneck in
          a Go program.
          For instance, if 100 goroutines are blocked on a mutex for 10 milliseconds, a mutex profile will
          now record 1 second of delay instead of 10 milliseconds of delay.
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
Back to top