Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,866 for checkSeq (0.13 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiModelChecker.groovy

                        assert actualValue instanceof Map
                        checkMap(actualValue, expectedValue, checker)
                    } else {
                        checker(actualValue, expectedValue)
                    }
                } else if (checker instanceof List) {
                    def subSpecs = checker as List
                    checkModel(actualValue, expectedValue, subSpecs)
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 10:26:50 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. android/guava/javadoc-link/checker-framework/package-list

    org.checkerframework.checker.propkey.qual
    org.checkerframework.checker.regex
    org.checkerframework.checker.regex.qual
    org.checkerframework.checker.signature
    org.checkerframework.checker.signature.qual
    org.checkerframework.checker.signedness
    org.checkerframework.checker.signedness.qual
    org.checkerframework.checker.tainting
    org.checkerframework.checker.tainting.qual
    org.checkerframework.checker.units
    org.checkerframework.checker.units.qual
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 07 19:00:31 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/check/checkers.go

    )
    
    // Each applies the given per-response function across all responses.
    func Each(v Visitor) echo.Checker {
    	return v.Checker()
    }
    
    // And is an aggregate Checker that requires all Checkers succeed. Any nil Checkers are ignored.
    func And(checkers ...echo.Checker) echo.Checker {
    	return func(result echo.CallResult, err error) error {
    		for _, c := range filterNil(checkers) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/preflight/checks_other.go

    // No-op for Darwin (MacOS), Windows.
    func addIPv6Checks(checks []Checker) []Checker {
    	return checks
    }
    
    // addIPv4Checks adds IPv4 related checks
    // No-op for Darwin (MacOS), Windows.
    func addIPv4Checks(checks []Checker) []Checker {
    	return checks
    }
    
    // addSwapCheck adds a swap check
    // No-op for Darwin (MacOS), Windows.
    func addSwapCheck(checks []Checker) []Checker {
    	return checks
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 23 07:37:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    			expectEsimatedCost: func(c checker.CostEstimate) checker.CostEstimate {
    				return checker.CostEstimate{Min: c.Min + 5, Max: c.Max + 9}
    			},
    			expectRuntimeCost: func(c uint64) uint64 { return c + 5 },
    		},
    		{
    			ops: []string{".containsCIDR(cidr('192.168.0.0/16'))"},
    			expectEsimatedCost: func(c checker.CostEstimate) checker.CostEstimate {
    				return checker.CostEstimate{Min: c.Min + 5, Max: c.Max + 9}
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/TasksFromDependentProjectsTest.groovy

            1 * checker.isDependent(child1, "testRuntime", child2) >> false
            1 * checker.isDependent(child1, "testRuntime", child3) >> true
            1 * context.add(child3.tasks["buildDependents"])
            0 * _
        }
    
        def "knows which tasks come from dependent projects with specific configuration"() {
            def checker = new TasksFromDependentProjects.TaskDependencyChecker()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

            var currentSelectedTag = $(this).val();
            var checked = $(this).prop('checked');
    
            $("#filter-popover .form-check-input[value*='" + currentSelectedTag + "']").toArray().forEach(checkbox => checked ? checkbox.setAttribute('checked', 'true') : checkbox.removeAttribute('checked'));
    
            var selectedTags = $('.popover-body .form-check-input').toArray().filter(checkbox => checkbox.checked).map(checkbox => checkbox.value);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

    import static com.google.common.base.Preconditions.checkNotNull;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.Map;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A {@link UnicodeEscaper} that uses an array to quickly look up replacement characters for a given
     * code point. An additional safe range is provided that determines whether code points without
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/TimeLimiter.java

    import java.util.concurrent.Callable;
    import java.util.concurrent.ExecutionException;
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Imposes a time limit on method calls.
     *
     * @author Kevin Bourrillion
     * @author Jens Nyman
     * @since 1.0
     */
    @DoNotMock("Use FakeTimeLimiter")
    @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    "checker". For example, the printf checker reports mistakes in
    fmt.Printf format strings.
    
    A "modular" analysis is one that inspects one package at a time but can
    save information from a lower-level package and use it when inspecting a
    higher-level package, analogous to separate compilation in a toolchain.
    The printf checker is modular: when it discovers that a function such as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top