Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for isMapped (0.12 sec)

  1. src/cmd/compile/internal/types2/unify.go

    			// unification will take care of matching against a
    			// defined or literal type automatically.
    			// If y is also an unbound type parameter, we will end
    			// up here again with x and y swapped, so we don't
    			// need to take care of that case separately.
    			if cx := coreType(x); cx != nil {
    				if traceInference {
    					u.tracef("core %s ≡ %s", xorig, yorig)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/container_manager_linux.go

    			recorder.Event(nodeRef, v1.EventTypeWarning, events.PossibleMemoryBackedVolumesOnDisk,
    				"The tmpfs noswap option is not supported. Memory-backed volumes (e.g. secrets, emptyDirs, etc.) "+
    					"might be swapped to disk and should no longer be considered secure.",
    			)
    		}
    	}
    
    	var internalCapacity = v1.ResourceList{}
    	// It is safe to invoke `MachineInfo` on cAdvisor before logically initializing cAdvisor here because
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. src/go/types/builtins.go

    			types = append(types, typ)
    			if size >= 0 {
    				sizes = append(sizes, size)
    			}
    		}
    		if len(sizes) == 2 && sizes[0] > sizes[1] {
    			check.error(argList[1], SwappedMakeArgs, invalidArg+"length and capacity swapped")
    			// safe to continue
    		}
    		x.mode = value
    		x.typ = T
    		if check.recordTypes() {
    			check.recordBuiltinType(call.Fun, makeSig(x.typ, types...))
    		}
    
    	case _Max, _Min:
    		// max(x, ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/builtins0.go

    	_ = make([]int, - /* ERROR "must not be negative" */ 1, - /* ERROR "must not be negative" */ 1)
    	_ = make([]int, 1 /* ERROR "overflows" */ <<100, 1 /* ERROR "overflows" */ <<100)
    	_ = make([]int, 10 /* ERROR "length and capacity swapped" */ , 9)
    	_ = make([]int, 1 /* ERROR "overflows" */ <<100, 12345)
    	_ = make([]int, m /* ERROR "must be integer" */ )
            _ = &make /* ERROR "cannot take address" */ ([]int, 0)
    
    	// maps
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

      if (!IsRankedInt(op_input->getResult(0), 8)) return false;
    
      return true;
    }
    
    // Convert an einsum equation into XLA Dot Dimension Numbers.
    // If the return flag is true, the arguments for XlaDotV2 should be swapped.
    xla::DotDimensionNumbers ConvertEinsumEquationIntoXlaDotDimensionNumbers(
        const StringRef equation) {
      xla::DotDimensionNumbers dnums;
    
      // 1. Parse the given equation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  6. src/go/types/unify.go

    			// unification will take care of matching against a
    			// defined or literal type automatically.
    			// If y is also an unbound type parameter, we will end
    			// up here again with x and y swapped, so we don't
    			// need to take care of that case separately.
    			if cx := coreType(x); cx != nil {
    				if traceInference {
    					u.tracef("core %s ≡ %s", xorig, yorig)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. doc/go_mem.html

    <p class="rule">
    A receive from an unbuffered channel is synchronized before the completion of
    the corresponding send on that channel.
    </p>
    
    <p>
    This program (as above, but with the send and receive statements swapped and
    using an unbuffered channel):
    </p>
    
    <pre>
    var c = make(chan int)
    var a string
    
    func f() {
    	a = "hello, world"
    	&lt;-c
    }
    
    func main() {
    	go f()
    	c &lt;- 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  8. src/go/printer/printer.go

    			if p.indent < 0 {
    				p.internalError("negative indentation:", p.indent)
    				p.indent = 0
    			}
    		case newline, formfeed:
    			// A line break immediately followed by a "correcting"
    			// unindent is swapped with the unindent - this permits
    			// proper label positioning. If a comment is between
    			// the line break and the label, the unindent is not
    			// part of the comment whitespace prefix and the comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		}
    	}
    	if succChanged {
    		if len(succs) != 2 {
    			log.Fatalf("changed successors, len!=2 in %s", rule)
    		}
    		if succs[0] != newsuccs[1] || succs[1] != newsuccs[0] {
    			log.Fatalf("can only handle swapped successors in %s", rule)
    		}
    		rr.add(stmtf("b.swapSuccessors()"))
    	}
    
    	if *genLog {
    		rr.add(stmtf("logRule(%q)", rule.Loc))
    	}
    	return rr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    // ordering needs to match the same byte ordering the compiler would emit. The compiler always
    // emits the bitmap data in little endian byte ordering, so on big endian platforms these
    // uintptrs will have their byte orders swapped from what they normally would be.
    //
    // heapBitsInSpan(span.elemsize) or span.isUserArenaChunk must be true.
    //
    //go:nosplit
    func (span *mspan) heapBits() []uintptr {
    	const doubleCheck = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top