Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 256 for decreasing (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/webhook/webhook.go

    	}
    
    	return &GenericWebhook{restClient, retryBackoff, DefaultShouldRetry}, nil
    }
    
    // WithExponentialBackoff will retry webhookFn() as specified by the given backoff parameters with exponentially
    // increasing backoff when it returns an error for which this GenericWebhook's ShouldRetry function returns true,
    // confirming it to be retriable. If no ShouldRetry has been defined for the webhook,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 19:02:55 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. src/slices/sort.go

    	return i, i < n && (x[i] == target || (isNaN(x[i]) && isNaN(target)))
    }
    
    // BinarySearchFunc works like [BinarySearch], but uses a custom comparison
    // function. The slice must be sorted in increasing order, where "increasing"
    // is defined by cmp. cmp should return 0 if the slice element matches
    // the target, a negative number if the slice element precedes the target,
    // or a positive number if the slice element follows the target.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:54:41 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. pkg/kubelet/util/manager/watch_based_manager.go

    		&cache.ListWatch{ListFunc: listFunc, WatchFunc: watchFunc},
    		c.newObject(),
    		store,
    		cache.ReflectorOptions{
    			Name: fmt.Sprintf("object-%q/%q", namespace, name),
    			// Bump default 5m MinWatchTimeout to avoid recreating
    			// watches too often.
    			MinWatchTimeout: 30 * time.Minute,
    		},
    	)
    	item := &objectCacheItem{
    		refMap:    make(map[types.UID]int),
    		store:     store,
    		reflector: reflector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    	}
    
    	// since Priorities should range from 0 (highest) to N (lowest) without skipping.
    	// 2. adjust the priorities in order
    	// 2.1 sort all priorities in increasing order.
    	priorities := []int{}
    	for priority := range priorityMap {
    		priorities = append(priorities, priority)
    	}
    	sort.Ints(priorities)
    	// 2.2 adjust LocalityLbEndpoints priority
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/VariantNameBuilder.java

     * from the names of the configurations. The set of names for these configurations is relatively limited, so we cache
     * the generated names to avoid recreating multiple times.
     */
    public class VariantNameBuilder {
        private final Map<List<String>, DisplayName> names = new HashMap<>();
    
        @Nullable
        public DisplayName getVariantName(@Nullable List<String> parts) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. src/log/slog/example_level_handler_test.go

    	return h.handler
    }
    
    // This example shows how to Use a LevelHandler to change the level of an
    // existing Handler while preserving its other behavior.
    //
    // This example demonstrates increasing the log level to reduce a logger's
    // output.
    //
    // Another typical use would be to decrease the log level (to LevelDebug, say)
    // during a part of the program that was suspected of containing a bug.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:32:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. test/chan/select5.go

    var dummy = make(chan int)
    var m = make(map[int]int)
    var order = 0
    
    func f(p *int) *int {
    	return p
    }
    
    // check order of operations by ensuring that
    // successive calls to checkorder have increasing o values.
    func checkorder(o int) {
    	if o <= order {
    		println("invalid order", o, "after", order)
    		panic("order")
    	}
    	order = o
    }
    
    func fc(c chan int, o int) chan int {
    	checkorder(o)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10K bytes
    - Viewed (0)
  8. releasenotes/notes/protocol-detection-timeout.yaml

        a detection timeout. However, we found this caused frequent telemetry and traffic failures during slow connections, while increasing latency
        for misconfigured server first protocols rather than failing fast.
    
        This timeout has been disabled by default. This has the following impacts:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:53:45 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/impl/string.h

    // This is defined in the `iostream.cc` file in this directory. It is not
    // defined inline here because the `iosfwd` header does not provide enough
    // functionality (in Windows), and we don't want to include `iostream` to avoid
    // increasing the binary size.
    std::ostream& operator<<(std::ostream& o, const String& str);
    
    }  // namespace impl
    }  // namespace libtf
    }  // namespace tf
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 30 17:28:28 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/language/coverage.go

    // - Set of common tags defined in this package.
    
    type allSubtags struct{}
    
    // Regions returns the list of supported regions. As all regions are in a
    // consecutive range, it simply returns a slice of numbers in increasing order.
    // The "undefined" region is not returned.
    func (s allSubtags) Regions() []Region {
    	reg := make([]Region, language.NumRegions)
    	for i := range reg {
    		reg[i] = Region{language.Region(i + 1)}
    	}
    	return reg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top