Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java

        @Execute
        public ActionResponse index(final ThumbnailForm form) {
            validate(form, messages -> {}, () -> asHtml(virtualHost(path_Error_ErrorJsp)));
            if (isLoginRequired()) {
                return redirectToLogin();
            }
    
            final Map<String, Object> doc =
                    searchHelper.getDocumentByDocId(form.docId, queryFieldConfig.getResponseFields(), getUserBean()).orElse(null);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/net/http/request.go

    	return
    }
    
    // ParseForm populates r.Form and r.PostForm.
    //
    // For all requests, ParseForm parses the raw query from the URL and updates
    // r.Form.
    //
    // For POST, PUT, and PATCH requests, it also reads the request body, parses it
    // as a form and puts the results into both r.PostForm and r.Form. Request body
    // parameters take precedence over URL query string values in r.Form.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. LICENSES/vendor/sigs.k8s.io/yaml/LICENSE

          exercising permissions granted by this License.
    
          "Source" form shall mean the preferred form for making modifications,
          including but not limited to software source code, documentation
          source, and configuration files.
    
          "Object" form shall mean any form resulting from mechanical
          transformation or translation of a Source form, including but
          not limited to compiled object code, generated documentation,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			requestedName: "t10-foo1",
    			recursive:     true,
    			fieldSelector: fields.ParseSelectorOrDie("metadata.name=t10-foo1"),
    			watchTests: []*testWatchStruct{
    				{baseNamespacedPod("t10-foo1", "t10-ns1"), true, watch.Added},
    				{baseNamespacedPod("t10-foo1", "t10-ns2"), true, watch.Added},
    				{baseNamespacedPod("t10-foo2", "t10-ns1"), false, ""},
    				{baseNamespacedPodUpdated("t10-foo1", "t10-ns1"), true, watch.Modified},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/cases.go

    // of options with their own. This is handy, for instance, for the precis
    // package which would override the default to not handle the Greek final sigma.
    
    var (
    	// NoLower disables the lowercasing of non-leading letters for a title
    	// caser.
    	NoLower Option = noLower
    
    	// Compact omits mappings in case folding for characters that would grow the
    	// input. (Unimplemented.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. cmd/postpolicyform.go

    	// Iterate over policy conditions and check them against received form fields
    	for _, policy := range postPolicyForm.Conditions.Policies {
    		// Form fields names are in canonical format, convert conditions names
    		// to canonical for simplification purpose, so `$key` will become `Key`
    		formCanonicalName := http.CanonicalHeaderKey(strings.TrimPrefix(policy.Key, "$"))
    		// Operator for the current policy condition
    		op := policy.Operator
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. cmd/sts-handlers.go

    	}
    
    	ctx = newContext(r, w, action)
    
    	token := r.Form.Get(stsToken)
    	if token == "" {
    		token = r.Form.Get(stsWebIdentityToken)
    	}
    
    	accessToken := r.Form.Get(stsWebIdentityAccessToken)
    
    	// RoleARN parameter processing: If a role ARN is given in the request, we
    	// use that and validate the authentication request. If not, we assume this
    	// is an STS request for a claim based IDP (if one is present) and set
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. pilot/pkg/xds/v3/model.go

    )
    
    // GetShortType returns an abbreviated form of a type, useful for logging or human friendly messages
    func GetShortType(typeURL string) string {
    	return model.GetShortType(typeURL)
    }
    
    // GetMetricType returns the form of a type reported for metrics
    func GetMetricType(typeURL string) string {
    	return model.GetMetricType(typeURL)
    }
    
    // GetResourceType returns resource form of an abbreviated form
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. doc/README.md

    	[Request]                          # short form, for symbols in the package being documented
    	[net/http]                         # package link
    	[#12345](/issue/12345)             # GitHub issues
    	[CL 6789](/cl/6789)                # Gerrit changelists
    
    To preview `next` content in merged form using a local instance of the website, run:
    
    ```
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/internal/objabi/reloctype.go

    	R_ADDRPOWER_TOCREL
    
    	// R_ADDRPOWER_TOCREL_DS relocates a D-form, DS-form instruction sequence like
    	// R_ADDRPOWER_DS but inserts the offset from the TOC to the address of the
    	// relocated symbol rather than the symbol's address.
    	R_ADDRPOWER_TOCREL_DS
    
    	// R_ADDRPOWER_D34 relocates a single prefixed D-form load/store operation.  All
    	// prefixed forms are D form. The high 18 bits are stored in the prefix,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top