Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for respAuds (0.66 sec)

  1. guava-gwt/src/com/google/common/net/Net.gwt.xml

    <!--
        We used to set this only for packages that had manual supersource. That
        worked everywhere that I know of except for one place: when running the GWT
        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. guava-gwt/test/com/google/common/collect/testing/Testing.gwt.xml

    <!--
        We used to set this only for packages that had manual supersource. That
        worked everywhere that I know of except for one place: when running the GWT
        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. pkg/probe/tcp/tcp_test.go

    import (
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"strconv"
    	"testing"
    	"time"
    
    	"k8s.io/kubernetes/pkg/probe"
    )
    
    func TestTcpHealthChecker(t *testing.T) {
    	// Setup a test server that responds to probing correctly
    	server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		w.WriteHeader(http.StatusOK)
    	}))
    	defer server.Close()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 18:23:33 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/deployment/internal/DeploymentRegistry.java

    @ThreadSafe
    public interface DeploymentRegistry {
        /**
         * Creates and starts a given deployment handle in the registry.
         *
         * @param name name of deployment
         * @param changeBehavior how the deployment responds to potential changes
         * @param handleType type of deployment handle
         * @param params constructor arguments
         *
         * @throws IllegalStateException if deployment handle with the given name already exists
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 06:23:31 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/nds.go

    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // NdsGenerator generates config for Nds i.e. Name Discovery Service. Istio agents
    // send NDS requests to istiod and istiod responds with a list of services and their
    // associated IPs (including service entries).
    // The agent then updates its internal DNS based on this data. If DNS capture is enabled
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. cmd/acl-handlers.go

    	} `xml:"AccessControlList"`
    }
    
    // PutBucketACLHandler - PUT Bucket ACL
    // -----------------
    // This operation uses the ACL subresource
    // to set ACL for a bucket, this is a dummy call
    // only responds success if the ACL is private.
    func (api objectAPIHandlers) PutBucketACLHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "PutBucketACL")
    
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. pilot/pkg/request/command_test.go

    			method:            "GET",
    			path:              "/want/path",
    			pilotNotReachable: true,
    			wantError:         true,
    		},
    		{
    			name:   "errors if Pilot responds with a non success status",
    			method: "GET",
    			path:   "/not/wanted/path",
    			body:   "",
    			pilotStates: []pilotStubState{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 19:11:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3ConnectionProperties.java

    import static java.lang.System.getProperty;
    
    public class S3ConnectionProperties {
        public static final String S3_ENDPOINT_PROPERTY = "org.gradle.s3.endpoint";
        //The maximum number of times to retry a request when S3 responds with a http 5xx error
        public static final String S3_MAX_ERROR_RETRY = "org.gradle.s3.maxErrorRetry";
        private static final Set<String> SUPPORTED_SCHEMES = Sets.newHashSet("HTTP", "HTTPS");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. src/net/rpc/jsonrpc/server.go

    	// Package rpc expects uint64 request IDs.
    	// We assign uint64 sequence numbers to incoming requests
    	// but save the original request ID in the pending map.
    	// When rpc responds, we use the sequence number in
    	// the response to find the original request ID.
    	mutex   sync.Mutex // protects seq, pending
    	seq     uint64
    	pending map[uint64]*json.RawMessage
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. docs/iam/identity-management-plugin.md

    plugin enables the `AssumeRoleWithCustomToken` STS API extension. A user or application can now present a token to the `AssumeRoleWithCustomToken` API, and MinIO verifies this token by sending it to the Identity Management Plugin webhook. This plugin responds with some information and MinIO is able to generate temporary STS credentials to interact with object storage.
    
    The authentication flow is similar to that of OpenID, however the token is "opaque" to MinIO - it is simply sent to the plugin for...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top