Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for asan (0.12 sec)

  1. src/cmd/go/alldocs.go

    //		linux/ppc64le and linux/arm64 (only for 48-bit VMA).
    //	-msan
    //		enable interoperation with memory sanitizer.
    //		Supported only on linux/amd64, linux/arm64, linux/loong64, freebsd/amd64
    //		and only with Clang/LLVM as the host C compiler.
    //		PIE build mode will be used on all platforms except linux/amd64.
    //	-asan
    //		enable interoperation with address sanitizer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    }
    
    // instrumentFields instruments a read/write operation on addr.
    // If it is instrumenting for MSAN or ASAN and t is a struct type, it instruments
    // operation for each field, instead of for the whole struct.
    func (s *state) instrumentFields(t *types.Type, addr *ssa.Value, kind instrumentKind) {
    	if !(base.Flag.MSan || base.Flag.ASan) || !t.IsStruct() {
    		s.instrument(t, addr, kind)
    		return
    	}
    	for _, f := range t.Fields() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	if p.Standard && p.ImportPath == "runtime/cgo" {
    		cgoflags = append(cgoflags, "-import_runtime_cgo=false")
    	}
    	if p.Standard && (p.ImportPath == "runtime/race" || p.ImportPath == "runtime/msan" || p.ImportPath == "runtime/cgo" || p.ImportPath == "runtime/asan") {
    		cgoflags = append(cgoflags, "-import_syscall=false")
    	}
    
    	// cgoLDFLAGS, which includes p.CgoLDFLAGS, can be very long.
    	// Pass it to cgo on the command line, so that we use a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    	sbld := l.CreateSymForUpdate(p, 0)
    	sbld.Addstring(value)
    	sbld.SetType(sym.SRODATA)
    
    	// Don't reset the variable's size. String variable usually has size of
    	// 2*PtrSize, but in ASAN build it can be larger due to red zone.
    	// (See issue 56175.)
    	bld.SetData(make([]byte, arch.PtrSize*2))
    	bld.SetReadOnly(false)
    	bld.ResetRelocs()
    	bld.SetAddrPlus(arch, 0, sbld.Sym(), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. RELEASE.md

    part of the next release.
    
    ## Thanks to our Contributors
    
    This release contains contributions from many people at Google, as well as:
    
    4d55397500, Aghasy, Alan Du, Alan Lee, Alan Yee, Alex Wiltschko, Animesh
    Karnewar, Ankit Gupta, Anton Matosov, Aris L, Ben Barsdell, Brent Yi, Brett
    Koonce, Carl Thomé, cbockman, Chikanaga Tomoyuki, Chris Tava, CéDric Deltheil,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_AsinOp : TF_Op<"Asin", [Pure, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes the trignometric inverse sine of x element-wise.";
    
      let description = [{
    The `tf.math.asin` operation returns the inverse of `tf.math.sin`, such that
    if `y = tf.math.sin(x)` then, `x = tf.math.asin(y)`.
    
    **Note**: The output of `tf.math.asin` will lie within the invertible range
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    		// and after such time has passed, the kubelet actually deletes it from the store. We receive an update
    		// for modification of the deletion timestamp and expect an job to create more pods asap, not wait
    		// until the kubelet actually deletes the pod.
    		jm.deletePod(logger, curPod, false)
    		return
    	}
    
    	// Don't check if oldPod has the finalizer, as during ownership transfer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    // Function is executed only during Kubelet start which improves latency to ready node by updating
    // kubelet state, runtime status and node statuses ASAP.
    func (kl *Kubelet) fastStatusUpdateOnce() {
    	ctx := context.Background()
    	start := kl.clock.Now()
    	stopCh := make(chan struct{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. CREDITS

          file or class name and description of purpose be included on the
          same "printed page" as the copyright notice for easier
          identification within third-party archives.
    
       Copyright 2022 Alan Shreve (@inconshreveable)
    
       Licensed under the Apache License, Version 2.0 (the "License");
       you may not use this file except in compliance with the License.
       You may obtain a copy of the License at
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top