Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 572 for performGet (1.18 sec)

  1. src/internal/runtime/atomic/types.go

    // the result into u.
    //
    // The full process is performed atomically.
    //
    //go:nosplit
    func (u *Uint8) And(value uint8) {
    	And8(&u.value, value)
    }
    
    // Or takes value and performs a bit-wise
    // "or" operation with the value of u, storing
    // the result into u.
    //
    // The full process is performed atomically.
    //
    //go:nosplit
    func (u *Uint8) Or(value uint8) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. src/crypto/ecdh/ecdh.go

    //
    // Note that there can be equivalent public keys with different encodings which
    // would return false from this check but behave the same way as inputs to ECDH.
    //
    // This check is performed in constant time as long as the key types and their
    // curve match.
    func (k *PublicKey) Equal(x crypto.PublicKey) bool {
    	xx, ok := x.(*PublicKey)
    	if !ok {
    		return false
    	}
    	return k.curve == xx.curve &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    //
    // During evaluation, a temporary tree of ratchetingValueValidator is built for all
    // traversed field paths. It is necessary to build the tree to take advantage of
    // DeepEqual checks performed by lower levels of the object during validation without
    // greatly modifying `kube-openapi`'s implementation.
    //
    // The tree, and all cache storage/scratch space for the validation of a single
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. src/net/sendfile_unix_alt.go

    // system call to minimize copies.
    //
    // if handled == true, sendFile returns the number (potentially zero) of bytes
    // copied and any non-EOF error.
    //
    // if handled == false, sendFile performed no work.
    func sendFile(c *netFD, r io.Reader) (written int64, err error, handled bool) {
    	// Darwin, FreeBSD, DragonFly and Solaris use 0 as the "until EOF" value.
    	// If you pass in more bytes than the file contains, it will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/DefaultTestClassScanner.java

    import java.util.regex.Pattern;
    
    /**
     * The default test class scanner. Depending on the availability of a test framework detector,
     * a detection or filename scan is performed to find test classes.
     */
    public class DefaultTestClassScanner implements Runnable {
        private static final Pattern ANONYMOUS_CLASS_NAME = Pattern.compile(".*\\$\\d+");
        private final FileTree candidateClassFiles;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit_init.go

    		auditID := r.Header.Get(auditinternal.HeaderAuditID)
    		if len(auditID) == 0 {
    			auditID = newAuditIDFunc()
    		}
    
    		// Note: we save the user specified value of the Audit-ID header as is, no truncation is performed.
    		audit.WithAuditID(ctx, types.UID(auditID))
    
    		// We echo the Audit-ID in to the response header.
    		// It's not guaranteed Audit-ID http header is sent for all requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:35 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerWithSupplierIntegrationTest.groovy

            repositoryInteractions {
                // only the resolved modules are going to get their metadata files fetched (for variant matching)
                // and no additional network request is performed because we got the attributes from the same
                // cached external resource
                'org:testA:1' {
                    expectResolve()
                }
                'org:testB:2' {
                    expectResolve()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. pkg/proxy/apis/config/types.go

    	// modes or with IPv6.)
    	LocalhostNodePorts *bool
    	// syncPeriod is an interval (e.g. '5s', '1m', '2h22m') indicating how frequently
    	// various re-synchronizing and cleanup operations are performed. Must be greater
    	// than 0.
    	SyncPeriod metav1.Duration
    	// minSyncPeriod is the minimum period between iptables rule resyncs (e.g. '5s',
    	// '1m', '2h22m'). A value of 0 means every Service or EndpointSlice change will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/codegen_test_h.golden

      //
      // T& argN(...dim indices...)
      //   Returns a reference to the value of type T for positional argument N,
      //   with dim indices specifying which value. No bounds checking is performed
      //   on dim indices.
    
      void set_arg0_data(const void* data) {
        set_arg_data(0, data);
      }
      float* arg0_data() {
        return static_cast<float*>(arg_data(0));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/AdHocCompositeDependencySubstitutionCrossVersionSpec.groovy

    import org.gradle.tooling.model.eclipse.EclipseProject
    import org.gradle.tooling.model.idea.IdeaModuleDependency
    import org.gradle.tooling.model.idea.IdeaProject
    
    /**
     * Dependency substitution is performed for models in a composite build
     */
    @TargetGradleVersion(">=3.1")
    class AdHocCompositeDependencySubstitutionCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
        TestFile buildA
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top