Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 499 for normalizeID (0.16 sec)

  1. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/BaseSamplesTest.java

     * limitations under the License.
     */
    
    package org.gradle.docs.samples;
    
    import org.gradle.exemplar.test.normalizer.FileSeparatorOutputNormalizer;
    import org.gradle.exemplar.test.normalizer.GradleOutputNormalizer;
    import org.gradle.exemplar.test.normalizer.JavaObjectSerializationOutputNormalizer;
    import org.gradle.exemplar.test.runner.SampleModifiers;
    import org.gradle.exemplar.test.runner.SamplesOutputNormalizers;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/FileNormalizer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.tasks;
    
    /**
     * A normalizer used to remove unwanted noise when considering file inputs.
     * The default behavior without specifying a normalizer is to ignore the order of the files.
     *
     * @see TaskInputFilePropertyBuilder#withNormalizer(Class)
     *
     * @since 4.3
     */
    public interface FileNormalizer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 939 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/VersionCatalogView.java

            String normalizedAlias = normalize(alias);
            if (config.hasDependency(normalizedAlias)) {
                return Optional.of(dependencyFactory.create(normalizedAlias));
            }
            return Optional.empty();
        }
    
        @Override
        public final Optional<Provider<ExternalModuleDependencyBundle>> findBundle(String alias) {
            String normalizedBundle = normalize(alias);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/file/BasicFileResolver.java

                try {
                    return FileUtils.normalize(new File(new URI(original)));
                } catch (URISyntaxException e) {
                    throw UncheckedException.throwAsUncheckedException(e);
                }
            }
    
            File file = new File(original);
            if (file.isAbsolute()) {
                return FileUtils.normalize(file);
            }
    
            if (URI_SCHEME.matcher(original).matches()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    	rb.reset()
    	return res
    }
    
    // appendFlush appends the normalized segment to rb.out.
    func appendFlush(rb *reorderBuffer) bool {
    	for i := 0; i < rb.nrune; i++ {
    		start := rb.rune[i].pos
    		end := start + rb.rune[i].size
    		rb.out = append(rb.out, rb.byte[start:end]...)
    	}
    	return true
    }
    
    // flush appends the normalized segment to out and resets rb.
    func (rb *reorderBuffer) flush(out []byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        /**
         * Normalizes the given file, removing redundant segments like /../. If normalization
         * tries to step beyond the file system root, the root is returned.
         */
        public static File normalize(File src) {
            String path = src.getAbsolutePath();
            String normalizedPath = FilenameUtils.normalizeNoEndSeparator(path);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

      while (!bufferA.exhausted()) {
        val codePoint = bufferA.readUtf8CodePoint()
        if (!IDNA_MAPPING_TABLE.map(codePoint, bufferB)) return null
      }
    
      // 2. Normalize, from bufferB to bufferA.
      val normalized = normalizeNfc(bufferB.readUtf8())
      bufferA.writeUtf8(normalized)
    
      // 3. For each label, convert/validate Punycode.
      val decoded = Punycode.decode(bufferA.readUtf8()) ?: return null
    
      // 4.1 Validate.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (2)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

            return new OutputScrapingExecutionResult(LogContent.of(output), LogContent.of(error), true);
        }
    
        /**
         * @param output The build stdout content.
         * @param error The build stderr content. Must have normalized line endings.
         */
        protected OutputScrapingExecutionResult(LogContent output, LogContent error, boolean includeBuildSrc) {
            this.output = output;
            this.error = error;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskInputFilePropertyBuilderInternal.java

        @Override
        TaskInputFilePropertyBuilderInternal withNormalizer(Class<? extends org.gradle.api.tasks.FileNormalizer> normalizer);
    
        TaskInputFilePropertyBuilderInternal withInternalNormalizer(FileNormalizer normalizer);
    
        @Override
        TaskInputFilePropertyBuilderInternal withPropertyName(String propertyName);
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. cmd/kubelet/app/options/globalflags.go

    	addCadvisorFlags(fs)
    	addCredentialProviderFlags(fs)
    	verflag.AddFlags(fs)
    	logs.AddFlags(fs, logs.SkipLoggingConfigurationFlags())
    }
    
    // normalize replaces underscores with hyphens
    // we should always use hyphens instead of underscores when registering kubelet flags
    func normalize(s string) string {
    	return strings.Replace(s, "_", "-", -1)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top