Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,784 for Greater (0.14 sec)

  1. guava/src/com/google/common/graph/BaseGraph.java

       *
       * <p>For undirected graphs, this is equal to {@code incidentEdges(node).size()} + (number of
       * self-loops incident to {@code node}).
       *
       * <p>If the count is greater than {@code Integer.MAX_VALUE}, returns {@code Integer.MAX_VALUE}.
       *
       * @throws IllegalArgumentException if {@code node} is not an element of this graph
       */
      int degree(N node);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/time/tick.go

    // the current time on the channel after each tick. The period of the
    // ticks is specified by the duration argument. The ticker will adjust
    // the time interval or drop ticks to make up for slow receivers.
    // The duration d must be greater than zero; if not, NewTicker will
    // panic.
    //
    // Before Go 1.23, the garbage collector did not recover
    // tickers that had not yet expired or been stopped, so code often
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/pin-ops-with-side-effects.mlir

      %tmp4 = "tfl.while"(%tmp3) (
      {
        // cond
        ^bb0(%arg_cond: tensor<1xf32>):
        %result_cond = tfl.greater(%arg_cond, %const) : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xi1>
        "tfl.yield"(%result_cond) : (tensor<1xi1>) -> ()
      },
      {
        //body
        ^bb0(%arg_body: tensor<1xf32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 10:45:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  4. pkg/kubelet/types/pod_update.go

    }
    
    // SyncPodType classifies pod updates, eg: create, update.
    type SyncPodType int
    
    const (
    	// SyncPodSync is when the pod is synced to ensure desired state
    	SyncPodSync SyncPodType = iota
    	// SyncPodUpdate is when the pod is updated from source
    	SyncPodUpdate
    	// SyncPodCreate is when the pod is created from source
    	SyncPodCreate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/cronjobcontroller.go

    func (o *CronJobControllerOptions) Validate() []error {
    	if o == nil {
    		return nil
    	}
    
    	errs := []error{}
    	if o.ConcurrentCronJobSyncs < 1 {
    		errs = append(errs, fmt.Errorf("concurrent-cron-job-syncs must be greater than 0, but got %d", o.ConcurrentCronJobSyncs))
    	}
    
    	return errs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 10:28:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. pkg/proxy/conntrack/conntrack.go

    }
    
    // ClearEntriesForPort is part of Interface
    func (ct *execCT) ClearEntriesForPort(port int, isIPv6 bool, protocol v1.Protocol) error {
    	if port <= 0 {
    		return fmt.Errorf("wrong port number. The port number must be greater than zero")
    	}
    	parameters := parametersWithFamily(isIPv6, "-D", "-p", protoStr(protocol), "--dport", strconv.Itoa(port))
    	err := ct.exec(parameters...)
    	if err != nil && !strings.Contains(err.Error(), noConnectionToDelete) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/most_allocated.go

    // is almost a reversed version of noderesources.leastRequestedScore.
    func mostRequestedScore(requested, capacity int64) int64 {
    	if capacity == 0 {
    		return 0
    	}
    	if requested > capacity {
    		// `requested` might be greater than `capacity` because pods with no
    		// requests get minimum values.
    		requested = capacity
    	}
    
    	return (requested * framework.MaxNodeScore) / capacity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. src/crypto/subtle/xor_amd64.s

    	JNE   loop_1b
    	SUBQ  $8, DX           // XOR 8bytes backwards.
    	MOVQ  (SI)(DX*1), DI
    	MOVQ  (CX)(DX*1), AX
    	XORQ  AX, DI
    	MOVQ  DI, (BX)(DX*1)
    	CMPQ  DX, $16          // if len is greater or equal 16 here, it must be aligned.
    	JGE   aligned
    
    ret:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 18:14:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/options/jobcontroller.go

    func (o *JobControllerOptions) Validate() []error {
    	if o == nil {
    		return nil
    	}
    
    	errs := []error{}
    	if o.ConcurrentJobSyncs < 1 {
    		errs = append(errs, fmt.Errorf("concurrent-job-syncs must be greater than 0, but got %d", o.ConcurrentJobSyncs))
    	}
    	return errs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 12:19:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/test/groovy/org/gradle/integtests/tooling/fixture/GradleVersionSpecTest.groovy

     */
    
    package org.gradle.integtests.tooling.fixture
    
    import org.gradle.util.GradleVersion
    import spock.lang.Specification
    
    class GradleVersionSpecTest extends Specification {
        def "greater-than-or-equal version constraint matches all versions with specified base version and later"() {
            def spec = new GradleVersionSpec().toSpec(">=1.0")
    
            expect:
            spec.isSatisfiedBy(GradleVersion.version("1.0"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top