Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 987 for Tconstants (0.35 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/builder/RequestDataBuilder.java

            }
    
            public RequestDataContext method(final String method) {
                if (Constants.GET_METHOD.equalsIgnoreCase(method)) {
                    return get();
                }
                if (Constants.HEAD_METHOD.equalsIgnoreCase(method)) {
                    return head();
                }
                if (Constants.POST_METHOD.equalsIgnoreCase(method)) {
                    return post();
                }
                return get();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/run_test.go

    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    	dep "istio.io/istio/tools/istio-iptables/pkg/dependencies"
    )
    
    func constructTestConfig() *config.Config {
    	return &config.Config{
    		ProxyPort:               "15001",
    		InboundCapturePort:      "15006",
    		InboundTunnelPort:       "15008",
    		ProxyUID:                constants.DefaultProxyUID,
    		ProxyGID:                constants.DefaultProxyUID,
    		InboundTProxyMark:       "1337",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/marshal.go

    	return GroupVersionKindsHasKind(gvks, constants.ClusterConfigurationKind)
    }
    
    // GroupVersionKindsHasInitConfiguration returns whether the following gvk slice contains a InitConfiguration object
    func GroupVersionKindsHasInitConfiguration(gvks ...schema.GroupVersionKind) bool {
    	return GroupVersionKindsHasKind(gvks, constants.InitConfigurationKind)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/OsddHelper.java

            if (Constants.TRUE.equalsIgnoreCase(osddLinkEnabled)) {
                return true;
            }
    
            if (!Constants.AUTO.equalsIgnoreCase(osddLinkEnabled)) {
                return false;
            }
    
            final String ssoType = fessConfig.getSsoType();
            return StringUtil.isBlank(ssoType) || Constants.NONE.equalsIgnoreCase(ssoType);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/BaseSearchBody.java

     */
    package org.codelibs.fess.app.web.api.admin;
    
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.util.ComponentUtil;
    
    public class BaseSearchBody {
    
        public Integer size = ComponentUtil.getFessConfig().getPagingPageSizeAsInteger();
    
        public Integer page = Constants.DEFAULT_ADMIN_PAGE_NUMBER;
    
        public int getPageSize() {
            if (size != null) {
                return size;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java

        @Size(max = 1000)
        public String createdBy;
    
        @ValidateTypeFailure
        public Long createdTime;
    
        public void initialize() {
            target = Constants.DEFAULT_JOB_TARGET;
            cronExpression = Constants.DEFAULT_CRON_EXPRESSION;
            scriptType = Constants.DEFAULT_JOB_SCRIPT_TYPE;
            sortOrder = 0;
            createdBy = ComponentUtil.getSystemHelper().getUsername();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pkg/config/gateway/kube/gatewayapi.go

    		gatewayName = parts[1]
    	}
    	return strings.Contains(gatewayName, fmt.Sprintf("-%s-", constants.KubernetesGatewayName))
    }
    
    // InternalGatewayName returns the name of the internal Istio Gateway corresponding to the
    // specified gateway-api gateway and listener.
    func InternalGatewayName(gwName, lName string) string {
    	return fmt.Sprintf("%s-%s-%s", gwName, constants.KubernetesGatewayName, lName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 01:28:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

            fileAuthenticationBhv.insertOrUpdate(fileAuthentication, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        public void delete(final FileAuthentication fileAuthentication) {
    
            fileAuthenticationBhv.delete(fileAuthentication, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/RoleTypeService.java

        public void store(final RoleType roleType) {
    
            roleTypeBhv.insertOrUpdate(roleType, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        public void delete(final RoleType roleType) {
    
            roleTypeBhv.delete(roleType, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        protected void setupListCondition(final RoleTypeCB cb, final RoleTypePager roleTypePager) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java

            assertEquals(exp, transformer.getFileName(url, Constants.UTF_8));
    
            url = "http://example.com/" + encodeUrl("#") + "/@@folder/test.txt";
            exp = "test.txt";
            assertEquals(exp, transformer.getFileName(url, Constants.UTF_8));
    
            url = "http://example.com/test%20+%2B.txt";
            exp = "test  +.txt";
            assertEquals(exp, transformer.getFileName(url, Constants.UTF_8));
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top