Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 232 for normalization (0.14 sec)

  1. src/cmd/go/internal/modfetch/codehost/svn.go

    	// The subversion CLI doesn't provide a command to write the repository
    	// directly to an archive, so we need to export it to the local filesystem
    	// instead. Unfortunately, the local filesystem might apply arbitrary
    	// normalization to the filenames, so we need to obtain those directly.
    	//
    	// 'svn export' prints the filenames as they are written, but from reading the
    	// svn source code (as of revision 1868933), those filenames are encoded using
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/termlist.go

    // It is in normal form.
    var allTermlist = termlist{new(term)}
    
    // termSep is the separator used between individual terms.
    const termSep = " | "
    
    // String prints the termlist exactly (without normalization).
    func (xl termlist) String() string {
    	if len(xl) == 0 {
    		return "∅"
    	}
    	var buf strings.Builder
    	for i, x := range xl {
    		if i > 0 {
    			buf.WriteString(termSep)
    		}
    		buf.WriteString(x.String())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 03 18:29:30 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    as described in <<java_plugin.adoc#sec:java_compile_avoidance,Java compile avoidance>>.
    
    Normalization applies to all zip files on the classpath (e.g. jars, wars, aars, apks, etc).  This allows Gradle to recognize when two zip files are functionally the same, even though the zip files themselves might be slightly different due to metadata (such as timestamps or file order).  Normalization applies not only to zip files directly on the classpath, but also to zip files nested inside directories...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. internal/config/identity/ldap/ldap.go

    // returned, otherwise the returned string is empty. The value returned here is
    // the value sent by the LDAP server and is used in minio as the server performs
    // LDAP specific normalization (including Unicode normalization).
    //
    // If the user is not found, err = nil, otherwise, err != nil.
    func (l *Config) GetValidatedDNForUsername(username string) (*xldap.DNSearchResult, error) {
    	conn, err := l.LDAP.Connect()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  5. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    // of hyphens ('-'), normalization, validity of runes, and the context rules.
    // In particular, ValidateLabels also sets the CheckHyphens and CheckJoiners flags
    // in UTS #46.
    func ValidateLabels(enable bool) Option {
    	return func(o *options) {
    		// Don't override existing mappings, but set one that at least checks
    		// normalization if it is not set.
    		if o.mapping == nil && enable {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            "@PathSensitive(PathSensitivity.NAME_ONLY)" | "@PathSensitive(PathSensitivity.NAME_ONLY)"
            "@PathSensitive(PathSensitivity.NONE)"      | "@PathSensitive(PathSensitivity.NONE)"
        }
    
        def "can attach #normalization to input artifact property with #type transformed artifact directory but it has no effect when not caching"() {
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelNormalizer.java

    import org.apache.maven.api.model.Plugin;
    import org.apache.maven.api.services.ModelBuilderRequest;
    import org.apache.maven.api.services.ModelProblemCollector;
    import org.apache.maven.api.services.model.*;
    
    /**
     * Handles normalization of a model.
     *
     */
    @Named
    @Singleton
    public class DefaultModelNormalizer implements ModelNormalizer {
    
        private DuplicateMerger merger = new DuplicateMerger();
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/go/types/termlist.go

    // It is in normal form.
    var allTermlist = termlist{new(term)}
    
    // termSep is the separator used between individual terms.
    const termSep = " | "
    
    // String prints the termlist exactly (without normalization).
    func (xl termlist) String() string {
    	if len(xl) == 0 {
    		return "∅"
    	}
    	var buf strings.Builder
    	for i, x := range xl {
    		if i > 0 {
    			buf.WriteString(termSep)
    		}
    		buf.WriteString(x.String())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/ProjectExecutionServices.java

    import org.gradle.internal.service.DefaultServiceRegistry;
    import org.gradle.internal.service.Provides;
    import org.gradle.internal.snapshot.ValueSnapshotter;
    import org.gradle.internal.work.AsyncWorkTracker;
    import org.gradle.normalization.internal.InputNormalizationHandlerInternal;
    
    import java.util.List;
    
    @SuppressWarnings("deprecation")
    public class ProjectExecutionServices extends DefaultServiceRegistry {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorTestSupport.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.normalization.java
    
    import groovy.transform.CompileStatic
    import groovy.transform.TupleConstructor
    import org.gradle.internal.UncheckedException
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top