Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,250 for going (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/waitgroup.go

    			return
    		}
    
    		if err := wg.Add(1); err != nil {
    			// shutdown delay duration has elapsed and SafeWaitGroup.Wait has been invoked,
    			// this means 'WithRetryAfter' has started sending Retry-After response.
    			// we are going to exempt the same set of requests that WithRetryAfter are
    			// exempting from being rejected with a Retry-After response.
    			if isRequestExemptFn(req) {
    				handler.ServeHTTP(w, req)
    				return
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 10 21:18:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractVersionRangeResolveIntegrationTest.groovy

        public static final String ONLY_RUN_ON_EMBEDDED_REASON = """
    This test is very expensive. Ideally we shouldn't need an integration test here, but lack the
    infrastructure to simulate everything done here, so we're only going to execute this test in
    embedded mode
    """
        def baseBuild
        def baseSettings
        def resolve = new ResolveTestFixture(buildFile, "conf").expectDefaultConfiguration("runtime")
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java

                params += "&address=" + address;
            if (params.length() > 0)
                url += "?" + params.substring(1);
    
            pipe = new SmbNamedPipe(url,
                    /* This 0x20000 bit is going to get chopped! */
                    (0x2019F << 16) | SmbNamedPipe.PIPE_TYPE_RDWR | SmbNamedPipe.PIPE_TYPE_DCE_TRANSACT,
                    auth);
        }
    
        protected void doSendFragment(byte[] buf,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/Interceptor.kt

     * limitations under the License.
     */
    package okhttp3
    
    import java.io.IOException
    import java.util.concurrent.TimeUnit
    
    /**
     * Observes, modifies, and potentially short-circuits requests going out and the corresponding
     * responses coming back in. Typically interceptors add, remove, or transform headers on the request
     * or response.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/object_count_tracker_test.go

    	}
    
    	now := time.Now()
    	fakeClock.SetTime(now.Add(-61 * time.Minute))
    	tracker.Set("k1", 61)
    	fakeClock.SetTime(now.Add(-60 * time.Minute))
    	tracker.Set("k2", 60)
    	// we are going to prune keys that are stale for >= 1h
    	// so the above keys are expected to be pruned and the
    	// key below should not be pruned.
    	mostRecent := now.Add(-59 * time.Minute)
    	fakeClock.SetTime(mostRecent)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 17 19:36:14 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/BasicScript.java

         * Using BeanDynamicObject would be wasteful, because most of the interesting properties and methods
         * are delegated to the script target. Doing this delegation explicitly avoids
         * us going through the methodMissing/propertyMissing protocol that BeanDynamicObject would use.
         */
        private static final class ScriptDynamicObject extends AbstractDynamicObject {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. src/internal/zstd/literals.go

    		off++
    	case 3:
    		if off+1 >= len(data) {
    			return 0, nil, r.makeEOFError(off)
    		}
    		regeneratedSize = int(hdr>>4) + (int(data[off]) << 4) + (int(data[off+1]) << 12)
    		off += 2
    	}
    
    	// We are going to use the entire literal block in the output.
    	// The maximum size of one decompressed block is 128K,
    	// so we can't have more literals than that.
    	if regeneratedSize > 128<<10 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 14:30:10 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/openapi-callbacks.md

    ```
    
    But possibly the most important part of the callback is making sure that your API user (the external developer) implements the *external API* correctly, according to the data that *your API* is going to send in the request body of the callback, etc.
    
    So, what we will do next is add the code to document how that *external API* should look like to receive the callback from *your API*.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DefaultDaemonScanInfo.java

        }
    
        @Override
        public void notifyOnUnhealthy(final Action<? super String> listener) {
            /*
                The semantics of this method are that the given action should be notified if the
                Daemon is going to be terminated at the end of this build.
                It is not a generic outlet for “expiry events”.
    
                Ideally, the value given would describe the problem and not be phrased in terms of why we are shutting down,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. src/runtime/signal_riscv64.go

    	// We arrange RA, and pc to pretend the panicking
    	// function calls sigpanic directly.
    	// Always save RA to stack so that panics in leaf
    	// functions are correctly handled. This smashes
    	// the stack frame but we're not going back there
    	// anyway.
    	sp := c.sp() - goarch.PtrSize
    	c.set_sp(sp)
    	*(*uint64)(unsafe.Pointer(uintptr(sp))) = c.ra()
    
    	pc := gp.sigpc
    
    	if shouldPushSigpanic(gp, pc, uintptr(c.ra())) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top