Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 87 for userAgent (0.23 sec)

  1. src/main/java/org/codelibs/fess/es/log/bsentity/BsSearchLog.java

            this.user = value;
        }
    
        public String getUserAgent() {
            checkSpecifiedProperty("userAgent");
            return convertEmptyToNull(userAgent);
        }
    
        public void setUserAgent(String value) {
            registerModifiedProperty("userAgent");
            this.userAgent = value;
        }
    
        public String getUserInfoId() {
            checkSpecifiedProperty("userInfoId");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebConfig.java

            this.urls = value;
        }
    
        public String getUserAgent() {
            checkSpecifiedProperty("userAgent");
            return convertEmptyToNull(userAgent);
        }
    
        public void setUserAgent(String value) {
            registerModifiedProperty("userAgent");
            this.userAgent = value;
        }
    
        public String[] getVirtualHosts() {
            checkSpecifiedProperty("virtualHosts");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsWebConfigCQ.java

        }
    
        public void setUserAgent_Equal(String userAgent) {
            setUserAgent_Term(userAgent, null);
        }
    
        public void setUserAgent_Equal(String userAgent, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setUserAgent_Term(userAgent, opLambda);
        }
    
        public void setUserAgent_Term(String userAgent) {
            setUserAgent_Term(userAgent, null);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 172.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java

            excludedDocUrls = fessConfig.getCrawlerDocumentHtmlDefaultExcludeSearchPatterns();
            boost = 1.0f;
            if (StringUtil.isBlank(userAgent)) {
                userAgent = fessConfig.getUserAgentName();
            }
            numOfThread = Constants.DEFAULT_NUM_OF_THREAD_FOR_WEB;
            intervalTime = Constants.DEFAULT_INTERVAL_TIME_FOR_WEB;
            sortOrder = 0;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

                }
            }
    
            // user agent
            final String userAgent = paramMap.get(CRAWLER_USERAGENT);
            if (StringUtil.isNotBlank(userAgent)) {
                factoryParamMap.put(HcHttpClient.USER_AGENT_PROPERTY, userAgent);
            }
    
            // web auth
            final String webAuthStr = paramMap.get(CRAWLER_WEB_AUTH);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/PathMappingDbm.java

                false, false, "Long", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnUserAgent = cci("userAgent", "userAgent", null, null, String.class, "userAgent", null, false, false,
                false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    
        public ColumnInfo columnCreatedBy() {
            return _columnCreatedBy;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsPathMappingCA.java

        public void setUserAgent_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setUserAgent_Terms("userAgent", opLambda, null);
        }
    
        public void setUserAgent_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsPathMappingCA> aggsLambda) {
            setUserAgent_Terms("userAgent", opLambda, aggsLambda);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 59.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/es/config/exentity/WebConfigTest.java

            final SetOnce<Map<String, Object>> initParamMapSet = new SetOnce<>();
            WebConfig webConfig = new WebConfig();
            final String userAgent = "TestAgent";
            webConfig.setUserAgent(userAgent);
            webConfig.setConfigParameter("""
                    client.robotsTxtEnabled=false
                    """);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  9. samples/tlssurvey/src/main/kotlin/okhttp3/survey/Clients.kt

    import okhttp3.survey.types.SuiteId
    import okio.FileSystem
    import okio.Path.Companion.toPath
    import org.conscrypt.Conscrypt
    
    fun currentOkHttp(ianaSuites: IanaSuites): Client {
      return Client(
        userAgent = "OkHttp",
        version = OkHttp.VERSION,
        enabled =
          ConnectionSpec.MODERN_TLS.cipherSuites!!.map {
            ianaSuites.fromJavaName(it.javaName)
          },
        supported =
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Apr 02 01:44:15 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  10. internal/event/event.go

    	Object          Object `json:"object"`
    }
    
    // Source represents client information who triggered the event.
    type Source struct {
    	Host      string `json:"host"`
    	Port      string `json:"port"`
    	UserAgent string `json:"userAgent"`
    }
    
    // Event represents event notification information defined in
    // http://docs.aws.amazon.com/AmazonS3/latest/dev/notification-content-structure.html.
    type Event struct {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Jun 20 00:53:08 GMT 2023
    - 3.4K bytes
    - Viewed (0)
Back to top