Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for fakeVM (0.07 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    			} else {
    				// With external linking, ld will crash if there is several
    				// .FILE and DWARF debugging enable, somewhere during
    				// the relocation phase.
    				// Therefore, all packages are merged under a fake .FILE
    				// "go_functions".
    				// TODO(aix); remove once ld has been fixed or the triggering
    				// relocation has been found and fixed.
    				if currSymSrcFile.name == "" {
    					currSymSrcFile.name = ldr.SymPkg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.acceptFrame() // ACK
        peer.sendFrame().ping(false, 2, 0)
        peer.acceptFrame()
        peer.play()
    
        // Play it back.
        val connection = connect(peer)
    
        // fake a settings frame with clear flag set.
        val settings2 = Settings()
        settings2[Settings.MAX_CONCURRENT_STREAMS] = 60000
        connection.readerRunnable.applyAndAckSettings(true, settings2)
        connection.withLock {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"setDefaultedStr":      "v2",
    				"setNullableStr":       "v3",
    				"setToNullNullableStr": nil,
    
    				// we don't run the defaulter in this test suite (depending on it would introduce a cycle)
    				// so we fake it :(
    				"unsetDefaultedStr": "default value",
    			},
    			schema: objectTypePtr(map[string]schema.Structural{
    				"unsetPlainStr":     stringType,
    				"unsetDefaultedStr": withDefault("default value", stringType),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf.go

    		"type:internal/abi.StructType",
    		"type:internal/abi.InterfaceType",
    		"type:internal/abi.ITab",
    		"type:internal/abi.Imethod"} {
    		d.defgotype(d.lookupOrDiag(typ))
    	}
    
    	// fake root DIE for compile unit DIEs
    	var dwroot dwarf.DWDie
    	flagVariants := make(map[string]bool)
    
    	for _, lib := range ctxt.Library {
    
    		consts := d.ldr.Lookup(dwarf.ConstInfoPrefix+lib.Pkg, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top