Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for headless (0.07 sec)

  1. src/test/java/org/codelibs/fess/util/JvmUtilTest.java

                    "8-:-Dfile.encoding=UTF-8", "17-:-XX:+UseStringDeduplication" };
    
            String[] result = JvmUtil.filterJvmOptions(args);
            assertEquals(3, result.length);
            assertEquals("-XX:OnOutOfMemoryError=\"kill -9 %p\"", result[0]);
            assertEquals("-Djava.awt.headless=true", result[1]);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    api.search.accept.referers=
    # Whether to enable scroll for API search.
    api.search.scroll=false
    # Headers for API JSON response.
    api.json.response.headers=Referrer-Policy:strict-origin-when-cross-origin
    # Whether to include exceptions in API JSON response.
    api.json.response.exception.included=false
    # Headers for API GSA response.
    api.gsa.response.headers=Referrer-Policy:strict-origin-when-cross-origin
    # Whether to include exceptions in API GSA response.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * Get the value for the key 'searchlog.request.headers'. <br>
         * The value is, e.g.  <br>
         * comment: Request headers to include in search log.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getSearchlogRequestHeaders();
    
        /**
         * Get the value for the key 'searchlog.request.headers' as {@link Integer}. <br>
         * The value is, e.g.  <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  4. CHANGELOG/CHANGELOG-1.32.md

    - kube-apiserver: a new `--requestheader-uid-headers` flag allows configuring request header authentication to obtain the authenticating user's UID from the specified headers. The suggested value for the new option is `X-Remote-Uid`. When specified, the `kube-system/extension-apiserver-authentication` configmap will include the value in its `.data[requestheader-uid-headers]` field. ([#115834](https://github.com/kubernetes/kubernetes/pull/115834), [@stlaz](...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.34.md

    - Added warnings when creating headless service with set `loadBalancerIP`,`externalIPs` and/or `SessionAffinity`. ([#132214](https://github.com/kubernetes/kubernetes/pull/132214), [@Peac36](https://github.com/Peac36))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Services implemented a field selector for the ClusterIP and Type fields.
      The Kubelet uses this field selector to avoid monitoring Headless Services, which helps reduce memory consumption. ([#123905](https://github.com/kubernetes/kubernetes/pull/123905), [@aojea](https://github.com/aojea)) [SIG Apps, Node and Testing]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Request.kt

          value: String,
        ) = apply {
          headers.add(name, value)
        }
    
        /** Removes all headers named [name] on this builder. */
        open fun removeHeader(name: String) =
          apply {
            headers.removeAll(name)
          }
    
        /** Removes all headers on this builder and adds [headers]. */
        open fun headers(headers: Headers) =
          apply {
            this.headers = headers.newBuilder()
          }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 13.1K bytes
    - Viewed (1)
  8. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt

            }.toString()
        }
    
        private fun logHeader(
          headers: Headers,
          i: Int,
        ) {
          val value = if (headers.name(i) in headersToRedact) "██" else headers.value(i)
          logger.log(headers.name(i) + ": " + value)
        }
    
        private fun bodyHasUnknownEncoding(headers: Headers): Boolean {
          val contentEncoding = headers["Content-Encoding"] ?: return false
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 14:27:04 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  9. mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt

      public val settings: Settings
    
      public constructor(
        code: Int = 200,
        headers: Headers = headersOf(),
        body: String = "",
      ) : this(
        Builder()
          .code(code)
          .headers(headers)
          .body(body),
      )
    
      private constructor(builder: Builder) {
        this.status = builder.status
        this.headers = builder.headers
        this.trailers = builder.trailers
        this.body = builder.body
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2ExchangeCodec.kt

          for (i in 0 until headers.size) {
            // header names must be lowercase.
            val name = headers.name(i).lowercase(Locale.US)
            if (name !in HTTP_2_SKIPPED_REQUEST_HEADERS ||
              name == TE &&
              headers.value(i) == "trailers"
            ) {
              result.add(Header(name, headers.value(i)))
            }
          }
          return result
        }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Jul 29 21:11:09 UTC 2025
    - 7K bytes
    - Viewed (0)
Back to top