Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 862 for checkSeq (0.26 sec)

  1. 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)
  2. tensorflow/c/experimental/gradients/custom_gradient_test.cc

        Status s = StatusFromTF_Status(status.get());
        CHECK_EQ(errors::OK, s.code()) << s.message();
      }
    };
    
    class PassThroughGradientFunction : public GradientFunction {
     public:
      Status Compute(AbstractContext* ctx,
                     absl::Span<AbstractTensorHandle* const> grad_outputs,
                     absl::Span<AbstractTensorHandle*> grad_inputs) override {
        CHECK_EQ(grad_outputs.size(), 1);
        CHECK_EQ(grad_inputs.size(), 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/tests/variable_test.cc

        Status s = tensorflow::StatusFromTF_Status(status.get());
        CHECK_EQ(tensorflow::errors::OK, s.code()) << s.message();
    
        // Set the runtime impl, Core RT vs TFRT.
        AbstractContext* ctx_raw = nullptr;
        s = BuildImmediateExecutionContext(UseTfrt(), &ctx_raw);
        CHECK_EQ(tensorflow::errors::OK, s.code()) << s.message();
        ctx_.reset(ctx_raw);
      }
    };
    
    template <typename T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/TestPrecondition.java

         * @throws Exception if the precondition cannot be checked
         */
        boolean isSatisfied() throws Exception;
    
        /**
         * Utility method to check if a precondition class is satisfied.
         *
         * @param preconditionClass the class of the precondition to be checked
         * @return true if the precondition is satisfied
         * @throws Exception if the precondition cannot be checked
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. pkg/test/framework/components/authz/provider.go

    	// MatchSupportedTargets returns a Matcher for filtering unsupported targets.
    	MatchSupportedTargets() match.Matcher
    
    	// Check returns an echo.Checker for validating response based on the request information.
    	Check(opts echo.CallOptions, expectAllowed bool) echo.Checker
    }
    
    var _ Provider = &providerImpl{}
    
    type providerImpl struct {
    	name              string
    	api               API
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 23 16:02:21 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  6. docs/em/docs/advanced/advanced-dependencies.md

    {!../../../docs_src/dependencies/tutorial011.py!}
    ```
    
    &amp; πŸ‘ˆ 🌌 πŸ‘₯ πŸ’ͺ "πŸ”—" πŸ‘† πŸ”—, πŸ‘ˆ πŸ”œ βœ”οΈ `"bar"` πŸ”˜ ⚫️, πŸ”’ `checker.fixed_content`.
    
    ## βš™οΈ πŸ‘ πŸ”—
    
    ‴️, πŸ‘₯ πŸ’ͺ βš™οΈ πŸ‘‰ `checker` `Depends(checker)`, ↩️ `Depends(FixedContentQueryChecker)`, ↩️ πŸ”— πŸ‘, `checker`, 🚫 πŸŽ“ ⚫️.
    
    &amp; πŸ•β” ❎ πŸ”—, **FastAPI** πŸ”œ πŸ€™ πŸ‘‰ `checker` πŸ’–:
    
    ```Python
    checker(q="somequery")
    ```
    
    ...&amp; πŸšΆβ€β™€οΈ βš«οΈβ” πŸ‘ˆ πŸ“¨ πŸ’² πŸ”— πŸ‘† *➑ πŸ› οΈ πŸ”’* πŸ”’ `fixed_content_included`:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginHtmlReportIntegrationTest.groovy

            file("config/checkstyle/checkstyle.xml") << """
    <!DOCTYPE module PUBLIC
              "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
              "https://checkstyle.org/dtds/configuration_1_3.dtd">
    <module name="Checker">
        <module name="TreeWalker">
            <module name="$nameOfCheck"/>
        </module>
    </module>
            """
        }
    
        private void goodCode() {
            file("src/main/java/com/example/Foo.java").java """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 22:34:07 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. src/go/types/conversions.go

    // may be set to the cause for the failure.
    // The check parameter may be nil if convertibleTo is invoked through an
    // exported API call, i.e., when all methods have been type-checked.
    func (x *operand) convertibleTo(check *Checker, T Type, cause *string) bool {
    	// "x is assignable to T"
    	if ok, _ := x.assignableTo(check, T, cause); ok {
    		return true
    	}
    
    	origT := T
    	V := Unalias(x.typ)
    	T = Unalias(T)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/runtime/proc_runtime_test.go

    		}
    		for co := 0; co < len(ord.coprimes); co++ {
    			enum := ord.start(uint32(co))
    			checked := make([]bool, procs)
    			for p := 0; p < procs; p++ {
    				x := enum.position()
    				if checked[x] {
    					println("procs:", procs, "inc:", enum.inc)
    					panic("duplicate during enumeration")
    				}
    				checked[x] = true
    				enum.next()
    			}
    			if !enum.done() {
    				panic("not done")
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 18:43:08 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageDisplayConfiguration.groovy

        private final ValidationMessageChecker checker
        String pluginId
        boolean hasIntro = true
        private String description
        private String reason
        private List<String> solutions = []
    
        ValidationMessageDisplayConfiguration(ValidationMessageChecker checker) {
            this.checker = checker
        }
    
        String typeName
        String property
        String propertyType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top