Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for recursion (0.36 sec)

  1. guava/src/com/google/common/cache/LocalCache.java

            }
          } finally {
            unlock();
            postWriteCleanup();
          }
    
          if (createNewEntry) {
            try {
              // Synchronizes on the entry to allow failing fast when a recursive load is
              // detected. This may be circumvented when an entry is copied, but will fail fast most
              // of the time.
              synchronized (e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    			m:                  v1.VolumeMount{Name: "invalid", ReadOnly: true, RecursiveReadOnly: ptr.To(v1.RecursiveReadOnlyMode("foo"))},
    			runtimeSupportsRRO: true,
    			expected:           false,
    			expectedErr:        "unknown recursive read-only mode",
    		},
    	}
    
    	for _, tc := range testCases {
    		got, err := resolveRecursiveReadOnly(tc.m, tc.runtimeSupportsRRO)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	body, err := io.ReadAll(res.Body)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(body, rgz) {
    		t.Fatalf("Incorrect result from recursive gz:\nhave=%x\nwant=%x",
    			body, rgz)
    	}
    	if g, e := res.Header.Get("Content-Encoding"), ""; g != e {
    		t.Fatalf("Content-Encoding = %q; want %q", g, e)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top