Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 274 for goclient (0.21 sec)

  1. src/net/http/cgi/child_test.go

    		"HTTP_REFERER":    "elsewhere",
    		"HTTP_USER_AGENT": "goclient",
    		"HTTP_FOO_BAR":    "baz",
    		"REQUEST_URI":     "/path?a=b",
    		"CONTENT_LENGTH":  "123",
    		"CONTENT_TYPE":    "text/xml",
    		"REMOTE_ADDR":     "5.6.7.8",
    		"REMOTE_PORT":     "54321",
    	}
    	req, err := RequestFromMap(env)
    	if err != nil {
    		t.Fatalf("RequestFromMap: %v", err)
    	}
    	if g, e := req.UserAgent(), "goclient"; e != g {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 14 15:42:03 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/GcsClient.java

    import com.google.api.client.auth.oauth2.Credential;
    import com.google.api.client.googleapis.auth.oauth2.GoogleCredential;
    import com.google.api.client.googleapis.javanet.GoogleNetHttpTransport;
    import com.google.api.client.googleapis.json.GoogleJsonResponseException;
    import com.google.api.client.http.HttpTransport;
    import com.google.api.client.http.InputStreamContent;
    import com.google.api.client.json.JsonFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:20 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/caclient/providers/citadel/client.go

    	"istio.io/istio/pkg/security"
    	"istio.io/istio/security/pkg/nodeagent/caclient"
    )
    
    const (
    	bearerTokenPrefix = "Bearer "
    )
    
    var citadelClientLog = log.RegisterScope("citadelclient", "citadel client debugging")
    
    type CitadelClient struct {
    	// It means enable tls connection to Citadel if this is not nil.
    	tlsOpts  *TLSOptions
    	client   pb.IstioCertificateServiceClient
    	conn     *grpc.ClientConn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/CrawlerClientFactoryTest.java

            String url;
            CrawlerClient client;
    
            url = null;
            client = clientFactory.getClient(url);
            assertNull(client);
    
            url = "";
            client = clientFactory.getClient(url);
            assertNull(client);
    
            url = " ";
            client = clientFactory.getClient(url);
            assertNull(client);
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. fess-crawler-lasta/src/main/resources/crawler/client.xml

    		<property name="retryInterval">500</property>
    	</component>
    
    	<component name="fsClient"
    		class="org.codelibs.fess.crawler.client.fs.FileSystemClient" instance="prototype">
    		<property name="charset">"UTF-8"</property>
    	</component>
    
    	<component name="smbClient" class="org.codelibs.fess.crawler.client.smb.SmbClient"
    		instance="prototype">
    		<property name="charset">"UTF-8"</property>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Tue Aug 08 12:54:47 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. dbflute_fess/dfprop/esfluteMap.dfprop

                ; esclientDiFile = esclient.xml
                ; esfluteDiFile = esflute_user.xml
            }
            ; fess_user.role = map:{
                ; package = user
                ; esclientDiFile = esclient.xml
                ; esfluteDiFile = esflute_user.xml
            }
            ; fess_user.user = map:{
                ; package = user
                ; esclientDiFile = esclient.xml
                ; esfluteDiFile = esflute_user.xml
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  7. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/S3ClientIntegrationTest.groovy

            s3Client.put(stream, file.length(), uri)
            s3Client.getResource(new URI("s3://${bucketName}/maven/release/idontExist.txt"))
        }
    
        @Ignore
        def "should interact with real S3 using SDK delegation"() {
            String bucketName = System.getenv('G_S3_BUCKET')
    
            S3Client s3Client = new S3Client(new S3ConnectionProperties())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. platforms/software/resources-gcs/src/test/groovy/org/gradle/internal/resource/transport/gcp/gcs/GcsClientTest.groovy

            }
    
            when:
            gcsClient.put(Mock(InputStream), 0, uri)
            then:
            def ex = thrown(ResourceException)
            ex.message.startsWith("Could not write to resource 'https://somehost/file.txt'")
        }
    
        def "should not fail on GcsClient.list() returning null"() {
            def gcsStorageClient = Mock(Storage)
            GcsClient gcsClient = new GcsClient(gcsStorageClient)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/GcsResourceConnector.java

        private final GcsClient gcsClient;
    
        public GcsResourceConnector(GcsClient gcsClient) {
            this.gcsClient = gcsClient;
        }
    
        @Nullable
        @Override
        public List<String> list(ExternalResourceName parent) throws ResourceException {
            LOGGER.debug("Listing parent resources: {}", parent);
            return gcsClient.list(parent.getUri());
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/GcsClientIntegrationTest.groovy

     */
    
    package org.gradle.integtests.resource.gcs
    
    import com.google.api.client.googleapis.auth.oauth2.GoogleCredential
    import com.google.api.client.http.HttpRequest
    import com.google.api.client.http.HttpRequestInitializer
    import com.google.api.client.http.javanet.NetHttpTransport
    import com.google.api.client.json.gson.GsonFactory
    import com.google.api.services.storage.Storage
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top