Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 565 for setString (0.23 sec)

  1. cmd/veeam-sos-api.go

    //     that gets offloaded). The same registry key setting overwrites the storage-defined setting.
    //     Optional value, default 64, range: 1-unlimited
    //
    //   - <S3MultiObjectDeleteLimit>
    //     Some of the Veeam products use Multi Delete operations. This setting can reduce how many objects are included in one
    //     multi-delete operation. The same registry key setting overwrites the storage-defined setting.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/runtime/metrics/doc.go

    	/godebug/non-default-behavior/gocachehash:events
    		The number of non-default behaviors executed by the cmd/go
    		package due to a non-default GODEBUG=gocachehash=... setting.
    
    	/godebug/non-default-behavior/gocachetest:events
    		The number of non-default behaviors executed by the cmd/go
    		package due to a non-default GODEBUG=gocachetest=... setting.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. src/internal/godebugs/table.go

    package godebugs
    
    // An Info describes a single known GODEBUG setting.
    type Info struct {
    	Name    string // name of the setting ("panicnil")
    	Package string // package that uses the setting ("runtime")
    	Changed int    // minor version when default changed, if any; 21 means Go 1.21
    	Old     string // value that restores behavior prior to Changed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. doc/next/6-stdlib/99-minor/path/filepath/63703.md

    which was a source of many inconsistencies and bugs.
    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Previous versions default to `winsymlink=0`.
    
    On Windows, [EvalSymlinks] no longer tries to normalize
    volumes to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    For Go 1.23, it defaults to `winreadlinkvolume=1`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 545 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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