Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 978 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. src/cmd/compile/internal/ssa/flags_test.go

    	var fcb flagConstantBuilder
    	switch runtime.GOARCH {
    	case "amd64":
    		fcb.Z = x>>6&1 != 0
    		fcb.N = x>>7&1 != 0
    		fcb.C = x>>0&1 != 0
    		if sub {
    			// Convert from amd64-sense to arm-sense
    			fcb.C = !fcb.C
    		}
    		fcb.V = x>>11&1 != 0
    	case "arm64":
    		fcb.Z = x>>30&1 != 0
    		fcb.N = x>>31&1 != 0
    		fcb.C = x>>29&1 != 0
    		fcb.V = x>>28&1 != 0
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:36:17 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/html/fuzz_test.go

    		u := UnescapeString(e)
    		if u != v {
    			t.Errorf("EscapeString(%q) = %q, UnescapeString(%q) = %q, want %q", v, e, e, u, v)
    		}
    
    		// As per the documentation, this isn't always equal to v, so it makes
    		// no sense to check for equality. It can still be interesting to find
    		// panics in it though.
    		EscapeString(UnescapeString(v))
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 20:35:20 UTC 2023
    - 636 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top