Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 65 for greatest (0.38 sec)

  1. src/net/http/h2_bundle.go

    		return s.group.Now()
    	}
    	return time.Now()
    }
    
    // newTimer creates a new time.Timer, or a synthetic timer in tests.
    func (s *http2Server) newTimer(d time.Duration) http2timer {
    	if s.group != nil {
    		return s.group.NewTimer(d)
    	}
    	return http2timeTimer{time.NewTimer(d)}
    }
    
    // afterFunc creates a new time.AfterFunc timer, or a synthetic timer in tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    lass); private static boolean isAnyIncluded(Class); private static java.util.Set getExcludedCategory(Class); private static boolean isAnyExcluded(Class); private static boolean hasAssignableTo(java.util.Set, Class); private static java.util.Set createSet(Class[]); private static java.util.Set nullableClassToSet(Class); } org/junit/experimental/categories/Categories$IncludeCategory.class package org.junit.experimental.categories; public abstract interface Categories$IncludeCategory extends annotation.Annotation...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    }
    
    // CHECK-LABEL:   func @greater(
    // CHECK-SAME:                  %[[VAL_0:.*]]: tensor<2xi32>,
    // CHECK-SAME:                  %[[VAL_1:.*]]: tensor<2xi32>) -> tensor<2xi1> {
    // CHECK:           %[[VAL_2:.*]] = "tf.Greater"(%[[VAL_0]], %[[VAL_1]]) : (tensor<2xi32>, tensor<2xi32>) -> tensor<2xi1>
    // CHECK:           return %[[VAL_2]] : tensor<2xi1>
    // CHECK:         }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.18.md

    - `kubectl run` has removed the previously deprecated generators, along with flags unrelated to creating pods. `kubectl run` now only creates pods. See specific `kubectl create` subcommands to create objects other than pods. 
    ([#87077](https://github.com/kubernetes/kubernetes/pull/87077), [@soltysh](https://github.com/soltysh)) [SIG Architecture, CLI and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  5. doc/go_spec.html

    </pre>
    
    <p>
    String addition creates a new string by concatenating the operands.
    </p>
    
    <h3 id="Comparison_operators">Comparison operators</h3>
    
    <p>
    Comparison operators compare two operands and yield an untyped boolean value.
    </p>
    
    <pre class="grammar">
    ==    equal
    !=    not equal
    &lt;     less
    &lt;=    less or equal
    &gt;     greater
    &gt;=    greater or equal
    </pre>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.22.md

    cores, or unique hardware devices) could trigger the failure. While this behavior is correct it reduces the throughput of pod execution and creates user-visible warnings - [future versions of Kubernetes will minimize the likelihood users see pod failures due to this issue](https://github.com/kubernetes/kubernetes/issues/106884). In general, any automation that creates pods [must take Kubelet rejections into account](https://kubernetes.io/docs/concepts/scheduling-eviction/#pod-disruption), and should be...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    ### Bug or Regression
    
    - Fixed a regression since 1.27.0 in scheduler framework when running score plugins. 
      The `skippedScorePlugins` number might be greater than `enabledScorePlugins`, 
      so when initializing a slice the cap(len(skippedScorePlugins) - len(enabledScorePlugins)) is negative, 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

    - Fixed a regression since 1.27.0 in scheduler framework when running score plugins. 
      The `skippedScorePlugins` number might be greater than `enabledScorePlugins`, 
      so when initializing a slice the cap(len(skippedScorePlugins) - len(enabledScorePlugins)) is negative, 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    					Type: "object",
    					XValidations: apiextensions.ValidationRules{
    						{
    							Rule:    "self.minReplicas <= self.maxReplicas",
    							Message: "minReplicas should be no greater than maxReplicas",
    						},
    					},
    					Properties: map[string]apiextensions.JSONSchemaProps{
    						"minReplicas": {
    							Type: "integer",
    						},
    						"maxReplicas": {
    							Type: "integer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    							Description: "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.",
    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"jsonPath": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
Back to top