Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for Hour (0.14 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    					"iss": "{{.URL}}",
    				    "aud": "your-client",
    					"groups": ["team1", "team2"],
    					"exp": %d
    			     }`, valid.Unix()),
    			},
    			openIDConfig: `{
    					"issuer": "{{.URL}}",
    					"jwks_uri": "{{.URL}}/.testing/keys"
    			}`,
    			wantErr: `oidc: could not expand distributed claims: verify distributed claim token: oidc: expected audience "my-client" got ["your-client"]`,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

        executeSynchronously("/").assertBody("abcabcabc")
      }
    
      @Test
      fun rangeHeaderPreventsAutomaticGzip() {
        val gzippedBody = gzip("abcabcabc")
    
        // Enqueue a gzipped response. Our request isn't expecting it, but that's okay.
        server.enqueue(
          MockResponse.Builder()
            .code(HttpURLConnection.HTTP_PARTIAL)
            .body(gzippedBody)
            .addHeader("Content-Encoding: gzip")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CacheTest.kt

          .isEqualTo(lastModifiedDate)
      }
    
      @Test
      fun maxAgeInThePastWithDateHeaderButNoLastModifiedHeader() {
        // Chrome interprets max-age relative to the local clock. Both our cache
        // and Firefox both use the earlier of the local and server's clock.
        assertNotCached(
          MockResponse.Builder()
            .addHeader("Date: " + formatDate(-120, TimeUnit.SECONDS))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // should not be necessary in typical use. However, the build cache
    // does not detect changes to C libraries imported with cgo.
    // If you have made changes to the C libraries on your system, you
    // will need to clean the cache explicitly or else use the -a build flag
    // (see 'go help build') to force rebuilding of packages that
    // depend on the updated C libraries.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        // We need to test with two input futures since ExecutionList.execute
        // doesn't catch Errors and we cannot depend on the order that our
        // transformations run. (So it is possible that the Error being thrown
        // could prevent our second transformations from running).
        SettableFuture<Integer> exceptionInput = SettableFuture.create();
        ListenableFuture<Integer> exceptionComposedFuture =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        // We need to test with two input futures since ExecutionList.execute
        // doesn't catch Errors and we cannot depend on the order that our
        // transformations run. (So it is possible that the Error being thrown
        // could prevent our second transformations from running).
        SettableFuture<Integer> exceptionInput = SettableFuture.create();
        ListenableFuture<Integer> exceptionComposedFuture =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    }
    
    var yextractps = []ytab{
    	{Zibr_m, 2, argList{Yu2, Yxr, Yml}},
    }
    
    var ysha1rnds4 = []ytab{
    	{Zibm_r, 2, argList{Yu2, Yxm, Yxr}},
    }
    
    // You are doasm, holding in your hand a *obj.Prog with p.As set to, say,
    // ACRC32, and p.From and p.To as operands (obj.Addr).  The linker scans optab
    // to find the entry with the given p.As and then looks through the ytable for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

    }
    
    # WARNING: DO NOT USE THE FILTER TABLE! Some implementations of network policy
    # think they own it and will stomp all over your changes. At this time, the
    # mangle table is less contentious so use that if possible.
    function config-ip-firewall {
      echo "Configuring IP firewall rules"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

       * map are also in this queue, and that all elements not in the queue are not in the map.
       *
       * <p>The benefits of creating our own queue are that (1) we can replace elements in the middle of
       * the queue as part of copyWriteEntry, and (2) the contains method is highly optimized for the
       * current model.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

       * map are also in this queue, and that all elements not in the queue are not in the map.
       *
       * <p>The benefits of creating our own queue are that (1) we can replace elements in the middle of
       * the queue as part of copyWriteEntry, and (2) the contains method is highly optimized for the
       * current model.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top