Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 119 for relu (0.51 sec)

  1. pkg/kubelet/pleg/generic.go

    // incident happens, GenenricPLEG would miss all events regarding this
    // container. In the case of relisting failure, the window may become longer.
    // Note that this assumption is not unique -- many kubelet internal components
    // rely on terminated containers as tombstones for bookkeeping purposes. The
    // garbage collector is implemented to work with such situations. However, to
    // guarantee that kubelet can handle missing container events, it is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. docs/fr/docs/tutorial/path-params.md

    ```Python hl_lines="6  11"
    {!../../../docs_src/path_params/tutorial003.py!}
    ```
    
    Sinon, le chemin `/users/{user_id}` correspondrait aussi à `/users/me`, la fonction "croyant" qu'elle a reçu un paramètre `user_id` avec pour valeur `"me"`.
    
    ## Valeurs prédéfinies
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

    import org.junit.jupiter.api.condition.EnabledIfEnvironmentVariable
    import org.junit.jupiter.api.io.TempDir
    import java.io.File
    
    
    @EnabledIfEnvironmentVariable(named = "CI", matches = ".*", disabledReason = "Tests rely on setup conditional on CI in gradlebuild.ci-reporting plugin running first, these test should only run if CI env var is present (it's value doesn't matter)")
    class TestFilesCleanupServiceTest {
        @TempDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 14 12:35:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/check/checkers.go

    			// There weren't enough calls to hit all the target clusters. Don't bother
    			// checking which clusters were reached.
    			return nil
    		}
    
    		allClusters := t.Clusters()
    		if isNaked(from) {
    			// Naked clients rely on k8s DNS to lookup endpoint IPs. This
    			// means that they will only ever reach endpoint in the same cluster.
    			return checkReachedSourceClusterOnly(result, allClusters)
    		}
    
    		if to.Config().IsAllNaked() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Queues.java

         * the timeout arbitrarily inaccurate, given a queue that is slow to drain).
         */
        long deadline = System.nanoTime() + unit.toNanos(timeout);
        int added = 0;
        while (added < numElements) {
          // we could rely solely on #poll, but #drainTo might be more efficient when there are multiple
          // elements already available (e.g. LinkedBlockingQueue#drainTo locks only once)
          added += q.drainTo(buffer, numElements - added);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // Module paths appear as substrings of file system paths
    // (in the download cache) and of web server URLs in the proxy protocol.
    // In general we cannot rely on file systems to be case-sensitive,
    // nor can we rely on web servers, since they read from file systems.
    // That is, we cannot rely on the file system to keep rsc.io/QUOTE
    // and rsc.io/quote separate. Windows and macOS don't.
    // Instead, we must never require two different casings of a file path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo.go

    			// An error in parsing request will result in default to "list" and not setting "name" field.
    			klog.ErrorS(err, "Couldn't parse request", "request", req.URL.Query())
    			// Reset opts to not rely on partial results from parsing.
    			// However, if watch is set, let's report it.
    			opts = metainternalversion.ListOptions{}
    			if values := req.URL.Query()["watch"]; len(values) > 0 {
    				switch strings.ToLower(values[0]) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISessionBuilder.kt

     * registered for production Standalone and Standalone test usages, but *not* for IDE mode Analysis API tests, which rely on
     * [FirStandaloneServiceRegistrar] as a basis.
     *
     * When using this service registrar in tests, make sure that `AnalysisApiIdeModeTestServiceRegistrar` isn't configured at the same time.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/parallel_execute_to_islands.cc

        // island.
        execute_island.getBody().takeBody(*execute_block.getParent());
    
        // In new graph export pipeline, we will update control dependencies in the
        // end of the pipeline. Mostly, it will rely on side effect analysis by
        // considering accessing resource only. However, for branches under parallel
        // group, there should not be any control deps between them even side effect
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

       *     static
       */
      private void testParameter(
          @Nullable Object instance, Invokable<?, ?> invokable, int paramIndex, Class<?> testedClass) {
        /*
         * com.google.common is starting to rely on type-use annotations, which aren't visible under
         * Android VMs and in open-source guava-android. So we skip testing there.
         */
        if (Reflection.getPackageName(testedClass).startsWith("com.google.common")) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top