Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,121 for below (0.17 sec)

  1. docs/en/docs/deployment/versions.md

    You can see the available versions (e.g. to check what is the current latest) in the [Release Notes](../release-notes.md){.internal-link target=_blank}.
    
    ## About versions
    
    Following the Semantic Versioning conventions, any version below `1.0.0` could potentially add breaking changes.
    
    FastAPI also follows the convention that any "PATCH" version change is for bug fixes and non-breaking changes.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Nov 05 20:50:37 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  2. .gitattributes

    * text eol=lf
    
    #
    # The above will handle all files NOT found below
    # https://help.github.com/articles/dealing-with-line-endings/
    # https://github.com/Danimoth/gitattributes
    
    # These are explicitly windows files and should use crlf
    *.bat           text eol=crlf
    
    # These files are text and should be normalized (Convert crlf => lf)
    *.bash          text eol=lf
    *.css           text diff=css
    *.htm           text diff=html
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 02 12:15:16 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testshared/testdata/exe/exe.go

    func DeclaredInMain() {
    }
    
    type C struct {
    }
    
    func F() *C {
    	return nil
    }
    
    var slicePtr interface{} = &[]int{}
    
    func main() {
    	defer depBase.ImplementedInAsm()
    	// This code below causes various go.itab.* symbols to be generated in
    	// the executable. Similar code in ../depBase/dep.go results in
    	// exercising https://golang.org/issues/17594
    	reflect.TypeOf(os.Stdout).Elem()
    	runtime.GC()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 906 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/type_attr.mlir

    // CHECK:   description: "MLIR Converted.",
    // CHECK:   buffers: [ {
    // CHECK-EMPTY
    // CHECK:   }, {
    // CHECK-EMPTY
    // CHECK:   } ]
    // CHECK: }
    
    func.func @main() -> tensor<*xi32> {
    	// Tests that the below type attribute is convertible into the corresponding custom option in flatbuffer.
      %0 = "tf.SomeOperation"() {dtype = i32 } : () -> tensor<*xi32>
      func.return %0 : tensor<*xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:31:32 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue43190.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The errors below are produced by the parser, but we check
    // them here for consistency with the types2 tests.
    
    package p
    
    import ; // ERROR "missing import path"
    import "" // ERROR "invalid import path (empty string)"
    import
    var /* ERROR "missing import path" */ _ int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 997 bytes
    - Viewed (0)
  6. test/fixedbugs/issue35518.go

    // go into an infinite loop when handling negative dereference
    // cycles. The critical thing being tested here is that compilation
    // succeeds ("errorcheck -0"), not any particular diagnostic output,
    // hence the very lax ERROR patterns below.
    
    package p
    
    type Node struct {
    	Orig *Node
    }
    
    var sink *Node
    
    func f1() {
    	var n Node // ERROR "."
    	n.Orig = &n
    
    	m := n // ERROR "."
    	sink = &m
    }
    
    func f2() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 12 21:02:24 UTC 2019
    - 847 bytes
    - Viewed (0)
  7. pkg/kubelet/nodestatus/setters.go

    			// copied to the slice. So if we append to the slice here none of the
    			// updates we make below are reflected in the slice.
    			newCondition = true
    		}
    
    		// Update the heartbeat time
    		condition.LastHeartbeatTime = currentTime
    
    		// Note: The conditions below take care of the case when a new NodeMemoryPressure condition is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. src/internal/fuzz/mutator.go

    			}
    			v += int64(1 + m.rand(int(max)))
    			return v
    		case 1:
    			// Subtract a random number
    			if v <= -maxValue {
    				continue
    			}
    			if v < 0 && maxValue+v < max {
    				// Don't let v drop below -maxValue
    				max = maxValue + v
    			}
    			v -= int64(1 + m.rand(int(max)))
    			return v
    		}
    	}
    }
    
    func (m *mutator) mutateUInt(v, maxValue uint64) uint64 {
    	var max uint64
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/impl/string.cc

    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/cc/experimental/libtf/impl/string.h"
    
    #include <unordered_set>
    
    // It is important for the container below to not invalidate pointers to
    // elements when elements are inserted, because the String class stores such
    // pointers. This rules out, for example, absl::flat_hash_set.
    using StringTable = std::unordered_set<std::string>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 21:37:07 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_cache_disabled.txt

    # However, there are lots of commands the cache is not needed for, and we
    # shouldn't require it when it won't be used.
    #
    # TODO(golang.org/issue/39882): commands below should work, too.
    # * go clean -modcache
    # * go env
    # * go fix
    # * go fmt
    # * go generate
    # * go get
    # * go list (without -export or -compiled)
    
    env GOCACHE=off
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 965 bytes
    - Viewed (0)
Back to top