Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 767 for pconstants (0.17 sec)

  1. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

                factory.setFeature(org.codelibs.fess.crawler.Constants.FEATURE_SECURE_PROCESSING, true);
                factory.setFeature(org.codelibs.fess.crawler.Constants.FEATURE_EXTERNAL_GENERAL_ENTITIES, false);
                factory.setFeature(org.codelibs.fess.crawler.Constants.FEATURE_EXTERNAL_PARAMETER_ENTITIES, false);
                final SAXParser parser = factory.newSAXParser();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/users/users_linux.go

    	usersToCreateSpec = []*entry{
    		{name: constants.EtcdUserName},
    		{name: constants.KubeAPIServerUserName},
    		{name: constants.KubeControllerManagerUserName},
    		{name: constants.KubeSchedulerUserName},
    	}
    	groupsToCreateSpec = []*entry{
    		{name: constants.EtcdUserName, userNames: []string{constants.EtcdUserName}},
    		{name: constants.KubeAPIServerUserName, userNames: []string{constants.KubeAPIServerUserName}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

      // larger than this threshold will not be unfrozen and will remain as
      // constants.
      Option<int64_t> size_threshold_in_bytes_;
    };
    
    // Adds the symbol to the "initializers" attribute of the session_initializer
    // op.
    void AddSymbolToInitializersAttr(SessionInitializerOp session_init_op,
                                     FlatSymbolRefAttr symbol) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server_test.go

    			enableCA:     false,
    			certProvider: constants.CertProviderIstiod,
    			expNewCert:   false,
    			expCert:      []byte{},
    			expKey:       []byte{},
    		},
    		{
    			name: "DNS cert loaded because it is in known even if CA is Disabled",
    			FSCertsPaths: TLSFSLoadPaths{
    				constants.DefaultPilotTLSCert,
    				constants.DefaultPilotTLSKey,
    				constants.DefaultPilotTLSCaCert,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java

            final ResponseData responseData = new ResponseData();
            try {
                responseData.setMethod(includeContent ? Constants.GET_METHOD : Constants.HEAD_METHOD);
                final String filePath = preprocessUri(uri);
                responseData.setUrl(filePath);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/apiclient/wait.go

    	componentHash := ""
    	var err, lastErr error
    	mirrorPodHashes := map[string]string{}
    	for _, component := range constants.ControlPlaneComponents {
    		err = wait.PollUntilContextTimeout(context.Background(),
    			constants.KubernetesAPICallRetryInterval, w.timeout,
    			true, func(_ context.Context) (bool, error) {
    				componentHash, err = getStaticPodSingleHash(w.client, nodeName, component)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

            AuthScheme authScheme = null;
            if (Constants.BASIC.equals(scheme)) {
                authScheme = new BasicScheme();
            } else if (Constants.DIGEST.equals(scheme)) {
                authScheme = new DigestScheme();
            } else if (Constants.NTLM.equals(scheme)) {
                final Properties props = new Properties();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

                }
            }
    
            if (file.isFile()) {
                responseData.setHttpStatusCode(Constants.OK_STATUS_CODE);
                responseData.setCharSet(Constants.UTF_8);
                responseData.setLastModified(file.getTimestamp().getTime());
    
                // check file size
                responseData.setContentLength(file.getSize());
                checkMaxContentLength(responseData);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.io.CloseableUtil;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.curl.CurlResponse;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.dict.DictionaryException;
    import org.codelibs.fess.dict.DictionaryFile;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalEntity;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

                for (final String labelTypeValue : labelList) {
                    for (final Map<String, String> map : labelTypeItems) {
                        if (map.get(Constants.ITEM_VALUE).equals(labelTypeValue)) {
                            buf.append(' ');
                            buf.append(map.get(Constants.ITEM_LABEL));
                            break;
                        }
                    }
                }
            }
            return buf.toString();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top