Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for pdat0 (0.17 sec)

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

    		}
    	}
    }
    
    // addSEH adds SEH information to the COFF file f.
    func (f *peFile) addSEH(ctxt *Link) {
    	// .pdata section can exist without the .xdata section.
    	// .xdata section depends on the .pdata section.
    	if Segpdata.Length == 0 {
    		return
    	}
    	d := pefile.addSection(".pdata", int(Segpdata.Length), int(Segpdata.Length))
    	d.characteristics = IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_READ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  2. src/image/png/reader.go

    			// check above that width != 0, and so len(cdat) != 0.
    			for i := 0; i < bytesPerPixel; i++ {
    				cdat[i] += pdat[i] / 2
    			}
    			for i := bytesPerPixel; i < len(cdat); i++ {
    				cdat[i] += uint8((int(cdat[i-bytesPerPixel]) + int(pdat[i])) / 2)
    			}
    		case ftPaeth:
    			filterPaeth(cdat, pdat, bytesPerPixel)
    		default:
    			return nil, FormatError("bad filter type")
    		}
    
    		// Convert from bytes to colors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    			};
    		},
    		_fn : { },
    		plugin : function (pname, pdata) {
    			pdata = $.extend({}, {
    				__init		: $.noop,
    				__destroy	: $.noop,
    				_fn			: {},
    				defaults	: false
    			}, pdata);
    			plugins[pname] = pdata;
    
    			$.jstree.defaults[pname] = pdata.defaults;
    			$.each(pdata._fn, function (i, val) {
    				val.plugin		= pname;
    				val.old			= $.jstree._fn[i];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  4. src/debug/pe/file_test.go

    			{".pdata", 0x0, 0x0, 0xc, 0x150, 0x17a, 0x0, 0x3, 0x0, 0x40300040},
    		},
    		symbols: []*Symbol{
    			{".file", 0x0, -2, 0x0, 0x67},
    			{"main", 0x0, 1, 0x20, 0x2},
    			{".text", 0x0, 1, 0x0, 0x3},
    			{".data", 0x0, 2, 0x0, 0x3},
    			{".bss", 0x0, 3, 0x0, 0x3},
    			{".rdata", 0x0, 4, 0x0, 0x3},
    			{".xdata", 0x0, 5, 0x0, 0x3},
    			{".pdata", 0x0, 6, 0x0, 0x3},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 02:25:16 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    			if err != nil {
    				Errorf(nil, "%v", err)
    				return
    			}
    			if len(ls.Resources) != 0 {
    				setpersrc(ctxt, ls.Resources)
    			}
    			if ls.PData != 0 {
    				sehp.pdata = append(sehp.pdata, ls.PData)
    			}
    			if ls.XData != 0 {
    				sehp.xdata = append(sehp.xdata, ls.XData)
    			}
    			ctxt.Textp = append(ctxt.Textp, ls.Textp...)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/html/template/escape_test.go

    		E: []string{},
    		N: 42,
    		B: &badMarshaler{},
    		M: &goodMarshaler{},
    		U: nil,
    		Z: nil,
    		W: HTML(`&iexcl;<b class="foo">Hello</b>, <textarea>O'World</textarea>!`),
    		I: "${ asd `` }",
    	}
    	pdata := &data
    
    	tests := []struct {
    		name   string
    		input  string
    		output string
    	}{
    		{
    			"if",
    			"{{if .T}}Hello{{end}}, {{.C}}!",
    			"Hello, &lt;Cincinnati&gt;!",
    		},
    		{
    			"else",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    // symbols, and assigns symbols to sections.
    func (state *dodataState) allocateSEHSections(ctxt *Link) {
    	if len(sehp.pdata) > 0 {
    		sect := state.allocateNamedDataSection(&Segpdata, ".pdata", []sym.SymKind{}, 04)
    		state.assignDsymsToSection(sect, sehp.pdata, sym.SRODATA, aligndatsize)
    		state.checkdatsize(sym.SSEHSECT)
    	}
    	if len(sehp.xdata) > 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)
  8. cmd/iam.go

    	}
    
    	d, err := sys.store.GetPolicyDoc(policyName)
    	if err != nil {
    		return nil, err
    	}
    
    	pdata, err := json.Marshal(d.Policy)
    	if err != nil {
    		return nil, err
    	}
    
    	return &madmin.PolicyInfo{
    		PolicyName: policyName,
    		Policy:     pdata,
    		CreateDate: d.CreateDate,
    		UpdateDate: d.UpdateDate,
    	}, nil
    }
    
    // ListPolicies - lists all canned policies.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/sql-databases.md

    ## CRUD utils
    
    Now let's see the file `sql_app/crud.py`.
    
    In this file we will have reusable functions to interact with the data in the database.
    
    **CRUD** comes from: **C**reate, **R**ead, **U**pdate, and **D**elete.
    
    ...although in this example we are only creating and reading.
    
    ### Read data
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  10. docs/zh/docs/tutorial/sql-databases.md

    ## CRUD工具
    
    现在让我们看看文件`sql_app/crud.py`。
    
    在这个文件中,我们将编写可重用的函数用来与数据库中的数据进行交互。
    
    **CRUD**分别为:增加(**C**reate)、查询(**R**ead)、更改(**U**pdate)、删除(**D**elete),即增删改查。
    
    ...虽然在这个例子中我们只是新增和查询。
    
    ### 读取数据
    
    从 `sqlalchemy.orm`中导入`Session`,这将允许您声明`db`参数的类型,并在您的函数中进行更好的类型检查和完成。
    
    导入之前的`models`(SQLAlchemy 模型)和`schemas`(Pydantic*模型*/模式)。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 07 21:00:22 UTC 2024
    - 27.3K bytes
    - Viewed (0)
Back to top