Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 283 for Madvise (0.15 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecatedFeatureUsageTest.groovy

            "summary" | "removalDetails" | "advice" | null               | null                                         | "summary removalDetails advice"
            "summary" | "removalDetails" | "advice" | "contextualAdvice" | null                                         | "summary removalDetails contextualAdvice advice"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecatedFeatureUsage.java

            return removalDetails;
        }
    
        /**
         * General, non usage specific, advice on what to do about this notice.
         *
         * Example: Use method Foo.baz() instead.
         */
        @Nullable
        public String getAdvice() {
            return advice;
        }
    
        /**
         * Advice on what to do about the notice, specific to this usage.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DocumentedFailure.java

                this.contextualAdvice = contextualAdvice;
                return this;
            }
    
            @CheckReturnValue
            public Builder withAdvice(String advice) {
                this.advice = advice;
                return this;
            }
    
            @Override
            @CheckReturnValue
            public Builder withDocumentation(DocLink documentation) {
                this.documentation = documentation;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 14:27:21 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

            when:
            DeprecationLogger.deprecate("Something").withAdvice("Advice.").withContext("Contextual advice.").willBeRemovedInGradle9().undocumented().nagUser()
    
            then:
            expectMessage "Something has been deprecated. This is scheduled to be removed in Gradle ${NEXT_GRADLE_VERSION}. Contextual advice. Advice."
        }
    
        def "logs deprecated build invocation message"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessage.java

        private final String advice;
        private final String context;
        private final DocLink documentation;
        private final DeprecatedFeatureUsage.Type usageType;
        private final String problemIdDisplayName;
        private final String problemId;
    
        DeprecationMessage(
            String summary,
            String removalDetails,
            @Nullable String advice,
            @Nullable String context,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 15:25:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecatedUsageBuildOperationProgressIntegrationTest.groovy

            userIndirectCodeDeprecationDetails.removalDetails == 'This is scheduled to be removed in Gradle 9.0.'
            userIndirectCodeDeprecationDetails.advice == "Some advice."
            userIndirectCodeDeprecationDetails.type == 'USER_CODE_INDIRECT'
            userIndirectCodeDeprecationDetails.stackTrace.length() > 0
            userIndirectCodeDeprecationDetails.stackTrace.contains('build.gradle:6')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/Severity.java

     * @since 8.6
     */
    @Incubating
    public interface Severity {
    
        // Note: the static fields must be in sync with entries from org.gradle.api.problems.Severity.
        /**
         * Advice-level severity.
         *
         * @since 8.6
         */
        Severity ADVICE = new DefaultSeverity(0, true);
    
        /**
         * Warning-level severity.
         *
         * @since 8.6
         */
        Severity WARNING = new DefaultSeverity(1, true);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 13:56:41 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
    	_, _, e1 := Syscall6(SYS_FADVISE64_64, uintptr(fd), uintptr(offset), uintptr(offset>>32), uintptr(length), uintptr(length>>32), uintptr(advice))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
    	_, _, e1 := Syscall6(SYS_FADVISE64, uintptr(fd), uintptr(offset), uintptr(length), uintptr(advice), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

        public T withContext(String context) {
            this.context = context;
            return (T) this;
        }
    
        @SuppressWarnings("unchecked")
        public T withAdvice(String advice) {
            this.advice = advice;
            return (T) this;
        }
    
        @SuppressWarnings("unchecked")
        public T withProblemIdDisplayName(String problemIdDisplayName) {
            this.problemIdDisplayName = problemIdDisplayName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top