Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 736 for sense (0.05 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/ProjectGenerator.java

        boolean isJvmLanguage();
    
        Set<ModularizationOption> getModularizationOptions();
    
        Optional<String> getFurtherReading(InitSettings settings);
    
        /**
         * Does a source package name make sense for this type of project?
         */
        boolean supportsPackage();
    
        BuildInitDsl getDefaultDsl();
    
        /**
         * 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:24 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/AbstractTypeAnnotationHandler.java

                    .documentedAt(Documentation.userManual("validation_problems", "invalid_use_of_cacheable_annotation"))
                    .severity(Severity.ERROR)
                    .details(String.format("This annotation only makes sense on %s types", Arrays.stream(appliesOnlyTo)
                        .map(Class::getSimpleName)
                        .collect(joining(", "))))
                    .solution("Remove the annotation")
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. Development.md

    2. That should be it. The suggestion will be displayed in the "Try" section.
    
    ### Remove generic suggestions
    
    For some scenarios, it doesn't make sense to display all the generic suggestions we currently have.
    E.g. `--stacktrace` for a compilation error is not helpful.
    
    To influence the generic suggestions Gradle displays, the NonGradleCause interface was introduced.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 22:54:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/references/ReadWriteAccessCheckerDescriptorsImpl.kt

            // Various parts of the IJ plugin use the read/write access checker without being aware that it uses `analyze` under the hood. For
            // now, it makes more sense to allow analysis on EDT/from write actions here, as there are many such usages in the IJ plugin.
            return allowAnalysisOnEdt {
                allowAnalysisFromWriteAction {
                    val resolvedCall = analyze(assignment) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. pkg/volume/hostpath/host_path.go

    		return nil
    	} else {
    		return checkType(b.GetPath(), b.pathType, b.hu)
    	}
    }
    
    // SetUpAt does not make sense for host paths - probably programmer error.
    func (b *hostPathMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	return fmt.Errorf("SetUpAt() does not make sense for host paths")
    }
    
    func (b *hostPathMounter) GetPath() string {
    	return b.path
    }
    
    type hostPathUnmounter struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. platforms/software/resources/src/main/java/org/gradle/internal/resource/metadata/ExternalResourceMetaData.java

         *
         * This should only be collected if it is very cheap to do so. For example, some HTTP servers send an
         * “X-Checksum-Sha1” that makes the sha1 available cheaply. In this case it makes sense to advertise this as metadata here.
         *
         * @return The sha1, or null if it's unknown.
         */
        @Nullable
        HashCode getSha1();
    
        boolean wasMissing();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableUserClassFilePermissions.java

         * Enables or disables execute access to a file or directory for a certain class of users.
         * <p>
         * Execute access grant 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.
         */
        void setExecute(boolean execute);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/JavaExecutableUtils.java

                        .withContext("Resolving relative file paths might yield unexpected results, there is no single clear location it would make sense to resolve against.")
                        .withAdvice("Configure an absolute path to a Java executable instead.")
                        .willBecomeAnErrorInGradle9()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m9/GradlePropertiesToolingApiCrossVersionSpec.groovy

    import org.junit.Assume
    
    @TargetGradleVersion(">=3.0")
    class GradlePropertiesToolingApiCrossVersionSpec extends ToolingApiSpecification {
    
        def setup() {
            //this test does not make any sense in embedded mode
            //as we don't own the process
            toolingApi.requireDaemons()
        }
    
        def "tooling api honours jvm args specified in gradle.properties"() {
            file('build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/provider.go

    	info, err := getCgroupInfo(p.cadvisor, cgroupName, updateStats)
    	if err != nil {
    		return nil, nil, fmt.Errorf("failed to get cgroup stats for %q: %v", cgroupName, err)
    	}
    	// Rootfs and imagefs doesn't make sense for raw cgroup.
    	s := cadvisorInfoToContainerStats(cgroupName, info, nil, nil)
    	n := cadvisorInfoToNetworkStats(info)
    	return s, n, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 13:56:22 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top