Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for Positive (0.3 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVHZreg y:(ANDconst [c] _)) && uint64(c) <= 0xFFFF => y
    (MOVWZreg y:(ANDconst [c] _)) && uint64(c) <= 0xFFFFFFFF => y
    (MOVWZreg y:(AND (MOVDconst [c]) _)) && uint64(c) <= 0xFFFFFFFF => y
    
    // sign extend of small-positive and => small-positive-and
    (MOVBreg y:(ANDconst [c] _)) && uint64(c) <= 0x7F => y
    (MOVHreg y:(ANDconst [c] _)) && uint64(c) <= 0x7FFF => y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            Preconditions.checkState(expectedGenericDeprecationWarnings == 0, "expected deprecation count is already set for this execution");
            Preconditions.checkArgument(count > 0, "expected deprecation count must be positive");
            expectedGenericDeprecationWarnings = count;
            return this;
        }
    
        @Override
        public GradleExecuter expectDeprecationWarning(ExpectedDeprecationWarning warning) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

         *
         * @param first the first version.
         * @param second the second version.
         * @return negative if the first version is newer than the second version, zero if they are the same or positive if
         * the second version is the newer.
         */
        private static int compareModelVersions(String first, String second) {
            // we use a dedicated comparator because we control our model version scheme.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    	set2.Name = "foo2"
    	pod := newStatefulSetPod(set, 1)
    	if !isMemberOf(set, pod) {
    		t.Error("isMemberOf returned false negative")
    	}
    	if isMemberOf(set2, pod) {
    		t.Error("isMemberOf returned false positive")
    	}
    }
    
    func TestIdentityMatches(t *testing.T) {
    	set := newStatefulSet(3)
    	pod := newStatefulSetPod(set, 1)
    	if !identityMatches(set, pod) {
    		t.Error("Newly created Pod has a bad identity")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         *
         * 1024 by default.
         */
        fun minWebSocketMessageToCompress(bytes: Long) =
          apply {
            require(bytes >= 0) {
              "minWebSocketMessageToCompress must be positive: $bytes"
            }
    
            this.minWebSocketMessageToCompress = bytes
          }
    
        fun build(): OkHttpClient = OkHttpClient(this)
      }
    
      companion object {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_attacher_test.go

    		createPV        bool
    		stageUnstageSet bool
    		shouldFail      bool
    		watchTimeout    time.Duration
    		exitError       error
    		unsetClient     bool
    	}{
    		// PV agnostic path positive test cases
    		{
    			testName:        "success, json file exists",
    			volID:           "project/zone/test-vol1",
    			deviceMountPath: "plugins/csi/" + generateSha("project/zone/test-vol1") + "/globalmount",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

         *
         * @param first the first version.
         * @param second the second version.
         * @return negative if the first version is newer than the second version, zero if they are the same or positive if
         * the second version is the newer.
         */
        private static int compareModelVersions(String first, String second) {
            // we use a dedicated comparator because we control our model version scheme.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/CacheBuilder.java

        checkNotNull(unit);
        checkState(refreshNanos == UNSET_INT, "refresh was already set to %s ns", refreshNanos);
        checkArgument(duration > 0, "duration must be positive: %s %s", duration, unit);
        this.refreshNanos = unit.toNanos(duration);
        return this;
      }
    
      @SuppressWarnings("GoodTime") // nanos internally, should be Duration
      long getRefreshNanos() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		// Here be dragons:
    		// Since the etcd feature checker needs to check all members
    		// to determine whether a given feature is supported,
    		// we may receive a positive response even if the feature is not supported.
    		//
    		// In this very rare scenario, the worst case will be that this
    		// request will wait for 3 seconds before it fails.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/xcoff.go

    type xcoffLoaderReloc struct {
    	sym    loader.Sym
    	roff   int32
    	rtype  uint16
    	symndx int32
    }
    
    const (
    	XCOFF_R_POS = 0x00 // A(sym) Positive Relocation
    	XCOFF_R_NEG = 0x01 // -A(sym) Negative Relocation
    	XCOFF_R_REL = 0x02 // A(sym-*) Relative to self
    	XCOFF_R_TOC = 0x03 // A(sym-TOC) Relative to TOC
    	XCOFF_R_TRL = 0x12 // A(sym-TOC) TOC Relative indirect load.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top