Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for promises (0.26 sec)

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

    								"access_token": "groups_token"
    						}
    				},
    				"exp": %d
    			}`, valid.Unix()),
    			claimToResponseMap: map[string]string{
    				// Doesn't contain the "groups" claim as it promises.
    				"groups": fmt.Sprintf(`{
    					"iss": "{{.URL}}",
    				    "aud": "my-client",
    					"exp": %d
    			     }`, valid.Unix()),
    			},
    			openIDConfig: `{
    					"issuer": "{{.URL}}",
    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/CacheTest.kt

        )
        val url = server.url("/a")
        assertThat(get(url).body.string()).isEqualTo("a")
        val i: Iterator<String> = cache.urls()
        cache.evictAll()
    
        // The URL was evicted before hasNext() made any promises.
        assertThat(i.hasNext()).isFalse()
        assertFailsWith<NoSuchElementException> {
          i.next()
        }
      }
    
      /** Test https://github.com/square/okhttp/issues/1712.  */
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //	GORISCV64
    //		For GOARCH=riscv64, the RISC-V user-mode application profile for which
    //		to compile. Valid values are rva20u64 (default), rva22u64.
    //		See https://github.com/riscv/riscv-profiles/blob/main/src/profiles.adoc
    //	GOWASM
    //		For GOARCH=wasm, comma-separated list of experimental WebAssembly features to use.
    //		Valid values are satconv, signext.
    //
    // Environment variables for use with code coverage:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    	// Stop profiler of all types if already running
    	for k, v := range globalProfiler {
    		for _, p := range profiles {
    			if p == k {
    				v.Stop()
    				delete(globalProfiler, k)
    			}
    		}
    	}
    
    	// Start profiling on remote servers.
    	var hostErrs []NotificationPeerErr
    	for _, profiler := range profiles {
    		hostErrs = append(hostErrs, globalNotificationSys.StartProfiling(profiler)...)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    using upstream dns servers in resolv.conf ISTIO_META_DNS_CAPTURE: "true" # Enable dynamic bootstrap generation. BOOTSTRAP_XDS_AGENT: "true" manifests/helm-profiles/README.md # Helm Profiles This folder provides a variety of "profiles" for helm installation. While a user can just explicitly pass this with `--values/-f`. However, Istio also provides a feature to bundle these with the charts, which is convenient when installing from remote charts. For details, see `copy-templates` Makefile target, and...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    nction ne(t){return"touch"===t.pointerType||!!t.touches}function re(t,e){void 0===e&&(e="client");var i=t.touches,n=t.changedTouches,r=i&&i[0]||n&&n[0]||t;return{x:r[e+"X"],y:r[e+"Y"]}}function oe(){var i=this;this.promise=new se(function(t,e){i.reject=e,i.resolve=t})}var se="Promise"in window?window.Promise:ue,ae=2,he="setImmediate"in window?setImmediate:setTimeout;function ue(t){this.state=ae,this.value=void 0,this.deferred=[];var e=this;try{t(function(t){e.resolve(t)},function(t){e.reject(t)}...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CallTest.kt

       */
      @Test
      fun connectTimeoutsAttemptsAlternateRoute() {
        val proxySelector = RecordingProxySelector()
        proxySelector.proxies.add(Proxy(Proxy.Type.HTTP, TestUtil.UNREACHABLE_ADDRESS_IPV4))
        proxySelector.proxies.add(server.toProxyAddress())
        server.enqueue(MockResponse(body = "success!"))
        client =
          client.newBuilder()
            .proxySelector(proxySelector)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    	case "off":
    		return
    
    	case "auto":
    		// Locate PGO profiles from the main packages, and
    		// attach the profile to the main package and its
    		// dependencies.
    		// If we're building multiple main packages, they may
    		// have different profiles. We may need to split (unshare)
    		// the dependency graph so they can attach different
    		// profiles.
    		for _, p := range pkgs {
    			if p.Name != "main" {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                                attribute(artifactType, "intermediate")
                            }
                            artifact jar
                        }
                    }
                }
    
                // Provides a default value of `preferred` if a given attribute is not requested.
                abstract class DefaultingDisambiguationRule implements AttributeDisambiguationRule<String>, org.gradle.api.internal.ReusableAction {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

            <!-- ====================================================================== -->
            <!-- Profiles                                                               -->
            <!-- ====================================================================== -->
    
            <field xdoc.separator="blank" xml.insertParentFieldsUpTo="reporting">
              <name>profiles</name>
              <version>4.0.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
Back to top