Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 71 for prefix (0.16 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsBoostDocumentRuleCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setBoostExpr_Prefix(String boostExpr) {
            setBoostExpr_Prefix(boostExpr, null);
        }
    
        public void setBoostExpr_Prefix(String boostExpr, ConditionOptionCall<PrefixQueryBuilder> opLambda) {
            PrefixQueryBuilder builder = regPrefixQ("boostExpr", boostExpr);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 56.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsDuplicateHostCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedBy_Prefix(String createdBy) {
            setCreatedBy_Prefix(createdBy, null);
        }
    
        public void setCreatedBy_Prefix(String createdBy, ConditionOptionCall<PrefixQueryBuilder> opLambda) {
            PrefixQueryBuilder builder = regPrefixQ("createdBy", createdBy);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 58.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsRequestHeaderCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedBy_Prefix(String createdBy) {
            setCreatedBy_Prefix(createdBy, null);
        }
    
        public void setCreatedBy_Prefix(String createdBy, ConditionOptionCall<PrefixQueryBuilder> opLambda) {
            PrefixQueryBuilder builder = regPrefixQ("createdBy", createdBy);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 57.2K bytes
    - Viewed (0)
  4. istioctl/pkg/proxyconfig/testdata/config_dump.json

                          "range_matchers": [
                            {
                              "ranges": [
                                {
                                  "address_prefix": "10.104.171.68",
                                  "prefix_len": 32
                                }
                              ],
                              "on_match": {
                                "matcher": {
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileAuthenticationCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedBy_Prefix(String createdBy) {
            setCreatedBy_Prefix(createdBy, null);
        }
    
        public void setCreatedBy_Prefix(String createdBy, ConditionOptionCall<PrefixQueryBuilder> opLambda) {
            PrefixQueryBuilder builder = regPrefixQ("createdBy", createdBy);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 88.1K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

    // effect if a prefix is set, since the prefix will guarantee all names are
    // unique. Defaults to false.
    TF_CAPI_EXPORT extern void TF_ImportGraphDefOptionsSetUniquifyNames(
        TF_ImportGraphDefOptions* opts, unsigned char uniquify_names);
    
    // If true, the specified prefix will be modified if it already exists as an
    // operation name or prefix in the graph. If false, a conflicting prefix will be
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  7. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsPathMappingCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedBy_Prefix(String createdBy) {
            setCreatedBy_Prefix(createdBy, null);
        }
    
        public void setCreatedBy_Prefix(String createdBy, ConditionOptionCall<PrefixQueryBuilder> opLambda) {
            PrefixQueryBuilder builder = regPrefixQ("createdBy", createdBy);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 72.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsClickLogCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setUrlId_Prefix(String urlId) {
            setUrlId_Prefix(urlId, null);
        }
    
        public void setUrlId_Prefix(String urlId, ConditionOptionCall<PrefixQueryBuilder> opLambda) {
            PrefixQueryBuilder builder = regPrefixQ("urlId", urlId);
            if (opLambda != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 63.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    	// exported so that they become global symbols
    	// that the C code can refer to.
    	prefix := "_C"
    	if *gccgo && n.IsVar() {
    		prefix = "C"
    	}
    	n.Mangle = prefix + n.Kind + "_" + n.Go
    }
    
    func (f *File) isMangledName(s string) bool {
    	prefix := "_C"
    	if strings.HasPrefix(s, prefix) {
    		t := s[len(prefix):]
    		for _, k := range nameKinds {
    			if strings.HasPrefix(t, k+"_") {
    				return true
    			}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

        private static final Logger logger = LogManager.getLogger(SearchEngineClient.class);
    
        private static final String LOG_INDEX_PREFIX = "fess_log";
    
        private static final String USER_INDEX_PREFIX = "fess_user";
    
        private static final String CONFIG_INDEX_PREFIX = "fess_config";
    
        protected OpenSearchRunner runner;
    
        protected Client client;
    
        protected Map<String, String> settings;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
Back to top