Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 499 for normalizeID (0.29 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/impl/DefaultInputFingerprinterTest.groovy

                    NON_INCREMENTAL,
                    new InputFileValueSupplier(fileInput, normalizer, DirectorySensitivity.DEFAULT, LineEndingSensitivity.DEFAULT, { fileInput }))
                visitor.visitInputFileProperty(
                    "archiveTree",
                    NON_INCREMENTAL,
                    new InputFileValueSupplier(fileInput, normalizer, DirectorySensitivity.DEFAULT, LineEndingSensitivity.DEFAULT, { archiveTreeInput }))
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/daemon/AbstractDaemonCompiler.java

            merged.setMemoryMaximumSize(mergeHeapSize(left.getMemoryMaximumSize(), right.getMemoryMaximumSize()));
            Set<String> mergedJvmArgs = normalized(left.getJvmArgs());
            mergedJvmArgs.addAll(normalized(right.getJvmArgs()));
            merged.setJvmArgs(Lists.newArrayList(mergedJvmArgs));
            return merged;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/WritePropertiesIntegrationTest.groovy

                    comment = "Line comment"
                    outputFile = file("output.properties")
                }
            """
    
            when:
            runProps()
            then:
            file("output.properties").text == normalize("""
                #Line comment
                """)
        }
    
        private runProps() {
            result = expectOutputDeprecation(executer.withTasks("props")).run()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 19 13:03:22 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

            } else if (api == Api.RUNTIME_API) {
                Class<?> normalizer;
                if (inputAnnotation == Classpath) {
                    normalizer = ClasspathNormalizer
                } else if (inputAnnotation == CompileClasspath) {
                    normalizer = CompileClasspathNormalizer
                } else {
                    normalizer = null
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. pkg/registry/core/persistentvolumeclaim/strategy.go

    func (persistentvolumeclaimStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return pvcutil.GetWarningsForPersistentVolumeClaim(obj.(*api.PersistentVolumeClaim))
    }
    
    // Canonicalize normalizes the object after validation.
    func (persistentvolumeclaimStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (persistentvolumeclaimStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 20:58:25 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/text/DecimalFormatUtil.java

        /**
         * 数値の文字列での表記を正規化します。
         *
         * @param s
         *            数値を表す文字列
         * @return 正規化された文字列
         * @see #normalize(String, Locale)
         */
        public static String normalize(final String s) {
            return normalize(s, LocaleUtil.getDefault());
        }
    
        /**
         * 数値の文字列での表記をグルーピングセパレータを削除し、小数点を.であらわした標準形に正規化します。
         *
         * @param s
         *            数値を表す文字列
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/tasks/Classpath.java

     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>
     *     For jar files, the normalized path is empty.
     *     The content of the jar file is normalized so that time stamps and order of the zip entries in the jar file do not matter.
     *     This normalization applies to not only files directly on the classpath, but also
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 28 21:23:55 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  8. src/math/big/nat.go

    // with 0 <= x[i] < _B and 0 <= i < n is stored in a slice of length n,
    // with the digits x[i] as the slice elements.
    //
    // A number is normalized if the slice contains no leading 0 digits.
    // During arithmetic operations, denormalized values may occur but are
    // always normalized before returning the final result. The normalized
    // representation of 0 is the empty or nil slice (length = 0).
    type nat []Word
    
    var (
    	natOne  = nat{1}
    	natTwo  = nat{2}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  9. src/math/big/int_test.go

    			t.Errorf("#%d Quo: %v is not normalized", i, *q1)
    		}
    		if !isNormalized(r1) {
    			t.Errorf("#%d Rem: %v is not normalized", i, *r1)
    		}
    		if q1.Cmp(q) != 0 || r1.Cmp(r) != 0 {
    			t.Errorf("#%d QuoRem: got (%s, %s), want (%s, %s)", i, q1, r1, q, r)
    		}
    
    		q2, r2 := new(Int).QuoRem(x, y, new(Int))
    		if !isNormalized(q2) {
    			t.Errorf("#%d Quo: %v is not normalized", i, *q2)
    		}
    		if !isNormalized(r2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/InputNormalizer.java

    import org.gradle.api.tasks.PathSensitivity;
    import org.gradle.internal.fingerprint.FileNormalizer;
    
    import java.util.Locale;
    
    // TODO Break this up between simple normalizers and Java classpath normalizers
    //      The latter should be moved to :normalization-java
    public enum InputNormalizer implements FileNormalizer {
        ABSOLUTE_PATH(false),
        RELATIVE_PATH(false),
        NAME_ONLY(false),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top