Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for ifelse (0.17 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/AbstractAbstractFutureTest.java

        assertThat(future.set(99)).isFalse();
        assertThat(future.setException(new IndexOutOfBoundsException())).isFalse();
        assertThat(future.setFuture(new AbstractFuture<Integer>() {})).isFalse();
        assertThat(future.setFuture(immediateFuture(99))).isFalse();
      }
    
      private static void assertCannotCancel(AbstractFuture<Integer> future) {
        assertThat(future.cancel(true)).isFalse();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		} else {
    			bElse = bEnd
    		}
    		s.condBranch(n.Cond, bThen, bElse, likely)
    
    		if len(n.Body) != 0 {
    			s.startBlock(bThen)
    			s.stmtList(n.Body)
    			if b := s.endBlock(); b != nil {
    				b.AddEdgeTo(bEnd)
    			}
    		}
    		if len(n.Else) != 0 {
    			s.startBlock(bElse)
    			s.stmtList(n.Else)
    			if b := s.endBlock(); b != nil {
    				b.AddEdgeTo(bEnd)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/BooleansTest.java

            0,
            1,
            6,
            new boolean[] {false, true, false, true, false, true, false});
        testRotate(
            new boolean[] {false, true, false, true, false, true, false},
            5,
            1,
            6,
            new boolean[] {false, true, false, true, false, true, false});
        testRotate(
            new boolean[] {false, true, false, true, false, true, false},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 15:43:29 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/DefaultTypeAwareProblemBuilder.java

                        .append(pluginId.get())
                        .append("' type '");
                } else {
                    builder.append("Type '");
                }
                builder.append(rootType.get()).append("' ");
            }
    
            Object property = additionalData.map(TypeValidationData::getPropertyName).orElse(null);
            if (property != null) {
                if (typeRelevant) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

             * <p>
             * A {@code false} return value doesn't mean the value is <b>definitely</b> present, it might still be missing at runtime.
             */
            public boolean isMissing() {
                return false;
            }
    
            public boolean hasFixedValue() {
                return false;
            }
    
            public boolean isChangingValue() {
                return false;
            }
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/primitives/BooleansTest.java

            0,
            1,
            6,
            new boolean[] {false, true, false, true, false, true, false});
        testRotate(
            new boolean[] {false, true, false, true, false, true, false},
            5,
            1,
            6,
            new boolean[] {false, true, false, true, false, true, false});
        testRotate(
            new boolean[] {false, true, false, true, false, true, false},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 15:43:29 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. test/typeparam/issue50485.dir/a.go

    }
    func OrdOption[T any](m Ord[T]) Ord[Option[T]] {
    	return LessFunc[Option[T]](func(t1 Option[T], t2 Option[T]) bool {
    		if !t1.IsDefined() && !t2.IsDefined() {
    			return false
    		}
    		return Applicative2(m.Less).ApOption(t1).ApOption(t2).OrElse(!t1.IsDefined())
    	})
    }
    
    func Given[T ImplicitOrd]() Ord[T] {
    	return LessGiven[T]()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/AbstractAbstractFutureTest.java

        assertThat(future.set(99)).isFalse();
        assertThat(future.setException(new IndexOutOfBoundsException())).isFalse();
        assertThat(future.setFuture(new AbstractFuture<Integer>() {})).isFalse();
        assertThat(future.setFuture(immediateFuture(99))).isFalse();
      }
    
      private static void assertCannotCancel(AbstractFuture<Integer> future) {
        assertThat(future.cancel(true)).isFalse();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/util/LongCommandLineDetectionUtil.java

            return commandLineLength > getMaxCommandLineLength();
        }
    
        private static int getMaxCommandLineLength() {
            int defaultMax = MAX_COMMAND_LINE_LENGTH_NIX;
            if (OperatingSystem.current().isMacOsX()) {
                defaultMax = MAX_COMMAND_LINE_LENGTH_OSX;
            } else if (OperatingSystem.current().isWindows()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 03 12:35:59 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  10. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

         *     <ol type="i">
         *     <li> if childMergeOverride is set (non-null), use that value (true/false)</li>
         *     <li> retrieve the 'combine.children' attribute on the dominant node, and try to match against
         *          'append'...</li>
         *     <li> if it matches 'append', then set mergeChildren == false...the recessive children will be appended as
         *          siblings of the dominant children.</li>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top