Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 531 for easy (0.06 sec)

  1. releasenotes/notes/external-name.yaml

          * Ports not declared as `HTTP` would match *all* traffic on that port, making it easy to accidentally send all traffic on a port to the wrong place.
          * Because the destination DNS name is treated as opaque, we cannot apply Istio policies to it as expected. For example, if I point
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

     *
     * <p>The API of this class is designed to make it easy to achieve the following properties
     *
     * <ul>
     *   <li>Multiple events for the same listener are never dispatched concurrently.
     *   <li>Events for the different listeners are dispatched concurrently.
     *   <li>All events for a given listener dispatch on the provided {@link #executor}.
     *   <li>It is easy for the user to ensure that listeners are never invoked while holding locks.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. cmd/kubelet/app/plugins.go

    	"k8s.io/kubernetes/pkg/volume/local"
    	"k8s.io/kubernetes/pkg/volume/nfs"
    	"k8s.io/kubernetes/pkg/volume/projected"
    	"k8s.io/kubernetes/pkg/volume/secret"
    )
    
    // ProbeVolumePlugins collects all volume plugins into an easy to use list.
    func ProbeVolumePlugins(featureGate featuregate.FeatureGate) ([]volume.VolumePlugin, error) {
    	allPlugins := []volume.VolumePlugin{}
    
    	// The list of plugins to probe is decided by the kubelet binary, not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    //
    // An Analyzer may return a variety of diagnostics; the optional Category,
    // which should be a constant, may be used to classify them.
    // It is primarily intended to make it easy to look up documentation.
    //
    // All Pos values are interpreted relative to Pass.Fset. If End is
    // provided, the diagnostic is specified to apply to the range between
    // Pos and End.
    type Diagnostic struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/README.md

    this repository, see https://golang.org/doc/contribute.html.
    
    The main issue tracker for the time repository is located at
    https://github.com/golang/go/issues. Prefix your issue with "x/telemetry:" in
    the subject line, so it is easy to find.
    
    ### Linting & Formatting
    
    This repository uses [eslint](https://eslint.org/) to format TS files,
    [stylelint](https://stylelint.io/) to format CSS files, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/errors/errors.go

    // then we say that e wraps w. A nil error returned from e.Unwrap()
    // indicates that e does not wrap any error. It is invalid for an
    // Unwrap method to return an []error containing a nil error value.
    //
    // An easy way to create wrapped errors is to call [fmt.Errorf] and apply
    // the %w verb to the error argument:
    //
    //	wrapsErr := fmt.Errorf("... %w ...", ..., err, ...)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 19:45:41 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. src/runtime/cgo/gcc_android.c

    {
    	va_list ap;
    
    	// Write to both stderr and logcat.
    	//
    	// When running from an .apk, /dev/stderr and /dev/stdout
    	// redirect to /dev/null. And when running a test binary
    	// via adb shell, it's easy to miss logcat.
    
    	fprintf(stderr, "runtime/cgo: ");
    	va_start(ap, format);
    	vfprintf(stderr, format, ap);
    	va_end(ap);
    	fprintf(stderr, "\n");
    
    	va_start(ap, format);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 23:17:17 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXGroup.java

        private final LoadingCache<String, PBXGroup> childGroupsByName;
    
        // Unfortunately, we can't determine this at constructor time, because CacheBuilder
        // calls our constructor and it's not easy to pass arguments to it.
        private SortPolicy sortPolicy;
        public PBXGroup(String name, @Nullable String path, SourceTree sourceTree) {
            super(name, path, sourceTree);
    
            sortPolicy = SortPolicy.BY_NAME;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. test/recover1.go

    func mustNotRecover() {
    	v := recover()
    	if v != nil {
    		println("spurious recover")
    		die()
    	}
    }
    
    func withoutRecover() {
    	mustNotRecover()	// because it's a sub-call
    }
    
    func test1() {
    	// Easy nested recursive panic.
    	defer mustRecover(1)
    	defer func() {
    		defer mustRecover(2)
    		panic(2)
    	}()
    	panic(1)
    }
    
    func test2() {
    	// Sequential panic.
    	defer mustNotRecover()
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/scale_int.go

    func scaledValue(unscaled *big.Int, scale, newScale int) int64 {
    	dif := scale - newScale
    	if dif == 0 {
    		return unscaled.Int64()
    	}
    
    	// Handle scale up
    	// This is an easy case, we do not need to care about rounding and overflow.
    	// If any intermediate operation causes overflow, the result will overflow.
    	if dif < 0 {
    		return unscaled.Int64() * int64(math.Pow10(-dif))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 20:41:44 UTC 2017
    - 2.5K bytes
    - Viewed (0)
Back to top