Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,868 for performs (0.11 sec)

  1. pkg/test/framework/components/echo/check/visitor.go

    	"istio.io/istio/pkg/util/istiomultierror"
    )
    
    // Visitor is performs a partial check operation on a single message.
    type Visitor func(echoClient.Response) error
    
    // Visit is a utility method that just invokes this Visitor function on the given response.
    func (v Visitor) Visit(r echoClient.Response) error {
    	return v(r)
    }
    
    // And returns a Visitor that performs a logical AND of this Visitor and the one provided.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 28 23:06:21 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. src/sync/atomic/doc.go

    func AddUintptr(addr *uintptr, delta uintptr) (new uintptr)
    
    // AndInt32 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    // and returns the old value.
    // Consider using the more ergonomic and less error-prone [Int32.And] instead.
    func AndInt32(addr *int32, mask int32) (old int32)
    
    // AndUint32 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ExclusiveCacheAccessCoordinator.java

     */
    package org.gradle.cache;
    
    import java.util.function.Supplier;
    
    /**
     * Provides synchronised access to a cache.
     */
    public interface ExclusiveCacheAccessCoordinator {
        /**
         * Performs some work against the cache. Acquires exclusive locks on the appropriate resources, so that the given action is the only action to execute across all processes (including this one). Releases the locks and all resources at the end of the action.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/fcntl.go

    	var err error
    	if errno != 0 {
    		err = errno
    	}
    	return int(valptr), err
    }
    
    // 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: Wed Nov 29 21:28:33 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ioctl_linux.go

    }
    
    // IoctlFileCloneRange performs an FICLONERANGE ioctl operation to clone the
    // range of data conveyed in value to the file associated with the file
    // descriptor destFd. See the ioctl_ficlonerange(2) man page for details.
    func IoctlFileCloneRange(destFd int, value *FileCloneRange) error {
    	return ioctlPtr(destFd, FICLONERANGE, unsafe.Pointer(value))
    }
    
    // IoctlFileClone performs an FICLONE ioctl operation to clone the entire file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. src/crypto/ecdh/ecdh.go

    	// NewPrivateKey without having to perform a scalar multiplication.
    	publicKey     *PublicKey
    	publicKeyOnce sync.Once
    }
    
    // ECDH performs an ECDH exchange and returns the shared secret. The [PrivateKey]
    // and [PublicKey] must use the same curve.
    //
    // For NIST curves, this performs ECDH as specified in SEC 1, Version 2.0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/README.md

      It can produce a text version of the trace wire format, or convert
      the text format back into bytes.
    * `gotracevalidate` parses traces and validates them.
      It performs more rigorous checks than the parser does on its own,
      which helps for debugging the parser as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/BinaryTasksCollection.java

     */
    @Incubating
    @UnmanagedStruct
    public interface BinaryTasksCollection extends DomainObjectSet<Task> {
        /**
         * Generates a name for a task that performs some action on the binary.
         */
        String taskName(String verb);
    
        /**
         * Generates a name for a task that performs some action on the binary.
         */
        String taskName(String verb, String object);
    
        /**
         * The task that can be used to assemble this binary.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/reinvocation.go

    	admissionChain Interface
    }
    
    // Admit performs an admission control check using the wrapped admission chain, reinvoking the
    // admission chain if needed according to the reinvocation policy.  Plugins are expected to check
    // the admission attributes' reinvocation context against their reinvocation policy to decide if
    // they should re-run, and to update the reinvocation context if they perform any mutations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/xml/SimpleXmlWriter.java

         *
         * @param output The output, should be unbuffered, as this class performs buffering
         */
        public SimpleXmlWriter(OutputStream output) throws IOException {
            this(output, null);
        }
    
        /**
         * Constructs a writer with the given output.
         *
         * @param output The output, should be unbuffered, as this class performs buffering
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.8K bytes
    - Viewed (0)
Back to top