Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 649 for Marks (0.04 sec)

  1. guava/src/com/google/common/eventbus/AllowConcurrentEvents.java

    package com.google.common.eventbus;
    
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Marks an event subscriber method as being thread-safe. This annotation indicates that EventBus
     * may invoke the event subscriber simultaneously from multiple threads.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/lifecycle/FinishRootBuildTreeBuildOperationType.java

    /**
     * A build operation around the work that happens at the end of the root build.
     * <p>
     * {@code buildFinished} hooks and {@code FlowAction}s in the whole build tree run in this operation.
     * The start of the operation marks the end of the execution phase of the root build.
     *
     * @since 8.3
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 17:44:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/Destroys.java

    import java.lang.annotation.Documented;
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * <p>Marks a property as specifying a file or directory that a task destroys.
     * The file or directory belongs to another task.</p>
     *
     * <p>This annotation should be attached to the getter method or the field for the property.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 03:14:53 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/cache/MarkingStrategy.java

     * </p>
     *
     * @since 8.1
     */
    @Incubating
    public interface MarkingStrategy {
        /**
         * Marking strategy that marks the cache directory with a {@code CACHEDIR.TAG} file.
         *
         * @see <a href="https://bford.info/cachedir/">Cache Directory Tagging Specification</a>
         */
        MarkingStrategy CACHEDIR_TAG = new CacheDirTagMarkingStrategy();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 25 20:35:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/internal/poll/sock_cloexec_solaris.go

    // of accept(3c) and fcntl(2).
    
    package poll
    
    import (
    	"internal/syscall/unix"
    	"syscall"
    )
    
    // Wrapper around the accept system call that marks the returned file
    // descriptor as nonblocking and close-on-exec.
    func accept(s int) (int, syscall.Sockaddr, string, error) {
    	// Perform a cheap test and try the fast path first.
    	if unix.SupportAccept4() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

        /**
         * Retrieves the current convention.
         */
        public abstract S convention();
    
        /**
         * Marks this value as being explicitly set with
         * the current value assigned to the convention.
         */
        public abstract S setToConvention();
    
        /**
         * Marks this value as being explicitly set with
         * the current value assigned to the convention,
         * unless it is already an explicit value.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. src/unicode/graphic.go

    // ASCII space, U+0020, is handled separately.
    var PrintRanges = []*RangeTable{
    	L, M, N, P, S,
    }
    
    // IsGraphic reports whether the rune is defined as a Graphic by Unicode.
    // Such characters include letters, marks, numbers, punctuation, symbols, and
    // spaces, from categories [L], [M], [N], [P], [S], [Zs].
    func IsGraphic(r rune) bool {
    	// We convert to uint32 to avoid the extra test for negative,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableTypedResolveResult.java

        /**
         * Returns the result.
         *
         * @throws E if resolution was not successful.
         */
        T getResult() throws E;
    
        /**
         * Marks the resolution as completed with the given value.
         */
        void resolved(T result);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1007 bytes
    - Viewed (0)
  9. src/cmd/internal/objabi/reloctype.go

    	R_USETYPE
    	// R_USEIFACE marks a type is converted to an interface in the function this
    	// relocation is applied to. The target is a type descriptor or an itab
    	// (in the latter case it refers to the concrete type contained in the itab).
    	// This is a marker relocation (0-sized), for the linker's reachabililty
    	// analysis.
    	R_USEIFACE
    	// R_USEIFACEMETHOD marks an interface method that is used in the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/notboring.go

    	"hash"
    )
    
    const available = false
    
    // Unreachable marks code that should be unreachable
    // when BoringCrypto is in use. It is a no-op without BoringCrypto.
    func Unreachable() {
    	// Code that's unreachable when using BoringCrypto
    	// is exactly the code we want to detect for reporting
    	// standard Go crypto.
    	sig.StandardCrypto()
    }
    
    // UnreachableExceptTests marks code that should be unreachable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top