Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,870 for performs (0.18 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/Lookup.java

    public interface Lookup extends Service {
        /**
         * Performs a lookup for given typed component.
         *
         * @param type The component type.
         * @return The component.
         * @param <T> The component type.
         * @throws LookupException if no such component or there is some provisioning related issue.
         */
        @Nonnull
        <T> T lookup(Class<T> type);
    
        /**
         * Performs a lookup for given typed component.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ioctl_signed.go

    // functions for specific types are permissible.
    
    // IoctlSetInt performs an ioctl operation which sets an integer value
    // on fd, using the specified request number.
    func IoctlSetInt(fd int, req int, value int) error {
    	return ioctl(fd, req, uintptr(value))
    }
    
    // IoctlSetPointerInt performs an ioctl operation which sets an
    // integer value on fd, using the specified request number. The ioctl
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ioctl_unsigned.go

    // functions for specific types are permissible.
    
    // IoctlSetInt performs an ioctl operation which sets an integer value
    // on fd, using the specified request number.
    func IoctlSetInt(fd int, req uint, value int) error {
    	return ioctl(fd, req, uintptr(value))
    }
    
    // IoctlSetPointerInt performs an ioctl operation which sets an
    // integer value on fd, using the specified request number. The ioctl
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/fcntl_darwin.go

    // license that can be found in the LICENSE file.
    
    package unix
    
    import "unsafe"
    
    // FcntlInt performs a fcntl syscall on fd with the provided command and argument.
    func FcntlInt(fd uintptr, cmd, arg int) (int, error) {
    	return fcntl(int(fd), cmd, arg)
    }
    
    // FcntlFlock performs a fcntl syscall for the F_GETLK, F_SETLK or F_SETLKW command.
    func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 806 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ioctl_zos.go

    // functions for specific types are permissible.
    
    // IoctlSetInt performs an ioctl operation which sets an integer value
    // on fd, using the specified request number.
    func IoctlSetInt(fd int, req int, value int) error {
    	return ioctl(fd, req, uintptr(value))
    }
    
    // IoctlSetWinsize performs an ioctl on fd with a *Winsize argument.
    //
    // To change fd's window size, the req argument should be TIOCSWINSZ.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VariantMetadata.java

         *
         * @param action the action that performs the dependencies adjustment
         */
        void withDependencies(Action<? super DirectDependenciesMetadata> action);
    
        /**
         * Register a rule that modifies the dependency constraints of this variant.
         *
         * @param action the action that performs the dependency constraints adjustment
         * @since 4.5
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 06 08:10:15 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/api/Action.java

     * limitations under the License.
     */
    package org.gradle.api;
    
    /**
     * Performs some action against objects of type T.
     *
     * @param <T> The type of object which this action accepts.
     */
    @HasImplicitReceiver
    public interface Action<T> {
        /**
         * Performs this action against the given object.
         *
         * @param t The object to perform the action on.
         */
        void execute(T t);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 968 bytes
    - Viewed (0)
  8. src/sync/atomic/type.go

    func (x *Int32) Add(delta int32) (new int32) { return AddInt32(&x.v, delta) }
    
    // And atomically performs a bitwise AND operation on x using the bitmask
    // provided as mask and returns the old value.
    func (x *Int32) And(mask int32) (old int32) { return AndInt32(&x.v, mask) }
    
    // Or atomically performs a bitwise OR operation on x using the bitmask
    // provided as mask and returns the old value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/streams/ValueStore.java

         * The current thread performs the encoding. The implementation may perform some buffering and this may not necessarily be
         * flushed to the filesystem on completion of this method.
         */
        BlockAddress write(T value);
    
        /**
         * Reads the contents of the given block.
         * The current thread performs the decoding.
         */
        T read(BlockAddress blockAddress);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/chain.go

    // chainAdmissionHandler is an instance of admission.NamedHandler that performs admission control using
    // a chain of admission handlers
    type chainAdmissionHandler []Interface
    
    // NewChainHandler creates a new chain handler from an array of handlers. Used for testing.
    func NewChainHandler(handlers ...Interface) chainAdmissionHandler {
    	return chainAdmissionHandler(handlers)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 2.2K bytes
    - Viewed (0)
Back to top