Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 738 for sense (0.05 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionSelectorScheme.java

         */
        String renderSelector(VersionSelector selector);
    
        /**
         * Creates another version selector which complements the provided one, but also makes sense to use
         * in a rejection rule. It will therefore fail when computing a complement for this use case doesn't
         * make sense.
         * @param selector the selector to create a complement for
         * @return a selector that complements the provided one and can be used in a reject rule
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    great battle-field of that war. We have come to dedicate a portion of that field, as a final resting place for those who here gave their lives that that nation might live. It is altogether fitting and proper that we should do this. But, in a larger sense, we can not dedicate - we can not consecrate - we can not hallow - this ground. The brave men, living and dead, who struggled here, have consecrated it, far above our poor power to add or detract. The world will little note, nor long remember what...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/UserClassFilePermissions.java

     *     <li>EXECUTE access: the capability to run a file as a program; executing a directory doesn't really make sense, it's more like
     *     a traverse permission; for example, a user must have 'execute' access to the 'bin' directory in order to execute the 'ls' or 'cd' commands.</li>
     * </ul>
     *
     * @since 8.3
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildInitializer.java

        /**
         * The preferred DSL to use for this type of project.
         */
        BuildInitDsl getDefaultDsl();
    
        /**
         * Does a project name make sense for this type of project?
         */
        boolean supportsProjectName();
    
        /**
         * Does a source package name make sense for this type of project?
         */
        boolean supportsPackage();
    
        /**
         * Returns the set of test frameworks supported for this type of project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/UnavailablePlatformToolProvider.java

            this.explain(formatter);
            return new GradleException(formatter.toString());
        }
    
        @Override
        public boolean requiresDebugBinaryStripping() {
            // Doesn't really make sense
            return true;
        }
    
        @Override
        public String getObjectFileExtension() {
            throw failure();
        }
    
        @Override
        public String getExecutableName(String executablePath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. test/fixedbugs/issue20529.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 20529: Large stack frames caused compiler panics.
    // Only tested on amd64 because the test only makes sense
    // on a 64 bit system, and it is platform-agnostic,
    // so testing one suffices.
    
    package p
    
    import "runtime"
    
    func f() { // GC_ERROR "stack frame too large"
    	x := [][]int{1e9: []int{}}
    	runtime.KeepAlive(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 519 bytes
    - Viewed (0)
  7. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWorkspaceFixture.groovy

            this.workspaceDir = workspaceDir
            workspaceDir.file(".project").assertExists()
        }
    
        @Override
        void assertContains(IdeProjectFixture project) {
            // Doesn't really make sense
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/fixtures/Debug.java

     */
    
    package org.gradle.testkit.runner.fixtures;
    
    import java.lang.annotation.*;
    
    /**
     * Indicates that the feature under test only works with debug on, or is testing something that doesn't make sense to test without debug on.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.TYPE})
    @Inherited
    public @interface Debug {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 966 bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/fixtures/NoDebug.java

     */
    
    package org.gradle.testkit.runner.fixtures;
    
    import java.lang.annotation.*;
    
    /**
     * Indicates that the feature under test does not work with debug on, or is testing something that doesn't make sense to test with debug on.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.TYPE})
    @Inherited
    public @interface NoDebug {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 968 bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/util/internal/WrapperDistributionUrlConverter.java

            URI source = new URI(distributionUrl);
            if (source.getScheme() == null) {
                //  No scheme means someone passed a relative url.
                //  In our context only file relative urls make sense.
                return new File(fileRoot, source.getSchemeSpecificPart()).toURI();
            } else {
                return source;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top