Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 139 for died (0.05 sec)

  1. docs/vi/docs/python-types.md

    Đây chỉ là một **hướng dẫn nhanh** về gợi ý kiểu dữ liệu trong Python. Nó chỉ bao gồm những điều cần thiết tối thiểu để sử dụng chúng với **FastAPI**... đó thực sự là rất ít.
    
    **FastAPI** hoàn toàn được dựa trên những gợi ý kiểu dữ liệu, chúng mang đến nhiều ưu điểm và lợi ích.
    
    Nhưng thậm chí nếu bạn không bao giờ sử dụng **FastAPI**, bạn sẽ được lợi từ việc học một ít về chúng.
    
    !!! note
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. test/codegen/arithmetic.go

    		// and the normal JMP generated at the end of the block.
    		d += e
    	}
    	return d, e
    }
    
    func NoFix64B(divd int64) (int64, int64) {
    	var d int64
    	var e int64
    	var divr int64 = -1
    	if divd > -9223372036854775808 {
    		d = divd / divr // amd64:-"JMP"
    		e = divd % divr // amd64:-"JMP"
    		d += e
    	}
    	return d, e
    }
    
    func NoFix32A(divr int32) (int32, int32) {
    	var d int32 = 42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. docs/de/docs/index.md

    * Klicken Sie dann auf die Taste „Execute“, die Benutzeroberfläche wird mit Ihrer API kommunizieren, sendet die Parameter, holt die Ergebnisse und zeigt sie auf dem Bildschirm an:
    
    ![Swagger UI Interaktion](https://fastapi.tiangolo.com/img/index/index-05-swagger-04.png)
    
    ### Aktualisierung der alternativen API-Dokumentation
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

                   << result_idx << " not tied to function argument for branch @"
                   << func.getName();
          }
          if (!common_arg_index.has_value()) {
            common_arg_index = block_arg.getArgNumber();
          } else if (common_arg_index.value() != block_arg.getArgNumber()) {
            return op->emitError("result #")
                   << result_idx
                   << " is not tied to the same argument across all branches";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. src/crypto/tls/quic_test.go

    	if !cli2.conn.ConnectionState().DidResume {
    		t.Errorf("second connection did not use session resumption")
    	}
    	cliSecret := cli2.writeSecret[QUICEncryptionLevelEarly]
    	if cliSecret.secret == nil {
    		t.Errorf("client did not receive early data write secret")
    	}
    	srvSecret := srv2.readSecret[QUICEncryptionLevelEarly]
    	if srvSecret.secret == nil {
    		t.Errorf("server did not receive early data read secret")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

     *
     * A dependency can have the following states:
     * 1. Unattached: in this case the state of the dependency is tied to the state of it's associated {@link SelectorState}.
     * 2. Attached: in this case the Edge has been connected to actual nodes in the target component. Only possible if the {@link SelectorState} did not fail to resolve.
     */
    class EdgeState implements DependencyGraphEdge {
        private final DependencyState dependencyState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

        fi
        if [ ! -x "\$JAVACMD" ] ; then
            die "ERROR: JAVA_HOME is set to an invalid directory: \$JAVA_HOME
    
    Please set the JAVA_HOME variable in your environment to match the
    location of your Java installation."
        fi
    else
        JAVACMD=java
        if ! command -v java >/dev/null 2>&1
        then
            die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/iter/pull_test.go

    }
    
    func TestPullDoubleNext(t *testing.T) {
    	next, _ := Pull(doDoubleNext())
    	nextSlot = next
    	next()
    	if nextSlot != nil {
    		t.Fatal("double next did not fail")
    	}
    }
    
    var nextSlot func() (int, bool)
    
    func doDoubleNext() Seq[int] {
    	return func(_ func(int) bool) {
    		defer func() {
    			if recover() != nil {
    				nextSlot = nil
    			}
    		}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/internal/trace/trace_test.go

    			if ev.Kind() == trace.EventRegionEnd && ev.Region().Type == "cpuHogger" {
    				hogRegionClosed = true
    			}
    		}
    		if hogRegion == nil {
    			t.Fatalf("execution trace did not identify cpuHogger goroutine")
    		} else if !hogRegionClosed {
    			t.Fatalf("execution trace did not close cpuHogger region")
    		}
    
    		// The execution trace may drop CPU profile samples if the profiling buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. cni/pkg/install/cniconfig_test.go

    			case result := <-resultChan:
    				if len(c.delayedConfName) > 0 {
    					// Delayed case
    					t.Fatalf("did not expect to retrieve a CNI config file %s", result)
    				} else if result != expectedFilepath {
    					if len(expectedFilepath) > 0 {
    						t.Fatalf("expected %s, got %s", expectedFilepath, result)
    					}
    					t.Fatalf("did not expect to retrieve a CNI config file %s", result)
    				}
    				// Successful test for non-delayed cases
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top