Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for for1 (0.09 sec)

  1. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_edit.jsp

                                            <la:text styleId="hostname" property="hostname" styleClass="form-control"/>
                                        </div>
                                    </div>
                                    <div class="form-group row">
                                        <label for="port" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.webauth_port"/></label>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig_edit.jsp

                                            <la:text styleId="name" property="name" styleClass="form-control"/>
                                        </div>
                                    </div>
                                    <div class="form-group row">
                                        <label for="handlerName" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.handler_name"/></label>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 9.6K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth_edit.jsp

                                            <la:text styleId="hostname" property="hostname" styleClass="form-control"/>
                                        </div>
                                    </div>
                                    <div class="form-group row">
                                        <label for="port" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.file_auth_port"/></label>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/labeltype/admin_labeltype_edit.jsp

                                            <la:text styleId="name" property="name" styleClass="form-control"/>
                                        </div>
                                    </div>
                                    <div class="form-group row">
                                        <label for="value" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.labeltype_value"/></label>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	index uint16
    }
    
    // functions dispatchable per form
    type lookupFunc func(b input, i int) Properties
    
    // formInfo holds Form-specific functions and tables.
    type formInfo struct {
    	form                     Form
    	composing, compatibility bool // form type
    	info                     lookupFunc
    	nextMain                 iterFunc
    }
    
    var formTable = []*formInfo{{
    	form:          NFC,
    	composing:     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. src/mime/multipart/formdata_test.go

    	for i := 0; i < numFiles; i++ {
    		name := fmt.Sprint(i)
    		if got := len(form.File[name]); got != 1 {
    			t.Fatalf("form.File[%q] has %v entries, want 1", name, got)
    		}
    		fh := form.File[name][0]
    		file, err := fh.Open()
    		if err != nil {
    			t.Fatalf("form.File[%q].Open() = %v", name, err)
    		}
    		if distinct {
    			if _, ok := file.(*os.File); !ok {
    				t.Fatalf("form.File[%q].Open: %T, want *os.File", name, file)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	index uint16
    }
    
    // functions dispatchable per form
    type lookupFunc func(b input, i int) Properties
    
    // formInfo holds Form-specific functions and tables.
    type formInfo struct {
    	form                     Form
    	composing, compatibility bool // form type
    	info                     lookupFunc
    	nextMain                 iterFunc
    }
    
    var formTable = []*formInfo{{
    	form:          NFC,
    	composing:     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. src/mime/multipart/formdata.go

    			maxMemoryBytes -= n
    		}
    		form.File[name] = append(form.File[name], fh)
    	}
    
    	return form, nil
    }
    
    func mimeHeaderSize(h textproto.MIMEHeader) (size int64) {
    	size = 400
    	for k, vs := range h {
    		size += int64(len(k))
    		size += 200 // map entry overhead
    		for _, v := range vs {
    			size += int64(len(v))
    		}
    	}
    	return size
    }
    
    // Form is a parsed multipart form.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/keymatch/admin_keymatch_edit.jsp

                                            <la:text styleId="term" property="term" styleClass="form-control"/>
                                        </div>
                                    </div>
                                    <div class="form-group row">
                                        <label for="query" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.key_match_query"/></label>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/request-forms.md

    !!! info
        `Form` is a class that inherits directly from `Body`.
    
    !!! tip
        To declare form bodies, you need to use `Form` explicitly, because without it the parameters would be interpreted as query parameters or body (JSON) parameters.
    
    ## About "Form Fields"
    
    The way HTML forms (`<form></form>`) sends the data to the server normally uses a "special" encoding for that data, it's different from JSON.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top