Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 981 for setString (0.15 sec)

  1. src/runtime/debug/garbage.go

    // to live data remaining after the previous collection reaches this percentage.
    // SetGCPercent returns the previous setting.
    // The initial setting is the value of the GOGC environment variable
    // at startup, or 100 if the variable is not set.
    // This setting may be effectively reduced in order to maintain a memory
    // limit.
    // A negative percentage effectively disables garbage collection, unless
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. internal/config/browser/browser.go

    )
    
    // Browser sub-system constants
    const (
    	// browserCSPPolicy setting name for Content-Security-Policy response header value
    	browserCSPPolicy = "csp_policy"
    	// browserHSTSSeconds setting name for Strict-Transport-Security response header, amount of seconds for 'max-age'
    	browserHSTSSeconds = "hsts_seconds"
    	// browserHSTSIncludeSubdomains setting name for Strict-Transport-Security response header 'includeSubDomains' flag (true or false)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/project_properties.adoc

    Both of the following will set the `foo` property on your Project object to `"bar"`.
    
    *Example 2:* Setting a project property via a *system property*:
    ====
    ----
    org.gradle.project.foo=bar
    ----
    ====
    
    *Example 3:* Setting a project property via an *environment variable*:
    ====
    ----
    ORG_GRADLE_PROJECT_foo=bar
    ----
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:46:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. docs/logging/README.md

    MINIO_AUDIT_KAFKA_COMMENT          (sentence)  optionally add a comment to this setting
    ```
    
    ```
    export MINIO_AUDIT_KAFKA_ENABLE_target1="on"
    export MINIO_AUDIT_KAFKA_BROKERS_target1="localhost:29092"
    export MINIO_AUDIT_KAFKA_TOPIC_target1="auditlog"
    minio server /mnt/data
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/it/CrudTestBase.java

            for (Map<String, Object> setting : settings) {
                final Map<String, Object> requestBody = new HashMap<>(updateMap);
                requestBody.put("version_no", 1);
                final String idKey = getIdKey();
                if (setting.containsKey(idKey)) {
                    requestBody.put(idKey, setting.get(idKey));
                }
                for (String key : keySet) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Settings.kt

        set = set or bit
        values[id] = value
        return this
      }
    
      /** Returns true if a value has been assigned for the setting `id`. */
      fun isSet(id: Int): Boolean {
        val bit = 1 shl id
        return set and bit != 0
      }
    
      /** Returns the value for the setting `id`, or 0 if unset. */
      operator fun get(id: Int): Int = values[id]
    
      /** Returns the number of settings that have values assigned. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/admin/WebAuthTests.java

        private static final String API_PATH = "/api/admin/webauth";
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        private static final String KEY_PROPERTY = "username";
    
        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
        @Override
        protected String getApiPath() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/internal/godebug/godebug_test.go

    	"os"
    	"os/exec"
    	"reflect"
    	"runtime/metrics"
    	"slices"
    	"strings"
    	"testing"
    )
    
    func TestGet(t *testing.T) {
    	foo := New("#foo")
    	tests := []struct {
    		godebug string
    		setting *Setting
    		want    string
    	}{
    		{"", New("#"), ""},
    		{"", foo, ""},
    		{"foo=bar", foo, "bar"},
    		{"foo=bar,after=x", foo, "bar"},
    		{"before=x,foo=bar,after=x", foo, "bar"},
    		{"before=x,foo=bar", foo, "bar"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/it/admin/ReqHeaderTests.java

        private static final String API_PATH = "/api/admin/reqheader";
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        private static final String KEY_PROPERTY = "name";
    
        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
        @Override
        protected String getApiPath() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/property/groovy/build.gradle

    plugins {
        id 'groovy'
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::set-prop[]
    // Setting a property
    def simpleMessageProperty = project.objects.property(String)
    simpleMessageProperty.set("Hello, World from a Property!")
    // Accessing a property
    println(simpleMessageProperty.get())
    // end::set-prop[]
    
    // tag::set-prov[]
    // Setting a provider
    def simpleMessageProvider = project.providers.provider { "Hello, World from a Provider!" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top