Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 101 for lowercased (0.21 sec)

  1. src/main/resources/fess_indices/_cloud/fess.json

            },
            "greek_lowercase": {
              "type":       "lowercase",
              "language":   "greek"
            },
            "greek_keywords": {
              "type":       "keyword_marker",
              "keywords": ["Γεια σας", "κόσμος", "έρευνα"]
            },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/extensions.kt

    fun functionalTestExtraParameters(buildScanTag: String, os: Os, arch: Arch, testJvmVersion: String, testJvmVendor: String): String {
        val buildScanValues = mapOf(
            "coverageOs" to os.name.lowercase(),
            "coverageArch" to arch.name.lowercase(),
            "coverageJvmVendor" to testJvmVendor,
            "coverageJvmVersion" to "java$testJvmVersion"
        )
        return (
            listOf(
                "-PtestJavaVersion=$testJvmVersion",
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 10:49:15 GMT 2024
    - 13K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/AsciiTest.java

    /**
     * Unit test for {@link Ascii}.
     *
     * @author Craig Berry
     */
    @GwtCompatible
    public class AsciiTest extends TestCase {
    
      /**
       * The Unicode points {@code 00c1} and {@code 00e1} are the upper- and lowercase forms of
       * A-with-acute-accent, {@code Á} and {@code á}.
       */
      private static final String IGNORED = "`10-=~!@#$%^&*()_+[]\\{}|;':\",./<>?'\u00c1\u00e1\n";
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt

          }
    
          override operator fun get(url: HttpUrl): String {
            val host = url.host
            return host.substring(1, host.length - 5).lowercase()
          }
    
          override fun canonicalize(s: String): String = s.lowercase()
        },
    
        PATH {
          override fun urlString(value: String): String = "http://example.com/a${value}z/"
    
          override fun encodedValue(url: HttpUrl): String {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/_aws/fess.json

            },
            "greek_lowercase": {
              "type":       "lowercase",
              "language":   "greek"
            },
            "greek_keywords": {
              "type":       "keyword_marker",
              "keywords": ["Γεια σας", "κόσμος", "έρευνα"]
            },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/DocsTest.kt

                " -PtestJavaVersion=${testJava.version.major}" +
                " -PtestJavaVendor=${testJava.vendor.name}" +
                " -P${testSplitType.name.lowercase()}TestClasses=true",
            preSteps = prepareTestClassesStep(os, testSplitType, testClasses)
        )
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess_config.file_config.json

          "analyzer": {
            "standard_analyzer": {
              "type": "custom",
              "tokenizer": "standard",
              "filter": [
                "cjk_width",
                "asciifolding",
                "lowercase",
                "stop",
                "stemmer"
              ]
            }
          }
        }
      }
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 484 bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess_config.web_config.json

          "analyzer": {
            "standard_analyzer": {
              "type": "custom",
              "tokenizer": "standard",
              "filter": [
                "cjk_width",
                "asciifolding",
                "lowercase",
                "stop",
                "stemmer"
              ]
            }
          }
        }
      }
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 484 bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/authentication/v1alpha1/generated.proto

    // When using impersonation, users will receive the user info of the user being impersonated.  If impersonation or
    // request header authentication is used, any extra keys will have their case ignored and returned as lowercase.
    message SelfSubjectReview {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/rendererrs/FirDiagnosticToKtDiagnosticConverterRenderer.kt

            print("add(${diagnostic.original.containingObjectName}.${diagnostic.original.name}")
            if (diagnostic.severity != null) {
                print(".${diagnostic.severity.name.lowercase()}Factory")
            }
            println(") { firDiagnostic ->")
            withIndent {
                println("${diagnostic.implClassName}(")
                withIndent {
                    printDiagnosticParameters(diagnostic)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Nov 16 14:27:49 GMT 2023
    - 3.2K bytes
    - Viewed (0)
Back to top