Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 232 for normalization (0.19 sec)

  1. platforms/documentation/docs/src/snippets/tasks/inputNormalizationMetaInf/groovy/settings.gradle

    rootProject.name = 'input-normalization-manifest'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/inputNormalization/kotlin/build.gradle.kts

    plugins {
        java
    }
    
    // tag::ignore-build-info-properties[]
    normalization {
        runtimeClasspath {
            ignore("build-info.properties")
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187 bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/work/NormalizeLineEndings.java

     * will be considered equivalent.
     *
     * Line ending normalization is only supported with ASCII encoding and its supersets (i.e.
     * UTF-8, ISO-8859-1, etc).  Other encodings (e.g. UTF-16) will be treated as binary files
     * and will not be subject to line ending normalization.
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.api.Project.xml

                </tr>
                <tr>
                    <td>version</td>
                </tr>
                <tr>
                    <td>resources</td>
                </tr>
                <tr>
                    <td>normalization</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. .gitattributes

    # Auto detect text files and perform LF normalization
    * text=auto
    
    # Known text files
    *.java text
    *.xml text
    *.yml text
    *.md text
    *.sh text
    *.css text
    *.txt text
    
    # Known binary files
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Nov 04 21:50:10 UTC 2014
    - 196 bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelNormalizer.java

    import org.apache.maven.api.model.Model;
    import org.apache.maven.api.services.ModelBuilderRequest;
    import org.apache.maven.api.services.ModelProblemCollector;
    
    /**
     * Handles normalization of a model. In this context, normalization is the process of producing a canonical
     * representation for models that physically look different but are semantically equivalent.
     *
     */
    public interface ModelNormalizer {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. tests/integration/security/fuzz/README.md

    - request authentication: test potential bypass and crash in the JWT filter caused by malformed JWT token and common
      vulnerabilities in JWT validation.
    
    - authorization policy: test potential policy bypass issues caused by path normalization issues in Istio and Envoy.
    
    This test is currently optional and not executed in the normal integration test. It is recommended to run the test
    before each new Istio release and make sure all fuzz tests pass.
    
    ## Overview
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 09 02:34:11 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  8. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    @NonNullApi
    package org.gradle.internal.normalization.java;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 711 bytes
    - Viewed (0)
  9. plugin/pkg/admission/imagepolicy/config_test.go

    		},
    	}
    	for _, tt := range tests {
    		err := normalizeWebhookConfig(&tt.config)
    		if err == nil && tt.wantErr {
    			t.Errorf("%s: expected error from normalization and didn't have one", tt.test)
    		}
    		if err != nil && !tt.wantErr {
    			t.Errorf("%s: unexpected error from normalization: %v", tt.test, err)
    		}
    		if err == nil && !reflect.DeepEqual(tt.config, tt.normalizedConfig) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ProjectScopeServices.java

    import org.gradle.model.internal.registry.ModelRegistry;
    import org.gradle.normalization.internal.DefaultInputNormalizationHandler;
    import org.gradle.normalization.internal.DefaultRuntimeClasspathNormalization;
    import org.gradle.normalization.internal.InputNormalizationHandlerInternal;
    import org.gradle.normalization.internal.RuntimeClasspathNormalizationInternal;
    import org.gradle.plugin.software.internal.PluginScheme;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top