Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 804 for emits (0.04 sec)

  1. src/go/printer/printer_test.go

    }
    
    // identCount returns the number of identifiers found in f.
    func identCount(f *ast.File) int {
    	n := 0
    	for range idents(f) {
    		n++
    	}
    	return n
    }
    
    // Verify that the SourcePos mode emits correct //line directives
    // by testing that position information for matching identifiers
    // is maintained.
    func TestSourcePos(t *testing.T) {
    	const src = `
    package p
    import ( "go/printer"; "math" )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. architecture/ambient/ztunnel.md

    Ztunnel additionally will handle the rotation of these certificates (typically 24hr expiration) as they approach expiry.
    
    ## Telemetry
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/shell.go

    		print = func(a ...any) (int, error) {
    			return fmt.Fprint(os.Stderr, a...)
    		}
    	}
    	shared := &shellShared{
    		workDir:   workDir,
    		printFunc: print,
    	}
    	return &Shell{shellShared: shared}
    }
    
    // Print emits a to this Shell's output stream, formatting it like fmt.Print.
    // It is safe to call concurrently.
    func (sh *Shell) Print(a ...any) {
    	sh.printLock.Lock()
    	defer sh.printLock.Unlock()
    	sh.printFunc(a...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    	}
    	logger.V(2).Info("Claim entered phase", "PVC", klog.KObj(claim), "phase", phase)
    	return newClaim, nil
    }
    
    // updateClaimStatusWithEvent saves new claim.Status to API server and emits
    // given event on the claim. It saves the status and emits the event only when
    // the status has actually changed from the version saved in API server.
    // Parameters:
    //
    //	claim - claim to update
    //	phase - phase to set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/deadcode.go

    // we give up on static analysis, and mark all exported methods of all reachable
    // types as reachable.
    //
    // If the argument to MethodByName is a compile-time constant, the compiler
    // emits a relocation with the method name. Matching methods are kept in all
    // reachable types.
    //
    // Any unreached text symbols are removed from ctxt.Textp.
    func deadcode(ctxt *Link) {
    	ldr := ctxt.loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    			SETA, SETAE, SETB, SETBE, SETE, SETG, SETGE, SETL, SETLE, SETNE, SETNO, SETNP, SETNS, SETO, SETP, SETS,
    			SLDT, SMSW, STMXCSR, STR, VERR, VERW:
    			// For various reasons, libopcodes emits no suffix for these instructions.
    
    		case CRC32:
    			op += byteSizeSuffix(argBytes(&inst, inst.Args[1]))
    
    		case LGDT, LIDT, SGDT, SIDT:
    			op += byteSizeSuffix(inst.DataSize / 8)
    
    		case MOVZX, MOVSX:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf_test.go

    		}
    	}
    }
    
    func TestOptimizedOutParamHandling(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	mustHaveDWARF(t)
    	t.Parallel()
    
    	// This test is intended to verify that the compiler emits DWARF
    	// DIE entries for all input and output parameters, and that:
    	//
    	//   - attributes are set correctly for output params,
    	//   - things appear in the proper order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  8. src/compress/flate/deflate.go

    	// such as finding matches via 32-bit loads and compares.
    	baseMatchLength = 3       // The smallest match length per the RFC section 3.2.5
    	minMatchLength  = 4       // The smallest match length that the compressor actually emits
    	maxMatchLength  = 258     // The largest match length
    	baseMatchOffset = 1       // The smallest match offset
    	maxMatchOffset  = 1 << 15 // The largest match offset
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/runtime/sema.go

    			// the waiter G immediately.
    			// Note that waiter inherits our time slice: this is desirable
    			// to avoid having a highly contended semaphore hog the P
    			// indefinitely. goyield is like Gosched, but it emits a
    			// "preempted" trace event instead and, more importantly, puts
    			// the current G on the local runq instead of the global one.
    			// We only do this in the starving regime (handoff=true), as in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/plive.go

    			}
    			cache.be = lv.be
    		}
    		if len(lv.livenessMap.Vals) < 2000 {
    			cache.livenessMap = lv.livenessMap
    		}
    	}
    
    	// Emit the live pointer map data structures
    	ls := curfn.LSym
    	fninfo := ls.Func()
    	fninfo.GCArgs, fninfo.GCLocals = lv.emit()
    
    	p := pp.Prog(obj.AFUNCDATA)
    	p.From.SetConst(rtabi.FUNCDATA_ArgsPointerMaps)
    	p.To.Type = obj.TYPE_MEM
    	p.To.Name = obj.NAME_EXTERN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top