Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 323 for farm (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

        }
    
        @Execute
        @Secured({ ROLE })
        public HtmlResponse upgradeFrom(final UpgradeForm form) {
            validate(form, messages -> {}, this::asIndexHtml);
            verifyToken(this::asIndexHtml);
    
            if (VERSION_13_0.equals(form.targetVersion)) {
                try {
                    upgradeFrom13_0();
                    upgradeFrom13_1();
                    upgradeFrom13_2();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  2. src/math/big/float.go

    	}
    
    	z.neg = x.neg != y.neg
    
    	if x.form == finite && y.form == finite {
    		// x * y (common case)
    		z.umul(x, y)
    		return z
    	}
    
    	z.acc = Exact
    	if x.form == zero && y.form == inf || x.form == inf && y.form == zero {
    		// ±0 * ±Inf
    		// ±Inf * ±0
    		// value of z is undefined but make sure it's valid
    		z.form = zero
    		z.neg = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  3. licenses/github.com/hashicorp/go-version/LICENSE

         restrict the recipients’ rights in the Source Code Form.
    
    3.2. Distribution of Executable Form
    
         If You distribute Covered Software in Executable Form then:
    
         a. such Covered Software must also be made available in Source Code Form,
            as described in Section 3.1, and You must inform recipients of the
            Executable Form how they can obtain a copy of such Source Code Form by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/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: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/database/sql/convert_test.go

    	switch form {
    	default:
    		return fmt.Errorf("unknown form %d", form)
    	case 1, 2:
    		d.form = form
    		d.neg = negative
    		return nil
    	case 0:
    	}
    	d.form = form
    	d.neg = negative
    	d.exponent = exponent
    
    	// This isn't strictly correct, as the extra bytes could be all zero,
    	// ignore this for this test.
    	if len(coefficient) > 16 {
    		return fmt.Errorf("coefficient too large")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. src/net/http/request_test.go

    		t.Errorf(`req.PostFormValue("z") = %q, want "post"`, bz)
    	}
    	if qs := req.Form["q"]; !reflect.DeepEqual(qs, []string{"foo", "bar"}) {
    		t.Errorf(`req.Form["q"] = %q, want ["foo", "bar"]`, qs)
    	}
    	if both := req.Form["both"]; !reflect.DeepEqual(both, []string{"y", "x"}) {
    		t.Errorf(`req.Form["both"] = %q, want ["y", "x"]`, both)
    	}
    	if prio := req.FormValue("prio"); prio != "2" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  7. cmd/sts-handlers.go

    	// maximum supported STS session policy size
    	maxSTSSessionPolicySize = 2048
    )
    
    type stsClaims map[string]interface{}
    
    func (c stsClaims) populateSessionPolicy(form url.Values) error {
    	if len(form) == 0 {
    		return nil
    	}
    
    	sessionPolicyStr := form.Get(stsPolicy)
    	if len(sessionPolicyStr) == 0 {
    		return nil
    	}
    
    	sessionPolicy, err := policy.ParseConfig(bytes.NewReader([]byte(sessionPolicyStr)))
    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. licenses/github.com/go-jose/go-jose/v4/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. licenses/cel.dev/expr/proto/test/v1/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. cmd/signature-v4.go

    	for k, v := range req.Form {
    		if !defaultSigParams.Contains(k) {
    			query[k] = v
    		}
    	}
    
    	// Get the encoded query.
    	encodedQuery := query.Encode()
    
    	// Verify if date query is same.
    	if req.Form.Get(xhttp.AmzDate) != query.Get(xhttp.AmzDate) {
    		return ErrSignatureDoesNotMatch
    	}
    	// Verify if expires query is same.
    	if req.Form.Get(xhttp.AmzExpires) != query.Get(xhttp.AmzExpires) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top