Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 485 for predict1 (0.17 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/duplicateLibrary.ir.txt

                    CALL 'public final fun takeUnless <T> (predicate: kotlin.Function1<T of kotlin.takeUnless, kotlin.Boolean>): T of kotlin.takeUnless? [inline] declared in kotlin' type=kotlin.String? origin=null
                      <T>: kotlin.String
                      $receiver: GET_VAR 'p0: kotlin.String declared in <root>.CodeFragment.run' type=kotlin.String origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/DefaultFailure.java

        public List<Failure> getCauses() {
            return causes;
        }
    
        @Override
        public int indexOfStackFrame(int fromIndex, StackFramePredicate predicate) {
            int size = stackTrace.size();
            for (int i = fromIndex; i < size; i++) {
                if (predicate.test(stackTrace.get(i), getStackTraceRelevance(i))) {
                    return i;
                }
            }
            return -1;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // integer exit status that satisfies predicate, and emitting error output
    // that matches regex.
    # define ASSERT_EXIT(statement, predicate, regex) \
        GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
    
    // Like ASSERT_EXIT, but continues on to successive tests in the
    // test case, if any:
    # define EXPECT_EXIT(statement, predicate, regex) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // integer exit status that satisfies predicate, and emitting error output
    // that matches regex.
    # define ASSERT_EXIT(statement, predicate, regex) \
        GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
    
    // Like ASSERT_EXIT, but continues on to successive tests in the
    // test case, if any:
    # define EXPECT_EXIT(statement, predicate, regex) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryService.java

    import org.gradle.internal.os.OperatingSystem;
    import org.gradle.jvm.toolchain.internal.JvmInstallationMetadataMatcher;
    
    import java.io.File;
    import java.util.Comparator;
    import java.util.Optional;
    import java.util.function.Predicate;
    
    public class DaemonJavaToolchainQueryService {
    
        private final JavaInstallationRegistry javaInstallationRegistry;
        private final File currentJavaHome;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		// getResp.Count counts in objects that do not match the pred.
    		// Instead of returning inaccurate count for non-empty selectors, we return nil.
    		// Only set remainingItemCount if the predicate is empty.
    		if opts.Predicate.Empty() {
    			c := int64(getResp.Count - opts.Predicate.Limit)
    			remainingItemCount = &c
    		}
    		return s.versioner.UpdateList(listObj, uint64(withRev), next, remainingItemCount)
    	}
    
    	// no continuation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/ConcurrentGroupingQueue.kt

     * A queue that gives priority to the most recently pushed element.
     */
    internal
    class ConcurrentGroupingQueue<T>(
    
        /**
         * Predicate to check whether the given most recently pushed element (the receiver)
         * supersedes the given less recent element (the argument).
         *
         * When the predicate returns true the argument is considered to be in the same group
         * as the receiver.
         */
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/CollectSpliterators.java

          }
        };
      }
    
      /** Returns a {@code Spliterator} filtered by the specified predicate. */
      static <T extends @Nullable Object> Spliterator<T> filter(
          Spliterator<T> fromSpliterator, Predicate<? super T> predicate) {
        checkNotNull(fromSpliterator);
        checkNotNull(predicate);
        class Splitr implements Spliterator<T>, Consumer<T> {
          @CheckForNull T holder = null;
    
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/CharMatcher.java

      /** Implementation of {@link #forPredicate(Predicate)}. */
      private static final class ForPredicate extends CharMatcher {
    
        private final Predicate<? super Character> predicate;
    
        ForPredicate(Predicate<? super Character> predicate) {
          this.predicate = checkNotNull(predicate);
        }
    
        @Override
        public boolean matches(char c) {
          return predicate.apply(c);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/lister_watcher.go

    		Field:    fields.Everything(),
    		Limit:    options.Limit,
    		Continue: options.Continue,
    	}
    
    	storageOpts := storage.ListOptions{
    		ResourceVersionMatch: options.ResourceVersionMatch,
    		Predicate:            pred,
    		Recursive:            true,
    	}
    	ctx := context.Background()
    	if lw.contextMetadata != nil {
    		ctx = metadata.NewOutgoingContext(ctx, lw.contextMetadata)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 11:51:06 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top