Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,472 for itable (0.17 sec)

  1. releasenotes/notes/disable-host-header-fallback.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    releaseNotes:
    - |
      **Updated** Prometheus telemetry behavior for inbound traffic to disable host header fallback by default. This will
      prevent traffic coming from out-of-mesh locations from potential polluting the `destination_service` dimension in
      metrics with junk data (and exploding metrics cardinality). With this change, it is possible that users relying on
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 22 19:40:45 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. cluster/gce/windows/node-helper.sh

      # https://github.com/kubernetes/kubernetes/issues/75561.
      metadata+="disable-address-manager=true,"
      metadata+="serial-port-enable=1,"
      # This enables logging the serial port output.
      # https://cloud.google.com/compute/docs/instances/viewing-serial-port-output
      metadata+="serial-port-logging-enable=true,"
      metadata+="win-version=${WINDOWS_NODE_OS_DISTRIBUTION}"
      echo "${metadata}"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 03 10:20:06 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  3. common/config/.golangci.yml

          - prefix(istio.io/) # Groups all imports with the specified Prefix.
      gocritic:
        # Disable all checks.
        # Default: false
        disable-all: true
        # Which checks should be enabled in addition to default checks. Since we don't want
        # all of the default checks, we do the disable-all first.
        enabled-checks:
          - appendCombine
          - argOrder
          - assignOp
          - badCond
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. cluster/get-kube.sh

        echo "Bailing out." >&2
        exit 3
        ;;
    esac
    
    file=kubernetes.tar.gz
    release=${KUBERNETES_RELEASE:-"release/stable"}
    
    # Validate Kubernetes release version.
    # Translate a published version <bucket>/<version> (e.g. "release/stable") to version number.
    set_binary_version "${release}"
    if [[ -z "${KUBERNETES_SKIP_RELEASE_VALIDATION-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Sterling Greene <******@****.***> 1717795469 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheConfigurationIntegrationTest.groovy

            """
    
            buildFile << customTaskCode()
    
            expect:
            executer.withBuildCacheEnabled()
            succeeds("customTask")
            !localBuildCache.empty
        }
    
        def "can enable with settings.gradle"() {
            settingsFile << """
                gradle.startParameter.buildCacheEnabled = true
                buildCache {
                    local {
                        directory = '$cacheDir'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 19 20:09:35 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  7. src/syscall/mksysnum_freebsd.pl

    		}
    		if($name =~ /^SYS_CAP_+/ || $name =~ /^SYS___CAP_+/){
    			next
    		}
    
    		print "	$name = $num;  // $proto\n";
    
    		# We keep Capsicum syscall numbers for FreeBSD
    		# 9-STABLE here because we are not sure whether they
    		# are mature and stable.
    		if($num == 513){
    			print " SYS_CAP_NEW = 514 // { int cap_new(int fd, uint64_t rights); }\n";
    			print " SYS_CAP_GETRIGHTS = 515 // { int cap_getrights(int fd, \\\n";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/DefaultFeatureFlags.java

                // Can explicitly disable property using system property
                Option.Value<Boolean> option = options.getOption(new InternalFlag(flag.getSystemPropertyName()));
                if (option.isExplicit() || option.get()) {
                    return option.get();
                }
            }
            return enabled.contains(flag);
        }
    
        @Override
        public void enable(FeatureFlag flag) {
            enabled.add(flag);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. build/run.sh

    if [[ ${KUBE_RUN_COPY_OUTPUT} =~ ^[yY]$ ]]; then
      kube::log::status "Output from this container will be rsynced out upon completion. Set KUBE_RUN_COPY_OUTPUT=n to disable."
    else
      kube::log::status "Output from this container will NOT be rsynced out upon completion. Set KUBE_RUN_COPY_OUTPUT=y to enable."
    fi
    
    kube::build::run_build_command "$@"
    
    if [[ ${KUBE_RUN_COPY_OUTPUT} =~ ^[yY]$ ]]; then
      kube::build::copy_output
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:25:52 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/options/admission_test.go

    	// 1. Both `--admission-control` and `--enable-admission-plugins` are specified
    	options := NewAdmissionOptions()
    	options.PluginNames = []string{"ServiceAccount"}
    	options.GenericAdmission.EnablePlugins = []string{"NodeRestriction"}
    	if len(options.Validate()) == 0 {
    		t.Errorf("Expect error, but got none")
    	}
    
    	// 2. Both `--admission-control` and `--disable-admission-plugins` are specified
    	options = NewAdmissionOptions()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 15 01:51:35 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top