Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 561 for xform (0.05 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                return profiles;
            }
            final Interpolator xform = new RegexBasedInterpolator();
            xform.setCacheAnswers(true);
            Stream.of(context.getUserProperties(), context.getSystemProperties())
                    .map(MapBasedValueSource::new)
                    .forEach(xform::addValueSource);
    
            class ProfileInterpolator extends MavenTransformer implements UnaryOperator<Profile> {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                return profiles;
            }
            final Interpolator xform = new RegexBasedInterpolator();
            xform.setCacheAnswers(true);
            Stream.of(context.getUserProperties(), context.getSystemProperties())
                    .map(MapBasedValueSource::new)
                    .forEach(xform::addValueSource);
    
            class ProfileInterpolator extends MavenTransformer
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. docs/tr/docs/tutorial/request-forms.md

    !!! info "Bilgi"
        `Form` doğrudan `Body` sınıfını miras alan bir sınıftır.
    
    !!! tip "İpucu"
        Form gövdelerini tanımlamak için `Form` sınıfını kullanmanız gerekir; çünkü bu olmadan parametreler sorgu parametreleri veya gövde (JSON) parametreleri olarak yorumlanır.
    
    ## "Form Alanları" Hakkında
    
    HTML formlarının (`<form></form>`) verileri sunucuya gönderirken JSON'dan farklı özel bir kodlama kullanır.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed May 08 19:10:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. docs/en/docs/reference/parameters.md

    * `Path()`
    * `Body()`
    * `Cookie()`
    * `Header()`
    * `Form()`
    * `File()`
    
    You can import them all directly from `fastapi`:
    
    ```python
    from fastapi import Body, Cookie, File, Form, Header, Path, Query
    ```
    
    ::: fastapi.Query
    
    ::: fastapi.Path
    
    ::: fastapi.Body
    
    ::: fastapi.Cookie
    
    ::: fastapi.Header
    
    ::: fastapi.Form
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 603 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/math/big/floatmarsh.go

    	oldMode := z.mode
    
    	b := buf[1]
    	z.mode = RoundingMode((b >> 5) & 7)
    	z.acc = Accuracy((b>>3)&3) - 1
    	z.form = form((b >> 1) & 3)
    	z.neg = b&1 != 0
    	z.prec = byteorder.BeUint32(buf[2:])
    
    	if z.form == finite {
    		if len(buf) < 10 {
    			return errors.New("Float.GobDecode: buffer too small for finite form float")
    		}
    		z.exp = int32(byteorder.BeUint32(buf[6:]))
    		z.mant = z.mant.setBytes(buf[10:])
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. 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)
Back to top