Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 711 for recurse (0.37 sec)

  1. logo/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    options:
      # make root approval non-recursive
      no_parent_owners: true
    reviewers:
      - thockin
    approvers:
      - sig-architecture-approvers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 12:26:53 UTC 2022
    - 199 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

            final Object recursive = dataMap.remove(getParamValue(paramMap, "field.recursive", "recursive"));
            if (recursive == null || Constants.FALSE.equalsIgnoreCase(recursive.toString())) {
                return 1L;
            }
            if (Constants.TRUE.equalsIgnoreCase(recursive.toString())) {
                return -1L;
            }
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/os/33357.md

    The [Stat] function now sets the [ModeSocket] bit for
    files that are Unix sockets on Windows. These files are identified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 178 bytes
    - Viewed (0)
  4. docs/pt/docs/benchmarks.md

    * **FastAPI**:
        * Do mesmo modo que Starlette utiliza Uvicorn e não pode ser mais rápido que ele, **FastAPI** utiliza o Starlette, então não tem como ser mais rápido do que o Starlette.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			watchKey := fmt.Sprintf("/pods/%s", tt.namespace)
    			key := watchKey + "/foo"
    			if !recursive {
    				watchKey = key
    			}
    
    			// Get the current RV from which we can start watching.
    			out := &example.PodList{}
    			if err := store.GetList(ctx, watchKey, storage.ListOptions{ResourceVersion: "", Predicate: tt.pred, Recursive: recursive}, out); err != nil {
    				t.Fatalf("List failed: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. tests/test_validate_response_recursive/test_validate_response_recursive_pv1.py

        from .app_pv1 import app
    
        client = TestClient(app)
        response = client.get("/items/recursive")
        assert response.status_code == 200, response.text
        assert response.json() == {
            "sub_items": [{"name": "subitem", "sub_items": []}],
            "name": "item",
        }
    
        response = client.get("/items/recursive-submodel")
        assert response.status_code == 200, response.text
        assert response.json() == {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 900 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    	return wc, nil
    }
    
    func (w *watcher) createWatchChan(ctx context.Context, key string, rev int64, recursive, progressNotify bool, pred storage.SelectionPredicate) *watchChan {
    	wc := &watchChan{
    		watcher:           w,
    		key:               key,
    		initialRev:        rev,
    		recursive:         recursive,
    		progressNotify:    progressNotify,
    		internalPred:      pred,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. src/net/addrselect_test.go

    package net
    
    import (
    	"net/netip"
    	"reflect"
    	"testing"
    )
    
    func TestSortByRFC6724(t *testing.T) {
    	tests := []struct {
    		in      []IPAddr
    		srcs    []netip.Addr
    		want    []IPAddr
    		reverse bool // also test it starting backwards
    	}{
    		// Examples from RFC 6724 section 10.2:
    
    		// Prefer matching scope.
    		{
    			in: []IPAddr{
    				{IP: ParseIP("2001:db8:1::1")},
    				{IP: ParseIP("198.51.100.121")},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 05 07:16:00 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/NavigableMapTestSuiteBuilder.java

              parentBuilder) {
        List<TestSuite> derivedSuites = super.createDerivedSuites(parentBuilder);
    
        if (!parentBuilder.getFeatures().contains(NoRecurse.DESCENDING)) {
          derivedSuites.add(createDescendingSuite(parentBuilder));
        }
    
        if (!parentBuilder.getFeatures().contains(NoRecurse.SUBMAP)) {
          // Other combinations are inherited from SortedMapTestSuiteBuilder.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. .github/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    options:
      # make root approval non-recursive
      no_parent_owners: true
    reviewers:
      - alisondy
      - cblecker
      - guineveresaenger
      - mrbobbytables
      - nikhita
      - parispittman
      - palnabarun
      - kaslin
      - MadhavJivrajani
      - Priyankasaggu11929
    approvers:
      - sig-contributor-experience-approvers
      - parispittman
    emeritus_approvers:
      - castrojo
      - Phillels
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 10 07:04:03 UTC 2023
    - 450 bytes
    - Viewed (0)
Back to top