Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 176 for Ds (0.08 sec)

  1. src/main/java/org/codelibs/fess/ds/DataStore.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.ds;
    
    import org.codelibs.fess.ds.callback.IndexUpdateCallback;
    import org.codelibs.fess.entity.DataStoreParams;
    import org.codelibs.fess.es.config.exentity.DataConfig;
    
    public interface DataStore {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 962 bytes
    - Viewed (0)
  2. internal/rest/rpc-stats.go

    			}
    		},
    	}
    
    	return req.WithContext(httptrace.WithClientTrace(req.Context(), trace)), func() {
    		if ds := atomic.LoadInt64(&dialStart); ds > 0 {
    			if de := atomic.LoadInt64(&dialEnd); de == 0 {
    				atomic.AddUint64(&globalStats.tcpDialErrs, 1)
    			} else if de >= ds {
    				atomic.AddUint64(&globalStats.tcpDialCount, 1)
    				atomic.AddUint64(&globalStats.tcpDialTotalDur, uint64(dialEnd-dialStart))
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 16:27:58 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. pkg/registry/core/persistentvolumeclaim/storage/storage_test.go

    		dataSource    bool
    		dataSourceRef bool
    		want          bool
    		wantRef       bool
    	}{
    		"any disabled with empty ds": {
    			anyEnabled: false,
    		},
    		"any disabled with volume ds": {
    			dataSource: true,
    			want:       true,
    		},
    		"any disabled with volume ds ref": {
    			dataSourceRef: true,
    			wantRef:       true,
    		},
    		"any disabled with both data sources": {
    			dataSource:    true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. internal/dsync/drwmutex.go

    					}
    					return
    				}
    
    				refreshTimer.Reset(dm.refreshInterval)
    			}
    		}
    	}()
    }
    
    func forceUnlock(ctx context.Context, ds *Dsync, id string) {
    	ctx, cancel := context.WithTimeout(ctx, ds.Timeouts.ForceUnlockCall)
    	defer cancel()
    
    	restClnts, _ := ds.GetLockers()
    
    	args := LockArgs{
    		UID: id,
    	}
    
    	var wg sync.WaitGroup
    	for index, c := range restClnts {
    		wg.Add(1)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    }
    
    // Close ensures driver.Stmt is only closed once and always returns the same
    // result.
    func (ds *driverStmt) Close() error {
    	ds.Lock()
    	defer ds.Unlock()
    	if ds.closed {
    		return ds.closeErr
    	}
    	ds.closed = true
    	ds.closeErr = ds.si.Close()
    	return ds.closeErr
    }
    
    // depSet is a finalCloser's outstanding dependencies
    type depSet map[any]bool // set of true bools
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. pkg/registry/apps/daemonset/storage/storage_test.go

    	storage, _, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store)
    	ds := newValidDaemonSet()
    	ds.ObjectMeta = metav1.ObjectMeta{}
    	test.TestCreate(
    		// valid
    		ds,
    		// invalid (invalid selector)
    		&apps.DaemonSet{
    			Spec: apps.DaemonSetSpec{
    				Selector: &metav1.LabelSelector{MatchLabels: map[string]string{}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  7. test/fixedbugs/issue24799.go

    // run
    
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Loads of 8 byte go.strings cannot use DS relocation
    // in case the alignment is not a multiple of 4.
    
    package main
    
    import (
            "fmt"
    )
    
    type Level string
    
    // The following are all go.strings. A link time error can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 20 16:16:47 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/duration/duration.go

    		return "<invalid>"
    	} else if seconds < 0 {
    		return "0s"
    	} else if seconds < 60*2 {
    		return fmt.Sprintf("%ds", seconds)
    	}
    	minutes := int(d / time.Minute)
    	if minutes < 10 {
    		s := int(d/time.Second) % 60
    		if s == 0 {
    			return fmt.Sprintf("%dm", minutes)
    		}
    		return fmt.Sprintf("%dm%ds", minutes, s)
    	} else if minutes < 60*3 {
    		return fmt.Sprintf("%dm", minutes)
    	}
    	hours := int(d / time.Hour)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 09:44:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    		st = sym.SDWARFTYPE
    	}
    	ds := d.ldr.LookupOrCreateSym(dwarf.InfoPrefix+name, 0)
    	dsu := d.ldr.MakeSymbolUpdater(ds)
    	dsu.SetType(st)
    	d.ldr.SetAttrNotInSymbolTable(ds, true)
    	d.ldr.SetAttrReachable(ds, true)
    	die.Sym = dwSym(ds)
    	if abbrev >= dwarf.DW_ABRV_NULLTYPE && abbrev <= dwarf.DW_ABRV_TYPEDECL {
    		d.tmap[name] = ds
    	}
    
    	return die
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. src/text/scanner/scanner.go

    		max := rune('0' + base)
    		for isDecimal(ch) || ch == '_' {
    			ds := 1
    			if ch == '_' {
    				ds = 2
    			} else if ch >= max && *invalid == 0 {
    				*invalid = ch
    			}
    			digsep |= ds
    			ch = s.next()
    		}
    	} else {
    		for isHex(ch) || ch == '_' {
    			ds := 1
    			if ch == '_' {
    				ds = 2
    			}
    			digsep |= ds
    			ch = s.next()
    		}
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top