Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 121 for customizer (0.35 sec)

  1. internal/crypto/header_test.go

    			"X-Amz-Server-Side-Encryption-Customer-Algorithm": []string{""},
    			"X-Amz-Server-Side-Encryption-Customer-Key":       []string{""},
    			"X-Amz-Server-Side-Encryption-Customer-Key-Md5":   []string{""},
    		},
    		Expected: true,
    	}, // 4
    	{
    		Header: http.Header{
    			"X-Amz-Server-Side-Encryption-Customer-Algorithm": []string{"AES256"},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Jul 13 14:52:15 GMT 2022
    - 21.4K bytes
    - Viewed (0)
  2. samples/guide/src/main/java/okhttp3/recipes/PerCallSettings.java

      public void run() throws Exception {
        Request request = new Request.Builder()
            .url("http://httpbin.org/delay/1") // This URL is served with a 1 second delay.
            .build();
    
        // Copy to customize OkHttp for this request.
        OkHttpClient client1 = client.newBuilder()
            .readTimeout(500, TimeUnit.MILLISECONDS)
            .build();
        try (Response response = client1.newCall(request).execute()) {
    Java
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun May 22 01:29:42 GMT 2016
    - 1.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java

        @Required
        @Size(max = 100)
        @Pattern(regexp = "^[a-zA-Z0-9_]+$")
        public String value;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedPaths;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedPaths;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String permissions;
    
        @Size(max = 1000)
        public String virtualHost;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  4. schema/schema_test.go

    func (CustomizeTable) TableName() string {
    	return "customize"
    }
    
    func TestCustomizeTableName(t *testing.T) {
    	customize, err := schema.Parse(&CustomizeTable{}, &sync.Map{}, schema.NamingStrategy{})
    	if err != nil {
    		t.Fatalf("failed to parse pointer user, got error %v", err)
    	}
    
    	if customize.Table != "customize" {
    		t.Errorf("Failed to customize table with TableName method")
    	}
    }
    
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Fri Dec 15 08:31:23 GMT 2023
    - 12.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/elevateword/CreateForm.java

     */
    package org.codelibs.fess.app.web.admin.elevateword;
    
    import javax.validation.constraints.Size;
    
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.validation.CustomSize;
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author codelibs
     * @author Keiichi Watanabe
     */
    public class CreateForm {
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  6. manifests/charts/UPDATING-CHARTS.md

    due to design choices in Helm.
    The underlying Kubernetes resources we configure have 1000s of fields; given enough users and bespoke use cases,
    eventually someone will want to customize every one of those fields.
    If all fields are exposed in `values.yaml`, we end up with an massive API that is also likely worse than just using the Kubernetes API directly.
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jul 27 18:28:55 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  7. apache-maven/src/site/apt/index.apt.vm

    ~~ under the License.
    
     -----
     ${project.name}
     -----
     Hervé Boutemy
     -----
     2021-07-11
     -----
    
    ${project.name}
    
     ${project.description}
    
    * References
    
     * <<<mvn>>> invocation can be customized through pre-invocation script calls, that can be disabled by setting <<<MAVEN_SKIP_RC>>> environment variable:
    
    *----------+--------------------------------------------+-----------------------+
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Aug 20 00:26:03 GMT 2021
    - 1.9K bytes
    - Viewed (0)
  8. dbflute_fess/dfprop/outsideSqlMap.dfprop

        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isGenerateProcedureCustomizeEntity: (NotRequired - Default false)
        #   [true]
        #     The customize entities for procedure's out-parameter
        #     and not-param-result are auto-generated.
        #     And also not-param-result's properties are auto-generated.
        #     Target procedures are executed actually at Sql2Entity task.
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java

    import javax.validation.constraints.Pattern;
    import javax.validation.constraints.Size;
    
    import org.codelibs.fess.app.web.CrudMode;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.validation.CustomSize;
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    public class CreateForm {
    
        @ValidateTypeFailure
        public Integer crudMode;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  10. docs/hotfixes.md

    ```
    λ CRED_DIR=/media/builder/minio make docker-hotfix-push
    ```
    
    #### Builds the hotfix container and pushes to registry.min.dev/<customer>/minio
    
    ```
    λ REPO="registry.min.dev/<customer>" CRED_DIR=/media/builder/minio make docker-hotfix-push
    ```
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Feb 14 21:36:02 GMT 2024
    - 5K bytes
    - Viewed (0)
Back to top