Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 2,326 for light (0.05 sec)

  1. src/net/http/fcgi/child.go

    	case typeBeginRequest:
    		if req != nil {
    			// The server is trying to begin a request with the same ID
    			// as an in-progress request. This is an error.
    			return errors.New("fcgi: received ID that is already in-flight")
    		}
    
    		var br beginRequest
    		if err := br.read(rec.content()); err != nil {
    			return err
    		}
    		if br.role != roleResponder {
    			c.conn.writeEndRequest(rec.h.Id, 0, statusUnknownRole)
    			return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_util.cc

          // Other edges might have `dst` as dst node. Update those edges with
          // `replace_node`.
          for (int j = i + 1, end = data_edges.size(); j < end; j++) {
            if (data_edges[j].dst == dst) {
              data_edges[j].dst = replace_node;
            }
          }
    
          // Other placeholder node might have `dst` as original node. Update
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    	// in-flight on the server now, and we will unblock them
    	// after ShutdownDelayDuration elapses.
    	inflightNonLongRunning.launch(doer, connReusingClient)
    	waitForeverUntil(t, inflightNonLongRunning.startedCh, "in-flight non long-running request did not reach the server")
    	inflightWatch.launch(doer, connReusingClient)
    	waitForeverUntil(t, inflightWatch.startedCh, "in-flight watch request did not reach the server")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/google/SortedMapGenerators.java

          return new Ordering<Entry<String, Integer>>() {
            @Override
            public int compare(Entry<String, Integer> left, Entry<String, Integer> right) {
              return left.getKey().compareTo(right.getKey());
            }
          }.sortedCopy(insertionOrder);
        }
    
        @Override
        public List<Entry<String, Integer>> create(Object... elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_ppc64x.s

    	STACK_AND_SAVE_HOST_TO_GO_ABI(32)
    
    	// this might be called in external code context,
    	// where g is not set.
    	MOVBZ	runtimeĀ·iscgo(SB), R6
    	CMP	R6, $0
    	BEQ	2(PC)
    	BL	runtimeĀ·load_g(SB)
    
    	// R3,R4,R5 already hold the arguments. Forward them on.
    	// TODO: Indirectly call runtime.sigtrampgo to avoid the linker's static NOSPLIT stack
    	// overflow detection. It thinks this might be called on a small Go stack, but this is only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/download/FileDownloadResult.java

    /**
     * The result of a file download operation.
     *
     * @since 7.3
     */
    public interface FileDownloadResult extends OperationResult {
        /**
         * Returns the total download size. Note that this might not be the same as the file size.
         */
        long getBytesDownloaded();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 988 bytes
    - Viewed (0)
  7. docs/features/r8_proguard.md

    don't have to do anything. The specific rules are [already bundled][okhttp3_pro] into the JAR which can be
    interpreted by R8 automatically.
    
    If you, however, don't use R8 you have to apply the rules from [this file][okhttp3_pro]. You might
    also need rules from [Okio][okio] which is a dependency of this library.
    
     [okhttp3_pro]: https://raw.githubusercontent.com/square/okhttp/master/okhttp/src/main/resources/META-INF/proguard/okhttp3.pro
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 607 bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    ```Python hl_lines="5-6"
    {!../../../docs_src/dependencies/tutorial007.py!}
    ```
    
    !!! tip
        You can use `async` or regular functions.
    
        **FastAPI** will do the right thing with each, the same as with normal dependencies.
    
    ## A dependency with `yield` and `try`
    
    If you use a `try` block in a dependency with `yield`, you'll receive any exception that was thrown when using the dependency.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

                    Tree tree = new Tree(
                            left: new Tree([:]),
                            right: new Tree([:])
                        )
    
                    public static class Tree {
                        @Optional @Nested
                        Tree left
    
                        @Optional @Nested
                        Tree right
    
                        String nonAnnotated
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. src/crypto/ecdsa/ecdsa.go

    	// an integer modulo N. This is the absolute worst of all worlds: we still
    	// have to reduce, because the result might still overflow N, but to take
    	// the left-most bits for P-521 we have to do a right shift.
    	if size := c.N.Size(); len(hash) >= size {
    		hash = hash[:size]
    		if excess := len(hash)*8 - c.N.BitLen(); excess > 0 {
    			hash = bytes.Clone(hash)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top