Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 373 for DISABLE (0.2 sec)

  1. cluster/gce/config-test.sh

    if [[ "${KUBE_FEATURE_GATES:-}" = 'AllAlpha=true' ]]; then
      RUNTIME_CONFIG=${KUBE_RUNTIME_CONFIG:-api/all=true}
    fi
    
    # By default disable gkenetworkparamset controller in CCM
    RUN_CCM_CONTROLLERS="${RUN_CCM_CONTROLLERS:-*,-gkenetworkparamset}"
    
    # Optional: set feature gates
    # shellcheck disable=SC2034 # Variables sourced in other scripts.
    FEATURE_GATES=${KUBE_FEATURE_GATES:-}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_traffic_policy.go

    }
    
    func applyLoadBalancer(c *cluster.Cluster, lb *networking.LoadBalancerSettings, port *model.Port,
    	locality *core.Locality, proxyLabels map[string]string, meshConfig *meshconfig.MeshConfig,
    ) {
    	// Disable panic threshold when SendUnhealthyEndpoints is enabled as enabling it "may" send traffic to unready
    	// end points when load balancer is in panic mode.
    	if features.SendUnhealthyEndpoints.Load() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. src/runtime/os_linux.go

    		mp.profileTimer = 0
    
    		ret := timer_delete(timerid)
    		if ret != 0 {
    			print("runtime: failed to disable profiling timer; timer_delete(", timerid, ") errno=", -ret, "\n")
    			throw("timer_delete")
    		}
    	}
    
    	if hz == 0 {
    		// If the goal was to disable profiling for this thread, then the job's done.
    		return
    	}
    
    	// The period of the timer should be 1/Hz. For every "1/Hz" of additional
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. hack/lib/util.sh

          new_cmd="${trap_add_cmd};${existing_cmd}"
        fi
    
        # Assign the test. Disable the shellcheck warning telling that trap
        # commands should be single quoted to avoid evaluating them at this
        # point instead evaluating them at run time. The logic of adding new
        # commands to a single trap requires them to be evaluated right away.
        # shellcheck disable=SC2064
        trap "${new_cmd}" "${trap_add_name}"
      done
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

         */
        @Deprecated
        GradleExecuter expectDeprecationWarnings(int count);
    
        /**
         * Disable deprecation warning checks.
         */
        GradleExecuter noDeprecationChecks();
    
        /**
         * Disable crash daemon checks
         */
        GradleExecuter noDaemonCrashChecks();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. gorm.go

    const preparedStmtDBKey = "preparedStmt"
    
    // Config GORM config
    type Config struct {
    	// GORM perform single create, update, delete operations in transactions by default to ensure database data integrity
    	// You can disable it by setting `SkipDefaultTransaction` to true
    	SkipDefaultTransaction bool
    	// NamingStrategy tables, columns naming strategy
    	NamingStrategy schema.Namer
    	// FullSaveAssociations full save associations
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Aug 20 11:46:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

        public static final GString COMMON_HINT = """${new DocumentationRegistry().getDocumentationRecommendationFor("information on how to set these values", "build_environment", "sec:configuring_jvm_memory")}
    To disable this warning, set 'org.gradle.daemon.performance.disable-logging=true'."""
        GarbageCollectorUnderTest garbageCollector
    
        def setup() {
            garbageCollector = version
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

            }
    
            if (annotationProcessingConfigured) {
                throw new InvalidUserDataException("Enabling incremental compilation and configuring Java annotation processors for Groovy compilation is not allowed. Disable incremental Groovy compilation or remove the Java annotation processor configuration.");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. src/cmd/dist/buildtool.go

    	os.Setenv("GOARCH", "")
    	os.Setenv("GOHOSTARCH", "")
    
    	// Run Go bootstrap to build binaries.
    	// Use the math_big_pure_go build tag to disable the assembly in math/big
    	// which may contain unsupported instructions.
    	// Use the purego build tag to disable other assembly code,
    	// such as in cmd/internal/notsha256.
    	cmd := []string{
    		pathf("%s/bin/go", goroot_bootstrap),
    		"install",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. pkg/log/config.go

    	"go.uber.org/zap"
    	"go.uber.org/zap/zapcore"
    	"go.uber.org/zap/zapgrpc"
    	"google.golang.org/grpc/grpclog"
    	"gopkg.in/natefinch/lumberjack.v2"
    	"k8s.io/klog/v2"
    )
    
    const (
    	// none is used to disable logging output as well as to disable stack tracing.
    	none          zapcore.Level = 100
    	GrpcScopeName string        = "grpc"
    )
    
    var levelToZap = map[Level]zapcore.Level{
    	DebugLevel: zapcore.DebugLevel,
    	InfoLevel:  zapcore.InfoLevel,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top