Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 517 for normalize_ (0.14 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/kubeopenapi_test.go

    		orig := &Structural{}
    		f.Fuzz(orig)
    
    		// normalize Structural.ValueValidation to zero values if it was nil before
    		normalizer := Visitor{
    			Structural: func(s *Structural) bool {
    				if s.ValueValidation == nil {
    					s.ValueValidation = &ValueValidation{}
    					return true
    				}
    				return false
    			},
    		}
    		normalizer.Visit(orig)
    
    		kubeOpenAPI := orig.ToKubeOpenAPI()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:16 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/fingerprint/classpath/impl/ClasspathFingerprintingStrategy.java

     * For the resources in each classpath entry, normalization takes the relative path of the resource and possibly normalizes its contents.
     * </p>
     */
    public class ClasspathFingerprintingStrategy extends AbstractFingerprintingStrategy {
        private final NonJarFingerprintingStrategy nonZipFingerprintingStrategy;
        private final ResourceSnapshotterCacheService cacheService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GradleWelcomeOutputNormalizer.groovy

     */
    
    package org.gradle.integtests.fixtures.logging
    
    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    class GradleWelcomeOutputNormalizer implements OutputNormalizer {
        @Override
        String normalize(String commandOutput, ExecutionMetadata executionMetadata) {
            return commandOutput.replaceAll("Welcome to Gradle \\d.*\\.", "Welcome to Gradle X.Y.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

    import org.codelibs.fess.suggest.entity.SuggestItem;
    import org.codelibs.fess.suggest.exception.SuggesterException;
    import org.codelibs.fess.suggest.index.contents.querylog.QueryLog;
    import org.codelibs.fess.suggest.normalizer.Normalizer;
    import org.codelibs.fess.suggest.util.SuggestUtil;
    import org.opensearch.OpenSearchStatusException;
    import org.opensearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken;
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/math/frexp.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    // Frexp breaks f into a normalized fraction
    // and an integral power of two.
    // It returns frac and exp satisfying f == frac × 2**exp,
    // with the absolute value of frac in the interval [½, 1).
    //
    // Special cases are:
    //
    //	Frexp(±0) = ±0, 0
    //	Frexp(±Inf) = ±Inf, 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 929 bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/LineEndingNormalizingResourceHasher.java

    import java.io.File;
    import java.io.IOException;
    import java.util.Optional;
    
    /**
     * A {@link ResourceHasher} that normalizes line endings while hashing the file.  It detects whether a file is text or binary and only
     * normalizes line endings for text files.  If a file is detected to be binary, we fall back to the existing non-normalized hash.
     *
     * See {@link LineEndingNormalizingInputStreamHasher}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/SampleOutputNormalizer.groovy

    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    import java.util.regex.Pattern
    
    @CompileStatic
    class SampleOutputNormalizer implements OutputNormalizer {
        private static final String NORMALIZED_SAMPLES_PATH = "/home/user/gradle/samples"
        private static final String NORMALIZED_SAMPLES_FILE_URL = "file:///home/user/gradle/samples/"
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultUrlNormalizer.java

     */
    package org.apache.maven.model.path;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    /**
     * Normalizes a URL.
     *
     */
    @Named
    @Singleton
    public class DefaultUrlNormalizer implements UrlNormalizer {
    
        @Override
        public String normalize(String url) {
            String result = url;
    
            if (result != null) {
                while (true) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/ClasspathNormalizer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.tasks;
    
    /**
     * Normalizes file input that represents a Java runtime classpath.
     *
     * Compared to the default behavior this normalizer keeps the order of any root files,
     * but ignores the order and timestamps of files in directories and ZIP/JAR files.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 28 21:23:55 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultUrlNormalizer.java

    import org.apache.maven.api.di.Named;
    import org.apache.maven.api.di.Singleton;
    import org.apache.maven.api.services.model.UrlNormalizer;
    
    /**
     * Normalizes a URL.
     *
     */
    @Named
    @Singleton
    public class DefaultUrlNormalizer implements UrlNormalizer {
    
        @Override
        public String normalize(String url) {
            String result = url;
    
            if (result != null) {
                while (true) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top