Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for unambiguous (0.2 sec)

  1. docs/changelogs/changelog_3x.md

        never null unless explicitly annotated `@Nullable`.
    
     *  **Warning: this release is source-incompatible for Kotlin users.**
        Nullability was previously ambiguous and lenient but now the compiler will
        enforce strict null checks.
    
     *  New: The response message is now non-null. This is the "Not Found" in the
        status line "HTTP 404 Not Found". If you are building responses
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  2. src/encoding/json/decode_test.go

    		// even though there is a name conflict, even when it would have been
    		// impossible to do so according to Go visibility rules.
    		// Go forbids this because it is ambiguous whether S7.Q refers to
    		// S7.embed1.Q or S7.embed2.Q. Since embed1 and embed2 are unexported,
    		// it should be impossible for an external package to set either Q.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

        -> (tensor<*x!tf_type.resource<tensor<f32>>>) {
      // CHECK-NEXT: return %[[IEARG0]]
      func.return %arg0 : tensor<*x!tf_type.resource<tensor<f32>>>
    }
    
    // -----
    
    // Tests that the pass reports error for ambiguous resource aliasing.
    
    func.func @cluster_with_if(%arg0: tensor<i1>) -> tensor<4xf32> {
      %0 = "tf.VarHandleOp"() {container = "c", shared_name = "v"} : () -> tensor<*x!tf_type.resource<tensor<4xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    	// paths of loaded packages. We need to retain sums for all of these modules —
    	// not just the modules containing the actual packages — in order to rule out
    	// ambiguous import errors the next time we load the package.
    	keepModSumsForZipSums := true
    	if ld == nil {
    		if gover.Compare(MainModules.GoVersion(), gover.TidyGoModSumVersion) < 0 && cfg.BuildMod != "mod" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. src/reflect/type.go

    	t2    *abi.Type
    	extra uintptr
    }
    
    // The funcLookupCache caches FuncOf lookups.
    // FuncOf does not share the common lookupCache since cacheKey is not
    // sufficient to represent functions unambiguously.
    var funcLookupCache struct {
    	sync.Mutex // Guards stores (but not loads) on m.
    
    	// m is a map[uint32][]*rtype keyed by the hash calculated in FuncOf.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top