Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for fcclient (0.18 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/client.xml

    	</component>
    
    	<component name="smb1Client" class="org.codelibs.fess.crawler.client.smb1.SmbClient"
    		instance="prototype">
    		<property name="charset">"UTF-8"</property>
    		<!-- ntlmPasswordAuthentication -->
    	</component>
    
    	<component name="ftpClient"
    		class="org.codelibs.fess.crawler.client.ftp.FtpClient" instance="prototype">
    		<property name="charset">"UTF-8"</property>
    	</component>
    
    	<component name="storageClient"
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Tue Aug 08 12:54:47 UTC 2023
    - 2.8K 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. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/CrawlerClientFactoryTest.java

            url = "smb1:/home/hoge";
            client = clientFactory.getClient(url);
            assertNotNull(client);
            assertTrue(client instanceof org.codelibs.fess.crawler.client.smb1.SmbClient);
    
            url = "ftp:/home/hoge";
            client = clientFactory.getClient(url);
            assertNotNull(client);
            assertTrue(client instanceof FtpClient);
    
            url = "storage:/home/hoge";
            client = clientFactory.getClient(url);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. 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)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/fs/FileSystemClientTest.java

        public FileSystemClient fsClient;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
            StandardCrawlerContainer container = new StandardCrawlerContainer().singleton("mimeTypeHelper", MimeTypeHelperImpl.class)//
                    .singleton("fsClient", FileSystemClient.class);
            fsClient = container.getComponent("fsClient");
        }
    
        public void test_doGet_dir() {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 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. security/pkg/nodeagent/caclient/providers/mock/mockcaclient.go

    )
    
    // CAClient is the mocked CAClient for testing.
    type CAClient struct {
    	SignInvokeCount uint64
    	bundle          *util.KeyCertBundle
    	certLifetime    time.Duration
    	GeneratedCerts  [][]string // Cache the generated certificates for verification purpose.
    	mockTrustAnchor bool
    }
    
    // NewMockCAClient creates an instance of CAClient. errors is used to specify the number of errors
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 3K 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/test/groovy/org/gradle/internal/resource/transport/gcp/gcs/GcsResourceConnectorTest.groovy

        def name = new ExternalResourceName(uri)
    
        def "should list resources"() {
            GcsClient gcsClient = Mock()
            when:
            new GcsResourceConnector(gcsClient).list(name)
            then:
            1 * gcsClient.list(uri)
        }
    
        def "should get a resource"() {
            GcsClient gcsClient = Mock {
                1 * getResource(uri) >> new StorageObject()
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3ResourceConnectorTest.groovy

        def "should list resources"() {
            S3Client s3Client = Mock()
            when:
            new S3ResourceConnector(s3Client).list(name)
            then:
            1 * s3Client.listDirectChildren(uri)
        }
    
        def "should get a resource"() {
            ObjectMetadata objectMetadata = Mock()
            S3Client s3Client = Mock {
                1 * getResource(uri) >> Mock(S3Object) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top