Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for readImg (0.22 sec)

  1. src/database/sql/sql.go

    	case <-closectx.Done():
    		// rs.cancel was called via Close(); don't store this into contextDone
    		// to ensure Err() is unaffected.
    	}
    	rs.close(ctx.Err())
    }
    
    // Next prepares the next result row for reading with the [Rows.Scan] method. It
    // returns true on success, or false if there is no next result row or an error
    // happened while preparing it. [Rows.Err] should be consulted to distinguish between
    // the two cases.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

    # a number of secure bytes desired and returns a base64 encoded string with at
    # least the requested entropy. Rather than directly reading from /dev/urandom,
    # we use uuidgen which calls getrandom(2). getrandom(2) verifies that the
    # entropy pool has been initialized sufficiently for the desired operation
    # before reading from /dev/urandom.
    #
    # ARGS:
    #   #1: number of secure bytes to generate. We round up to the nearest factor of 32.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    // go run mksyscall_zos_s390x.go -o_sysnum zsysnum_zos_s390x.go -o_syscall zsyscall_zos_s390x.go -i_syscall syscall_zos_s390x.go -o_asm zsymaddr_zos_s390x.s
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build zos && s390x
    
    package unix
    
    const (
    	SYS_LOG                             = 0x17  // 23
    	SYS_COSH                            = 0x18  // 24
    	SYS_TANH                            = 0x19  // 25
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  5. 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)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    ["*"] # TODO: should be on just */status but wildcard is not supported verbs: ["update", "patch"] - apiGroups: ["gateway.networking.k8s.io"] resources: ["gatewayclasses"] verbs: ["create", "update", "patch", "delete"] # Needed for multicluster secret reading, possibly ingress certs in the future - apiGroups: [""] resources: ["secrets"] verbs: ["get", "watch", "list"] # Used for MCS serviceexport management - apiGroups: ["{{ $mcsAPIGroup }}"] resources: ["serviceexports"] verbs: [ "get", "watch", "list",...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  7. 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)
  8. cmd/object-handlers.go

    	}
    	return false
    }
    
    // CopyObjectHandler - Copy Object
    // ----------
    // This implementation of the PUT operation adds an object to a bucket
    // while reading the object from another source.
    // Notice: The S3 client can send secret keys in headers for encryption related jobs,
    // the handler should ensure to remove these keys before sending them to the object layer.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  9. cmd/server_test.go

    	c.Assert(err, nil)
    	// executing the HTTP request.
    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	// validating the response status code.
    	c.Assert(response.StatusCode, http.StatusOK)
    	// reading the response body.
    	// response body is expected to have the copied content of the first uploaded object.
    	object, err := io.ReadAll(response.Body)
    	c.Assert(err, nil)
    	c.Assert(string(object), "hello world")
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  10. 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)
Back to top