Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/vendor/golang.org/x/tools/internal/typeparams/termlist.go

    	// If there's a 𝓤 term, the entire list is 𝓤.
    	// If the termlist is in normal form, this requires at most
    	// one iteration.
    	for _, x := range xl {
    		if x != nil && x.typ == nil {
    			return true
    		}
    	}
    	return false
    }
    
    // norm returns the normal form of xl.
    func (xl termlist) norm() termlist {
    	// Quadratic algorithm, but good enough for now.
    	// TODO(gri) fix asymptotic performance
    	used := make([]bool, len(xl))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 21:08:44 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/pathmap/admin_pathmap_edit.jsp

                                    </div>
                                    <div class="form-group row">
                                        <label for="sortOrder" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.sortOrder"/></label>
                                        <div class="form-inline col-sm-9">
                                            <la:errors property="sortOrder"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 28 06:09:47 UTC 2021
    - 7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java

            if (!forkedExecutions.isEmpty()) {
                for (Map.Entry<String, List<MojoExecution>> fork : forkedExecutions.entrySet()) {
                    logger.debug("--- init fork of " + fork.getKey() + " for " + mojoExecId + " ---");
    
                    debugDependencyRequirements(fork.getValue());
    
                    for (MojoExecution forkedExecution : fork.getValue()) {
                        debugMojoExecution(forkedExecution);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top