Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 96 for regressed (0.16 sec)

  1. src/os/file.go

    // error instead of blocking. The deadline applies to all future and pending
    // I/O, not just the immediately following call to Read or Write.
    // After a deadline has been exceeded, the connection can be refreshed
    // by setting a deadline in the future.
    //
    // If the deadline is exceeded a call to Read or Write or to other I/O
    // methods will return an error that wraps ErrDeadlineExceeded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

          }
          return oldValue;
        }
    
        /**
         * Refreshes the value associated with {@code key}, unless another thread is already doing so.
         * Returns the newly refreshed value associated with {@code key} if it was refreshed inline, or
         * {@code null} if another thread is performing the refresh or if an error occurs during
         * refresh.
         */
        @CanIgnoreReturnValue
        @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

      Classes that don't need to be recompiled remain unchanged in the output directory.
      An example scenario when this is really useful is using JRebel — the fewer output classes are changed the quicker the JVM can use refreshed classes.
    
    To help you understand how incremental compilation works, the following provides a high-level overview:
    
    * Gradle will recompile all classes _affected_ by a change.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/storage/eviction_test.go

    			expectError:         "",
    			podPhase:            api.PodPending,
    			podName:             "t1",
    			expectedDeleteCount: 3,
    		},
    		// This test case is critical. If it is removed or broken we may
    		// regress and allow a pod to be deleted without checking PDBs when the
    		// pod should not be deleted.
    		{
    			name: "pdbs No disruptions allowed, pod pending, first delete conflict, pod becomes running, continueToPDBs",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LocalCache.java

          }
          return oldValue;
        }
    
        /**
         * Refreshes the value associated with {@code key}, unless another thread is already doing so.
         * Returns the newly refreshed value associated with {@code key} if it was refreshed inline, or
         * {@code null} if another thread is performing the refresh or if an error occurs during
         * refresh.
         */
        @CanIgnoreReturnValue
        @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/server.go

    	fs.DurationVar(&o.config.ConfigSyncPeriod.Duration, "config-sync-period", o.config.ConfigSyncPeriod.Duration, "How often configuration from the apiserver is refreshed.  Must be greater than 0.")
    
    	fs.Int32Var(&o.healthzPort, "healthz-port", o.healthzPort, "The port to bind the health check server. Use 0 to disable.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.21.md

      - By default, injected tokens are given an extended lifetime so they remain valid even after a new refreshed token is provided. The metric `serviceaccount_stale_tokens_total` can be used to monitor for workloads that are depending on the extended lifetime and are continuing to use tokens even after a refreshed token is provided to the container. If that metric indicates no existing workloads are depending on extended lifetimes, injected token lifetime can be...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                @Override
                public void onResponse(final RefreshResponse response) {
                    if (logger.isDebugEnabled()) {
                        logger.debug(() -> "Refreshed " + stream(indices).get(stream -> stream.collect(Collectors.joining(", "))));
                    }
                }
    
                @Override
                public void onFailure(final Exception e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	// the following conditions:
    	// 1) the watch w1 is blocked, so we were consuming the whole budget once
    	//    its buffer was filled in (10 items)
    	// 2) the budget is refreshed once per second, so it basically wasn't
    	//    happening in the test at all
    	// 3) if the test was cpu-starved and we weren't able to consume events
    	//    from w2 ResultCh it could have happened that its buffer was also
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/buildlist.go

    //     graph, but is facilitated by (3). If the caller adds roots to the graph in
    //     order to resolve missing packages, then updatePrunedRoots will retain them,
    //     the selected versions of those roots cannot regress, and they will
    //     eventually be written back to the main module's go.mod file.
    //
    // (See https://golang.org/design/36460-lazy-module-loading#invariants for more
    // detail.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top