Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 373 for DISABLE (0.11 sec)

  1. cluster/gce/gci/configure.sh

    function get-credentials {
      # shellcheck disable=SC2086
      curl ${CURL_FLAGS} \
        -H "Metadata-Flavor: Google" \
        "${GCE_METADATA_INTERNAL}/service-accounts/default/token" \
      | python3 -c 'import sys; import json; print(json.loads(sys.stdin.read())["access_token"])'
    }
    
    function valid-storage-scope {
      # shellcheck disable=SC2086
      curl ${CURL_FLAGS} \
        -H "Metadata-Flavor: Google" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/init_test.go

    		},
    		{
    			name: "disable proxy if 'addon/kube-proxy' is in skipPhases",
    			cfg:  &kubeadmapi.ClusterConfiguration{},
    			expectedCfg: &kubeadmapi.ClusterConfiguration{
    				Proxy: kubeadmapi.Proxy{
    					Disabled: true,
    				},
    			},
    			skipPhases:         []string{"addon/kube-proxy"},
    			expectedSkipPhases: []string{"addon/kube-proxy"},
    		},
    		{
    			name: "disable DNS if 'addon/coredns' is in skipPhases",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. tests/integration/security/reachability_test.go

    						config.File("testdata/reachability/global-dr.yaml.tmpl"),
    					}.WithParams(param.Params{
    						mtlsModeParam:            model.MTLSDisable.String(),
    						tlsModeParam:             "DISABLE",
    						param.Namespace.String(): systemNS,
    					}),
    					fromMatch:          notMigration,
    					toMatch:            notMigration,
    					expectMTLS:         never,
    					expectCrossCluster: notFromNaked,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

    --prefix=/usr --includedir='/usr/include' --mandir='/usr/share/man' --infodir='/usr/share/info' --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir='/usr/lib/x86_64-linux-gnu' --libexecdir='/usr/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --prefix=/usr --enable-shared --enable-static --disable-multilib --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --libdir=/usr/lib --enable-libstdcxx-time=yes --with-tune=generic...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. cluster/common.sh

        # ca_cert and ca_key are optional external vars supplied in cluster/gce/util.sh,
        # so it's ok to disable shellcheck here
        # shellcheck disable=SC2154
        echo "${ca_cert}" | base64 --decode | gunzip > ca.pem
        # shellcheck disable=SC2154
        echo "${ca_key}" | base64 --decode > ca-key.pem
      fi
    
      if [[ ! -r "ca.pem" || ! -r "ca-key.pem" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	// By default, Search looks for a minimal set of changes that cause a failure when enabled.
    	// If Disable is true, the search is inverted and seeks a minimal set of changes that
    	// cause a failure when disabled. In this case, the search proceeds as normal except that
    	// each pattern starts with a !.
    	Disable bool
    
    	// SkipDigits is the number of hex digits to use in skip messages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/passes.td

          Option<"disable_per_channel_", "disable-per-channel", "bool", "false",
                 "Whether disable per-channel quantized weights.">,
          Option<"disable_set_input_nodes_quantization_params_",
                 "disable-set-input-nodes-quantization-params",
                 "bool", "false",
                 "Whether disable set input nodes quantization parameters.">,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/main.go

    	FlagD             = flag.Bool("d", false, "disable dynamic executable")
    	flagF             = flag.Bool("f", false, "ignore version mismatch")
    	flagG             = flag.Bool("g", false, "disable go package data checks")
    	flagH             = flag.Bool("h", false, "halt on error")
    	flagN             = flag.Bool("n", false, "no-op (deprecated)")
    	FlagS             = flag.Bool("s", false, "disable symbol table")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

            # shellcheck disable=SC2039,SC3045
            MAX_FD=\$( ulimit -H -n ) ||
                warn "Could not query maximum file descriptor limit"
        esac
        case \$MAX_FD in  #(
          '' | soft) :;; #(
          *)
            # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
            # shellcheck disable=SC2039,SC3045
            ulimit -n "\$MAX_FD" ||
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultPropertyTest.groovy

            e.message == 'Cannot get the value of a property of type java.lang.Boolean as the provider associated with this property returned a value of type java.lang.Integer.'
        }
    
        def "can set null convention value to disable convention"() {
            def property = propertyWithDefaultValue(Number)
    
            given:
            property.convention(13)
    
            expect:
            property.present
            property.get() == 13
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top