Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for 1011 (0.05 sec)

  1. docs/en/docs/release-notes.md

    * 📝 Update docs for generating clients. PR [#10112](https://github.com/tiangolo/fastapi/pull/10112) by [@tiangolo](https://github.com/tiangolo).
    * 📝 Tweak MkDocs and add redirects. PR [#10111](https://github.com/tiangolo/fastapi/pull/10111) by [@tiangolo](https://github.com/tiangolo).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    #content h1>a.anchor,
    h2>a.anchor,
    h3>a.anchor,
    #toctitle>a.anchor,
    .sidebarblock>.content>.title>a.anchor,
    h4>a.anchor,
    h5>a.anchor,
    h6>a.anchor {
    	position: absolute;
    	z-index: 1001;
    	width: 1.5ex;
    	margin-left: -1.5ex;
    	display: block;
    	text-decoration: none !important;
    	visibility: hidden;
    	text-align: center;
    	font-weight: normal;
    }
    
    #content h1>a.anchor:before,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/os/os_test.go

    	}
    }
    
    func TestStatDirModeExec(t *testing.T) {
    	if runtime.GOOS == "wasip1" {
    		t.Skip("Chmod is not supported on " + runtime.GOOS)
    	}
    	t.Parallel()
    
    	const mode = 0111
    
    	path := t.TempDir()
    	if err := Chmod(path, 0777); err != nil {
    		t.Fatalf("Chmod %q 0777: %v", path, err)
    	}
    
    	dir, err := Stat(path)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	}
    	val := 0
    	for len(st.str) > 0 && isDigit(st.str[0]) {
    		// Number picked to ensure we can't overflow with 32-bit int.
    		// Any very large number here is bogus.
    		if val >= 0x80000000/10-10 {
    			st.fail("numeric overflow")
    		}
    		val = val*10 + int(st.str[0]-'0')
    		st.advance(1)
    	}
    	if neg {
    		val = -val
    	}
    	return val
    }
    
    // seqID parses:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            builder_, opcode_index, builder_.CreateVector(operands),
            builder_.CreateVector(results), tflite::BuiltinOptions_NONE,
            /*builtin_options=*/0, 0, tflite::CustomOptionsFormat_FLEXBUFFERS, 0, 0,
            1, 1);
      }
      if (IsModelBiggerThan2GB(custom_option_vector.size())) {
        require_use_buffer_offset_ = true;
        return tflite::CreateOperator(
            builder_, opcode_index, builder_.CreateVector(operands),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. src/net/http/server.go

    		return
    	}
    	checkWriteHeaderCode(code)
    
    	if code < 101 || code > 199 {
    		// Sending a 100 Continue or any non-1xx header disables the
    		// automatically-sent 100 Continue from Request.Body.Read.
    		w.disableWriteContinue()
    	}
    
    	// Handle informational headers.
    	//
    	// We shouldn't send any further headers after 101 Switching Protocols,
    	// so it takes the non-informational path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // and "x <= y". Because if either or both of the operands are
    // NaNs, all three of (x < y), (x == y) and (x > y) are false,
    // and ARM Manual says FCMP instruction sets PSTATE.<N,Z,C,V>
    // of this case to (0, 0, 1, 1).
    (Less32F x y) => (LessThanF (FCMPS x y))
    (Less64F x y) => (LessThanF (FCMPD x y))
    
    // For an unsigned integer x, the following rules are useful when combining branch
    // 0 <  x  =>  x != 0
    // x <= 0  =>  x == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  8. cmd/object-handlers_test.go

    		{
    			bucketName: bucketName,
    			objectName: objectName,
    			byteRange:  "bytes=10-100",
    			accessKey:  credentials.AccessKey,
    			secretKey:  credentials.SecretKey,
    
    			expectedContent:    bytesData[0].byteData[10:101],
    			expectedRespStatus: http.StatusPartialContent,
    		},
    		// Test case - 4.
    		// Test case with invalid range.
    		{
    			bucketName: bucketName,
    			objectName: objectName,
    			byteRange:  "bytes=-0",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - github.com/docker/docker: [v20.10.21+incompatible → v20.10.24+incompatible](https://github.com/docker/docker/compare/v20.10.21...v20.10.24)
    - github.com/emicklei/go-restful/v3: [v3.9.0 → v3.11.0](https://github.com/emicklei/go-restful/v3/compare/v3.9.0...v3.11.0)
    - github.com/envoyproxy/go-control-plane: [v0.10.3 → v0.11.1](https://github.com/envoyproxy/go-control-plane/compare/v0.10.3...v0.11.1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    	ctx, cancel := globalLeaderLock.GetLock(ctx)
    	defer cancel()
    
    	healTimer := time.NewTimer(siteHealTimeInterval)
    	defer healTimer.Stop()
    
    	var maxRefreshDurationSecondsForLog float64 = 10 // 10 seconds..
    
    	for {
    		select {
    		case <-healTimer.C:
    			c.RLock()
    			enabled := c.enabled
    			c.RUnlock()
    			if enabled {
    				refreshStart := time.Now()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top