Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 450 for DISABLE (0.34 sec)

  1. cluster/addons/calico-policy-controller/felixconfigurations-crd.yaml

                      value must be one of "DoNothing", "Enabled" or "Disabled". [Default:
                      DoNothing]'
                    enum:
                    - DoNothing
                    - Enable
                    - Disable
                    type: string
                  bpfConnectTimeLoadBalancingEnabled:
                    description: 'BPFConnectTimeLoadBalancingEnabled when in BPF mode,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 29.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    				t.Error(err)
    			}
    			responses.Done()
    		}()
    	}
    	// We wait for all calls to be received by the server
    	calls.Wait()
    	// Disable calls notifications in the server
    	// Disable calls notifications in the server
    	waitForCallsMutex.Lock()
    	waitForCalls = false
    	waitForCallsMutex.Unlock()
    
    	// Do this multiple times to show that rate limit rejected requests don't block.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

            }
        }
    
        @Nullable
        public static <T> T whileDisabled(Factory<T> factory) {
            disable();
            try {
                return factory.create();
            } finally {
                maybeEnable();
            }
        }
    
        public static void whileDisabled(Runnable action) {
            disable();
            try {
                action.run();
            } finally {
                maybeEnable();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tfr/python/tfr_gen_test.py

      (z0, z1, z2, z3, z4, z5, z6, z7, z8)  # pylint: disable=pointless-statement
    
      # float
      z9 = x1 > y1
      z10 = x1 + y1
      z11 = [x1, y1]
      (z9, z10, z11)  # pylint: disable=pointless-statement
      return
    
    
    @composite.Composite('TestNonNumAttrsOp')
    def _tfr_attrs_tfr_type(x, y, z):
      z1 = x == y
      z2 = x == 'test'
      z3 = y == z
      (z1, z2, z3)  # pylint: disable=pointless-statement
      return
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 28.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top