Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,741 for setString (0.25 sec)

  1. 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)
  2. tests/fuzz/pilot_model_fuzzer.go

    	}
    	i := protocols[pIndex%len(protocols)]
    	return i, nil
    }
    
    // Creates a new fuzzed Port
    func createPort(f *fuzz.ConsumeFuzzer) (*model.Port, error) {
    	p := &model.Port{}
    	name, err := f.GetString()
    	if err != nil {
    		return p, err
    	}
    	port, err := f.GetInt()
    	if err != nil {
    		return p, err
    	}
    	protocolinstance, err := getProtocolInstance(f)
    	if err != nil {
    		return p, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 18:13:06 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelMapIntegrationTest.groovy

                        println "setStrings: " + $.setStrings.keySet()
                      }
                    }
                  }
                }
            '''
    
            then:
            succeeds "print"
    
            and:
            output.contains "mapThings: []"
            output.contains "setThings: []"
            output.contains "setStrings: []"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXReference.java

            /**
             * Absolute system path.
             */
            ABSOLUTE("<absolute>"),
            /**
             * Relative to the build setting {@code BUILT_PRODUCTS_DIR}.
             */
            BUILT_PRODUCTS_DIR("BUILT_PRODUCTS_DIR"),
    
            /**
             * Relative to the build setting {@code SDKROOT}.
             */
            SDKROOT("SDKROOT"),
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/kubelet/kubelet.go

    		return
    	}
    
    	if !initSystem.ServiceExists(kubeadmconstants.Kubelet) {
    		fmt.Println("[kubelet-start] Couldn't detect a kubelet service, can't make sure the kubelet not running for a short period of time while setting up configuration for it.")
    	}
    
    	// This runs "systemctl daemon-reload && systemctl stop kubelet"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 15 16:01:35 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. docs/bucket/retention/README.md

    - Install `awscli` - [Installing AWS Command Line Interface](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html)
    
    ### 2. Set bucket WORM configuration
    
    WORM on a bucket is enabled by setting object lock configuration. This configuration is applied to all the objects in the bucket. Below is an example to set `Governance` mode and one day retention time on `mybucket`.
    
    ```sh
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.9K 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/cmd/go/testdata/script/cover_main_import_path.txt

    # Build this program with -cover and run to collect a profile.
    
    go build -cover -o $WORK/prog.exe .
    
    # Save off old GOCOVERDIR setting
    env SAVEGOCOVERDIR=$GOCOVERDIR
    
    mkdir $WORK/covdata
    env GOCOVERDIR=$WORK/covdata
    exec $WORK/prog.exe
    
    # Restore previous GOCOVERDIR setting
    env GOCOVERDIR=$SAVEGOCOVERDIR
    
    # Report percent lines covered.
    go tool covdata percent -i=$WORK/covdata
    stdout '\s*mainwithtest\s+coverage:'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. 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)
Back to top