Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for readArg (0.32 sec)

  1. src/database/sql/sql_test.go

    			// cancel at any future time, to catch other cases
    			go cancel()
    		}
    		for _, b := range s { // some operation reading from the raw memory
    			sink += b
    		}
    	}
    	if r.closemuScanHold {
    		t.Errorf("closemu held; should not be")
    	}
    
    	// There are 3 rows. We canceled after reading 2 so we expect either
    	// 2 or 3 depending on how the awaitDone goroutine schedules.
    	switch numRows {
    	case 0, 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "string"
              },
              "rule": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    }
    
    var (
    	// allgs contains all Gs ever created (including dead Gs), and thus
    	// never shrinks.
    	//
    	// Access via the slice is protected by allglock or stop-the-world.
    	// Readers that cannot take the lock may (carefully!) use the atomic
    	// variables below.
    	allglock mutex
    	allgs    []*g
    
    	// allglen and allgptr are atomic variables that contain len(allgs) and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	}
    	c.wantErr = replace(c.wantErr, &v)
    	c.wantInitErr = replace(c.wantInitErr, &v)
    
    	if !c.fetchKeysFromRemote {
    		// Set the verifier to use the public key set instead of reading from a remote.
    		c.options.KeySet = &staticKeySet{keys: c.pubKeys}
    	}
    
    	if c.optsFunc != nil {
    		c.optsFunc(&c.options)
    	}
    
    	expectInitErr := len(c.wantInitErr) > 0
    
    	ctx := testContext(t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    				goto bad
    			}
    			if ctxt.Arch.Family == sys.I386 && ctxt.Flag_shared {
    				// The base register has already been set. It holds the PC
    				// of this instruction returned by a PC-reading thunk.
    				// See obj6.go:rewriteToPcrel.
    			} else {
    				base = REG_NONE
    			}
    			v = int32(vaddr(ctxt, p, a, &rel))
    
    		case obj.NAME_AUTO,
    			obj.NAME_PARAM:
    			base = REG_SP
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "message": {
                "description": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
                "type": "string"
              },
              "reason": {
                "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                "type": "string"
              },
              "message": {
                "description": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
                "type": "string"
              },
              "reason": {
                "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    	ctxt.Textp = append(ctxt.Textp, 0)
    	copy(ctxt.Textp[1:], ctxt.Textp)
    	ctxt.Textp[0] = s.Sym()
    }
    
    func (ctxt *Link) buildinfo() {
    	// Write the buildinfo symbol, which go version looks for.
    	// The code reading this data is in package debug/buildinfo.
    	ldr := ctxt.loader
    	s := ldr.CreateSymForUpdate("go:buildinfo", 0)
    	s.SetType(sym.SBUILDINFO)
    	s.SetAlign(16)
    	// The \xff is invalid UTF-8, meant to make it less likely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                "type": "string"
              },
              "message": {
                "description": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
                "type": "string"
              },
              "reason": {
                "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

           * one-sixth of them need cloning when a table doubles. The nodes they replace will be garbage
           * collectable as soon as they are no longer referenced by any reader thread that may be in
           * the midst of traversing table right now.
           */
    
          int newCount = count;
          AtomicReferenceArray<ReferenceEntry<K, V>> newTable = newEntryArray(oldCapacity << 1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top