Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 7,957 for Languages (0.46 sec)

  1. src/main/config/es/fess_log_search_log.json

                "type" : "keyword"
              },
              "hitCount" : {
                "type" : "long"
              },
              "hitCountRelation" : {
                "type" : "keyword"
              },
              "languages" : {
                "type" : "keyword"
              },
              "queryId" : {
                "type" : "keyword"
              },
              "queryOffset" : {
                "type" : "integer"
              },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Apr 12 15:00:27 GMT 2019
    - 2K bytes
    - Viewed (0)
  2. docs/ko/docs/deployment/cloud.md

    아래와 같은 서비스를 사용해보고 각 서비스의 가이드를 따를 수도 있습니다:
    
    * <a href="https://docs.platform.sh/languages/python.html?utm_source=fastapi-signup&utm_medium=banner&utm_campaign=FastAPI-signup-June-2023" class="external-link" target="_blank">Platform.sh</a>
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Jan 28 10:38:34 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/exentity/SearchLog.java

                    + fields + ", accessType=" + accessType + ", clientIp=" + clientIp + ", hitCount=" + hitCount + ", languages=" + languages
                    + ", queryId=" + queryId + ", queryOffset=" + queryOffset + ", queryPageSize=" + queryPageSize + ", queryTime=" + queryTime
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                } else {
                    searchLog.setAccessType(Constants.SEARCH_LOG_ACCESS_TYPE_WEB);
                }
                final Object languages = req.getAttribute(Constants.REQUEST_LANGUAGES);
                if (languages != null) {
                    searchLog.setLanguages(StringUtils.join((String[]) languages, ","));
                } else {
                    searchLog.setLanguages(StringUtil.EMPTY);
                }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20.8K bytes
    - Viewed (1)
  5. .github/workflows/codeql-analysis.yml

        strategy:
          fail-fast: false
          matrix:
            language: ['java', 'javascript']
    
        steps:
        - name: Checkout repository
          uses: actions/checkout@v4
          with:
            fetch-depth: 2
    
        - name: Initialize CodeQL
          uses: github/codeql-action/init@v1
          with:
            languages: ${{ matrix.language }}
    
        - name: Set up JDK 17
          uses: actions/setup-java@v4
          with:
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Feb 10 03:25:34 GMT 2024
    - 1K bytes
    - Viewed (0)
  6. docs/zh/docs/deployment/cloud.md

    您可能想尝试他们的服务并阅读他们的指南:
    
    * <a href="https://docs.platform.sh/languages/python.html?utm_source=fastapi-signup&utm_medium=banner&utm_campaign=FastAPI-signup-June-2023" class="external-link" target="_blank" >Platform.sh</a>
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Jan 28 10:38:34 GMT 2024
    - 990 bytes
    - Viewed (0)
  7. tests/joins_test.go

    	user := GetUser("TestJoinWithSameColumnName", Config{
    		Languages: 1,
    		Pets:      1,
    	})
    	DB.Create(user)
    	type UserSpeak struct {
    		UserID       uint
    		LanguageCode string
    	}
    	type Result struct {
    		User
    		UserSpeak
    		Language
    		Pet
    	}
    
    	results := make([]Result, 0, 1)
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Wed Apr 26 14:19:32 GMT 2023
    - 13.5K bytes
    - Viewed (1)
  8. tensorflow/c/checkpoint_reader.h

    namespace tensorflow {
    namespace checkpoint {
    
    class TensorSliceReader;
    
    // A wrapper around BundleReader (for V2 checkpoints) and
    // checkpoint::TensorSliceReader (for V1), that is more easily SWIG wrapped for
    // other languages.
    //
    // The class currently only interacts with single-slice (i.e., non-partitioned)
    // variables.
    class CheckpointReader {
     public:
      CheckpointReader(const string& filename, TF_Status* status);
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 12 08:49:52 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/query/QueryCommand.java

            return LaRequestUtil.getOptionalRequest().map(request -> ComponentUtil.getFessConfig().getQueryLanguages(request.getLocales(),
                    (String[]) request.getAttribute(Constants.REQUEST_LANGUAGES)));
        }
    
        protected BoolQueryBuilder buildDefaultQueryBuilder(final FessConfig fessConfig, final QueryContext context,
                final DefaultQueryBuilderFunction builder) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess_log.search_log/search_log.json

          },
          "userSessionId": {
            "type": "keyword"
          },
          "accessType": {
            "type": "keyword"
          },
          "userInfoId": {
            "type": "keyword"
          },
          "languages" : {
            "type" : "keyword"
          },
          "virtualHost" : {
            "type" : "keyword"
          }
        }
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 25 13:38:21 GMT 2022
    - 1.6K bytes
    - Viewed (0)
Back to top