Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for accesskey (0.34 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      pthread_mutex_t mutex_;  // The underlying pthread mutex.
      // has_owner_ indicates whether the owner_ field below contains a valid thread
      // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All
      // accesses to the owner_ field should be protected by a check of this field.
      // An alternative might be to memset() owner_ to all zeros, but there's no
      // guarantee that a zero'd pthread_t is necessarily invalid or even different
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. src/text/template/exec_test.go

    	TooFewReturnCountFunc  func()
    	TooManyReturnCountFunc func() (string, error, int)
    	InvalidReturnTypeFunc  func() (string, bool)
    	// Template to test evaluation of templates.
    	Tmpl *Template
    	// Unexported field; cannot be accessed by template.
    	unexported int
    }
    
    type S []string
    
    func (S) Method0() string {
    	return "M0"
    }
    
    type U struct {
    	V string
    }
    
    type V struct {
    	j int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

       * addAll} method is implemented as a sequence of {@code put} invocations on the backing map.
       *
       * <p>The specified map must be empty at the time this method is invoked, and should not be
       * accessed directly after this method returns. These conditions are ensured if the map is created
       * empty, passed directly to this method, and no reference to the map is retained, as illustrated
       * in the following code fragment:
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * higher than performing just the operation without enforcing the capacity constraint.
       *
       * This implementation uses a per-segment queue to record a memento of the additions, removals,
       * and accesses that were performed on the map. The queue is drained on writes and when it exceeds
       * its capacity threshold.
       *
       * The Least Recently Used page replacement algorithm was chosen due to its simplicity, high hit
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Sets.java

       * addAll} method is implemented as a sequence of {@code put} invocations on the backing map.
       *
       * <p>The specified map must be empty at the time this method is invoked, and should not be
       * accessed directly after this method returns. These conditions are ensured if the map is created
       * empty, passed directly to this method, and no reference to the map is retained, as illustrated
       * in the following code fragment:
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	return ptracePeek(PTRACE_PEEKUSR, pid, addr, out)
    }
    
    func ptracePoke(pokeReq int, peekReq int, pid int, addr uintptr, data []byte) (count int, err error) {
    	// As for ptracePeek, we need to align our accesses to deal
    	// with the possibility of straddling an invalid page.
    
    	// Leading edge.
    	n := 0
    	if addr%SizeofPtr != 0 {
    		var buf [SizeofPtr]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. src/go/parser/parser.go

    				// Introduce extra scope to avoid redeclaration errors:
    				//
    				//	switch t := 0; t := x.(T) { ... }
    				//
    				// (this code is not valid Go because the first t
    				// cannot be accessed and thus is never used, the extra
    				// scope is needed for the correct error message).
    				//
    				// If we don't have a type switch, s2 must be an expression.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    	fcb.N = x < 0
    	return fcb.encode()
    }
    
    func makeJumpTableSym(b *Block) *obj.LSym {
    	s := base.Ctxt.Lookup(fmt.Sprintf("%s.jump%d", b.Func.fe.Func().LSym.Name, b.ID))
    	// The jump table symbol is accessed only from the function symbol.
    	s.Set(obj.AttrStatic, true)
    	return s
    }
    
    // canRotate reports whether the architecture supports
    // rotates of integer registers with the given number of bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    		return env.GatewayAPIController.Reconcile(ps)
    	}
    	return nil
    }
    
    // ReferenceAllowed determines if a given resource (of type `kind` and name `resourceName`) can be
    // accessed by `namespace`, based of specific reference policies.
    // Note: this function only determines if a reference is *explicitly* allowed; the reference may not require
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390X.rules

    	(MOVBstoreconst [sc.addOffset32(off)] {s} ptr mem)
    
    // Merge address calculations into loads and stores.
    // Offsets from SB must not be merged into unaligned memory accesses because
    // loads/stores using PC-relative addressing directly must be aligned to the
    // size of the target.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top