Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,302 for Greater (0.24 sec)

  1. src/container/heap/example_pq_test.go

    	item.priority = priority
    	heap.Fix(pq, item.index)
    }
    
    // This example creates a PriorityQueue with some items, adds and manipulates an item,
    // and then removes the items in priority order.
    func Example_priorityQueue() {
    	// Some items and their priorities.
    	items := map[string]int{
    		"banana": 3, "apple": 2, "pear": 4,
    	}
    
    	// Create a priority queue, put the items in it, and
    	// establish the priority queue (heap) invariants.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:27:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. docs/ko/docs/tutorial/path-params-numeric-validations.md

    ```
    
    ## 숫자 검증: 부동소수, 크거나 및 작거나
    
    숫자 검증은 `float` 값에도 동작합니다.
    
    여기에서 <abbr title="greater than or equal"><code>ge</code></abbr>뿐만 아니라 <abbr title="greater than"><code>gt</code></abbr>를 선언 할 수있는 것이 중요해집니다. 예를 들어 필요한 경우, 값이 `1`보다 작더라도 반드시 `0`보다 커야합니다.
    
    즉, `0.5`는 유효한 값입니다. 그러나 `0.0` 또는 `0`은 그렇지 않습니다.
    
    <abbr title="less than"><code>lt</code></abbr> 역시 마찬가지입니다.
    
    ```Python hl_lines="11"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/vcs/discovery.go

    	"strings"
    )
    
    // charsetReader returns a reader that converts from the given charset to UTF-8.
    // Currently it only supports UTF-8 and ASCII. Otherwise, it returns a meaningful
    // error which is printed by go get, so the user can find why the package
    // wasn't downloaded if the encoding is not supported. Note that, in
    // order to reduce potential errors, ASCII is treated as UTF-8 (i.e. characters
    // greater than 0x7f are not rejected).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 18:14:49 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  4. src/runtime/time_fake.go

    	// Write with the playback header.
    
    	// First, lock to avoid interleaving writes.
    	lock(&faketimeState.lock)
    
    	// If the current fd doesn't match the fd of the previous write,
    	// ensure that the timestamp is strictly greater. That way, we can
    	// recover the original order even if we read the fds separately.
    	t := faketimeState.lastfaketime
    	if fd != faketimeState.lastfd {
    		t++
    		faketimeState.lastfd = fd
    	}
    	if faketime > t {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:15:13 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/interfaces.go

    	// By default, an annotation gets logged into audit event if the request's audit level is greater or
    	// equal to Metadata.
    	AddAnnotation(key, value string) error
    
    	// AddAnnotationWithLevel sets annotation according to key-value pair with additional intended audit level.
    	// An Annotation gets logged into audit event if the request's audit level is greater or equal to the
    	// intended audit level.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 28 14:03:18 UTC 2021
    - 8K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/hpacontroller.go

    	if o == nil {
    		return nil
    	}
    
    	errs := []error{}
    	if o.ConcurrentHorizontalPodAutoscalerSyncs < 1 {
    		errs = append(errs, fmt.Errorf("concurrent-horizontal-pod-autoscaler-syncs must be greater than 0, but got %d", o.ConcurrentHorizontalPodAutoscalerSyncs))
    	}
    	return errs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. pkg/kubelet/pleg/pleg.go

    type PodLifeCycleEventType string
    
    type RelistDuration struct {
    	// The period for relisting.
    	RelistPeriod time.Duration
    	// The relisting threshold needs to be greater than the relisting period +
    	// the relisting time, which can vary significantly. Set a conservative
    	// threshold to avoid flipping between healthy and unhealthy.
    	RelistThreshold time.Duration
    }
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 16:14:26 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/options/attachdetachcontroller.go

    	if o == nil {
    		return nil
    	}
    
    	errs := []error{}
    
    	if o.ReconcilerSyncLoopPeriod.Duration < time.Second {
    		errs = append(errs, fmt.Errorf("duration time must be greater than one second as set via command line option reconcile-sync-loop-period"))
    	}
    
    	return errs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/version/helpers_test.go

    	}
    
    	for _, tc := range tests {
    		if e, a := tc.expectedGreater, CompareKubeAwareVersionStrings(tc.v1, tc.v2) > 0; e != a {
    			if e {
    				t.Errorf("expected %s to be greater than %s", tc.v1, tc.v2)
    			} else {
    				t.Errorf("expected %s to be less than %s", tc.v1, tc.v2)
    			}
    		}
    	}
    }
    
    func Test_parseKubeVersion(t *testing.T) {
    	tests := []struct {
    		name             string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 19 02:46:55 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ComparisonChain.java

              return (result < 0) ? LESS : (result > 0) ? GREATER : ACTIVE;
            }
    
            @Override
            public int result() {
              return 0;
            }
          };
    
      private static final ComparisonChain LESS = new InactiveComparisonChain(-1);
    
      private static final ComparisonChain GREATER = new InactiveComparisonChain(1);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 24 17:47:51 UTC 2022
    - 9.3K bytes
    - Viewed (0)
Back to top