Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 232 for normalization (0.39 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/SourceTaskIntegrationTest.groovy

            outputContains("visit one.txt")
            outputContains("visit a")
            outputContains("visit a/two.txt")
            outputContains("visit a/three.txt")
        }
    
        def "can disable empty directory normalization for classes that extend SourceTask"() {
            given:
            file("src/one.txt").createFile()
            file("src/a/two.txt").createFile()
    
            buildFile << """
                class TestTask extends SourceTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 28 09:46:40 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/MethodStubbingApiMemberAdapter.java

     * 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.impl;
    
    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.ClassWriter;
    import org.objectweb.asm.MethodVisitor;
    import org.objectweb.asm.Opcodes;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/BuildServices.kt

    import org.gradle.internal.service.Provides
    import org.gradle.internal.service.ServiceRegistrationProvider
    import org.gradle.kotlin.dsl.cache.KotlinDslWorkspaceProvider
    import org.gradle.kotlin.dsl.normalization.KotlinCompileClasspathFingerprinter
    import org.gradle.kotlin.dsl.support.EmbeddedKotlinProvider
    import org.gradle.kotlin.dsl.support.ImplicitImports
    import org.gradle.plugin.management.internal.autoapply.AutoAppliedPluginHandler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typeparams/termlist.go

    // normal form.
    type termlist []*term
    
    // allTermlist represents the set of all types.
    // It is in normal form.
    var allTermlist = termlist{new(term)}
    
    // String prints the termlist exactly (without normalization).
    func (xl termlist) String() string {
    	if len(xl) == 0 {
    		return "∅"
    	}
    	var buf bytes.Buffer
    	for i, x := range xl {
    		if i > 0 {
    			buf.WriteString(" | ")
    		}
    		buf.WriteString(x.String())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 21:08:44 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java

    import org.apache.maven.model.management.DependencyManagementInjector;
    import org.apache.maven.model.management.PluginManagementInjector;
    import org.apache.maven.model.normalization.DefaultModelNormalizer;
    import org.apache.maven.model.normalization.ModelNormalizer;
    import org.apache.maven.model.path.DefaultModelPathTranslator;
    import org.apache.maven.model.path.DefaultModelUrlNormalizer;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/str/path.go

    // HasFilePathPrefix reports whether the filesystem path s
    // begins with the elements in prefix.
    //
    // HasFilePathPrefix is case-sensitive (except for volume names) even if the
    // filesystem is not, does not apply Unicode normalization even if the
    // filesystem does, and assumes that all path separators are canonicalized to
    // filepath.Separator (as returned by filepath.Clean).
    func HasFilePathPrefix(s, prefix string) bool {
    	sv := filepath.VolumeName(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/FilePropertyVisitor.java

             * and org.gradle.api.internal.tasks.BaseSnapshotInputsBuildOperationResult.FilePropertyAttribute#DIRECTORY_SENSITIVITY_IGNORE_DIRECTORIES will not be present.
             * This loose approach is used to allow the various types of normalization supported by Gradle to evolve,
             * and their usage to be conveyed here without changing this interface.
             */
            Set<String> getPropertyAttributes();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. src/math/sqrt.go

    //           | Use the hardware sqrt if you have one |
    //           -----------------------------------------
    // Method:
    //   Bit by bit method using integer arithmetic. (Slow, but portable)
    //   1. Normalization
    //      Scale x to y in [1,4) with even powers of 2:
    //      find an integer k such that  1 <= (y=x*2**(2k)) < 4, then
    //              sqrt(x) = 2**k * sqrt(y)
    //   2. Bit by bit computation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 15 17:07:57 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/AbiExtractingClasspathResourceHasherTest.groovy

    import org.gradle.internal.fingerprint.hashing.ZipEntryContext
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.normalization.java.ApiClassExtractor
    import org.gradle.internal.snapshot.RegularFileSnapshot
    import org.junit.Rule
    import org.junit.rules.TemporaryFolder
    import spock.lang.Issue
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/AbiExtractingClasspathResourceHasher.java

    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.hash.Hashing;
    import org.gradle.internal.io.IoFunction;
    import org.gradle.internal.normalization.java.ApiClassExtractor;
    import org.gradle.internal.snapshot.RegularFileSnapshot;
    import org.objectweb.asm.ClassReader;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top