Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 209 for vflag (1.6 sec)

  1. pilot/pkg/features/experimental.go

    		false,
    		"If enabled, Pilot will include unhealthy endpoints in EDS pushes and even if they are sent Envoy does not use them for load balancing."+
    			"  To avoid, sending traffic to non ready endpoints, enabling this flag, disables panic threshold in Envoy i.e. Envoy does not load balance requests"+
    			" to unhealthy/non-ready hosts even if the percentage of healthy hosts fall below minimum health percentage(panic threshold).",
    	).Get())
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. internal/http/headers.go

    	AmzChecksumSHA1   = "x-amz-checksum-sha1"
    	AmzChecksumSHA256 = "x-amz-checksum-sha256"
    	AmzChecksumMode   = "x-amz-checksum-mode"
    
    	// Delete special flag to force delete a bucket or a prefix
    	MinIOForceDelete = "x-minio-force-delete"
    
    	// Create special flag to force create a bucket
    	MinIOForceCreate = "x-minio-force-create"
    
    	// Header indicates if the mtime should be preserved by client
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/os/signal/doc.go

    If the non-Go code called by the Go program does not change any signal
    handlers or masks, then the behavior is the same as for a pure Go
    program.
    
    If the non-Go code installs any signal handlers, it must use the
    SA_ONSTACK flag with sigaction. Failing to do so is likely to cause
    the program to crash if the signal is received. Go programs routinely
    run with a limited stack, and therefore set up an alternate signal
    stack.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. hack/tools/go.mod

    	github.com/curioswitch/go-reassign v0.2.0 // indirect
    	github.com/daixiang0/gci v0.12.1 // indirect
    	github.com/davecgh/go-spew v1.1.1 // indirect
    	github.com/denis-tingaikin/go-header v0.4.3 // indirect
    	github.com/dnephin/pflag v1.0.7 // indirect
    	github.com/esimonov/ifshort v1.0.4 // indirect
    	github.com/ettle/strcase v0.2.0 // indirect
    	github.com/fatih/color v1.16.0 // indirect
    	github.com/fatih/structtag v1.2.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/fmt/print.go

    	Width() (wid int, ok bool)
    	// Precision returns the value of the precision option and whether it has been set.
    	Precision() (prec int, ok bool)
    
    	// Flag reports whether the flag c, a character, has been set.
    	Flag(c int) bool
    }
    
    // Formatter is implemented by any value that has a Format method.
    // The implementation controls how [State] and rune are interpreted,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/validation/validation.go

    	}
    
    	if localFeatureGate.Enabled(features.MemoryQoS) && kc.MemoryThrottlingFactor == nil {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: memoryThrottlingFactor is required when MemoryQoS feature flag is enabled"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

     * finalization to happen. However, a call to {@code System.gc()} is specified to be no more than a
     * hint, so this technique may fail at the whim of the JDK implementation, for example if a user
     * specified the JVM flag {@code -XX:+DisableExplicitGC}. But in practice, it works very well for
     * ordinary tests.
     *
     * <p>Failure of the expected event to occur within an implementation-defined "reasonable" time
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    .Setting Java release flag
    ====
    include::sample[dir="snippets/java/basic/kotlin",files="build.gradle.kts[tags=java-release-flag]"]
    include::sample[dir="snippets/java/basic/groovy",files="build.gradle[tags=java-release-flag]"]
    ====
    
    The release flag provides guarantees similar to toolchains.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  9. go.mod

    	github.com/prometheus/client_golang v1.19.0
    	github.com/prometheus/client_model v0.6.0
    	github.com/prometheus/common v0.48.0
    	github.com/robfig/cron/v3 v3.0.1
    	github.com/spf13/cobra v1.8.0
    	github.com/spf13/pflag v1.0.5
    	github.com/stretchr/testify v1.8.4
    	github.com/vishvananda/netlink v1.1.0
    	github.com/vishvananda/netns v0.0.4
    	go.etcd.io/etcd/api/v3 v3.5.13
    	go.etcd.io/etcd/client/pkg/v3 v3.5.13
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/DefaultGradleRunner.java

            }
            return this;
        }
    
        @Override
        public boolean isDebug() {
            return debug;
        }
    
        @Override
        public GradleRunner withDebug(boolean flag) {
            this.debug = flag;
            return this;
        }
    
        @Override
        public Map<String, String> getEnvironment() {
            return environment;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top