Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for unusual (3.02 sec)

  1. src/regexp/syntax/parse.go

    // The caller must have ensured that s begins with "(?".
    func (p *parser) parsePerlFlags(s string) (rest string, err error) {
    	t := s
    
    	// Check for named captures, first introduced in Python's regexp library.
    	// As usual, there are three slightly different syntaxes:
    	//
    	//   (?P<name>expr)   the original, introduced by Python
    	//   (?<name>expr)    the .NET alteration, adopted by Perl 5.10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. src/runtime/mgcpacer.go

    	// should never be negative.
    	memoryLimit atomic.Int64
    
    	// heapMinimum is the minimum heap size at which to trigger GC.
    	// For small heaps, this overrides the usual GOGC*live set rule.
    	//
    	// When there is a very small live set but a lot of allocation, simply
    	// collecting when the heap reaches GOGC*live results in many GC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // The bookmark will report the ResourceVersion (RV) corresponding to the
      // set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation.
      // Afterwards, the watch stream will proceed as usual, sending watch events
      // corresponding to changes (subsequent to the RV) to objects watched.
      //
      // When `sendInitialEvents` option is set, we require `resourceVersionMatch`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // The bookmark will report the ResourceVersion (RV) corresponding to the
      // set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation.
      // Afterwards, the watch stream will proceed as usual, sending watch events
      // corresponding to changes (subsequent to the RV) to objects watched.
      //
      // When `sendInitialEvents` option is set, we require `resourceVersionMatch`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.h

    TF_CAPI_EXPORT extern int TF_GraphNumFunctions(TF_Graph* g);
    
    // Fills in `funcs` with the TF_Function* registered in `g`.
    // `funcs` must point to an array of TF_Function* of length at least
    // `max_func`. In usual usage, max_func should be set to the result of
    // TF_GraphNumFunctions(g). In this case, all the functions registered in
    // `g` will be returned. Else, an unspecified subset.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    		// operating system requires a little more space
    		// before we can start allocating, it will give out a
    		// slightly higher pointer. Except QEMU, which is
    		// buggy, as usual: it won't adjust the pointer
    		// upward. So adjust it upward a little bit ourselves:
    		// 1/4 MB to get away from the running binary image.
    		p := firstmoduledata.end
    		if p < procBrk {
    			p = procBrk
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    	if err != nil {
    		t.Fatalf("handshake failed: %s", err)
    	}
    	// after a new session we expect to see OCSPResponse and
    	// SignedCertificateTimestamps populated as usual
    	if !bytes.Equal(ccs.OCSPResponse, serverConfig.Certificates[0].OCSPStaple) {
    		t.Errorf("client ConnectionState contained unexpected OCSPResponse: wanted %v, got %v",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func WaitForMultipleObjects(handles []Handle, waitAll bool, waitMilliseconds uint32) (event uint32, err error) {
    	// Every other win32 array API takes arguments as "pointer, count", except for this function. So we
    	// can't declare it as a usual [] type, because mksyscall will use the opposite order. We therefore
    	// trivially stub this ourselves.
    
    	var handlePtr *Handle
    	if len(handles) > 0 {
    		handlePtr = &handles[0]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// The bookmark will report the ResourceVersion (RV) corresponding to the
    	// set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation.
    	// Afterwards, the watch stream will proceed as usual, sending watch events
    	// corresponding to changes (subsequent to the RV) to objects watched.
    	//
    	// When `sendInitialEvents` option is set, we require `resourceVersionMatch`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  10. src/cmd/link/internal/loader/loader.go

    	if v {
    		l.attrExternal.Set(l.extIndex(i))
    	} else {
    		l.attrExternal.Unset(l.extIndex(i))
    	}
    }
    
    // AttrSpecial returns true for a symbols that do not have their
    // address (i.e. Value) computed by the usual mechanism of
    // data.go:dodata() & data.go:address().
    func (l *Loader) AttrSpecial(i Sym) bool {
    	return l.attrSpecial.Has(i)
    }
    
    // SetAttrSpecial sets the "special" property for a symbol (see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top