Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 120 for chunkOf (0.12 sec)

  1. src/cmd/link/internal/loadmacho/ldmacho.go

    		}
    	}
    
    	// load text and data segments into memory.
    	// they are not as small as the load commands, but we'll need
    	// the memory anyway for the symbol images, so we might
    	// as well use one large chunk.
    	if c == nil {
    		return errorf("no load command")
    	}
    
    	if symtab == nil {
    		// our work is done here - no symbols means nothing can refer to this file
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/scoring.go

    	disableDebugTrace()
    }
    
    // scoreCallsRegion assigns numeric scores to each of the callsites in
    // region 'region' within function 'fn'. This can be called on
    // an entire function, or with 'region' set to a chunk of
    // code corresponding to an inlined call.
    func (csa *callSiteAnalyzer) scoreCallsRegion(fn *ir.Func, region ir.Nodes, cstab CallSiteTab, doCallResults bool, ic *ir.InlinedCallExpr) {
    	if debugTrace&debugTraceScoring != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server.go

    		return
    	}
    	fw := flushwriter.Wrap(response.ResponseWriter)
    	response.Header().Set("Transfer-Encoding", "chunked")
    	if err := s.host.GetKubeletContainerLogs(ctx, kubecontainer.GetPodFullName(pod), containerName, logOptions, fw, fw); err != nil {
    		response.WriteError(http.StatusBadRequest, err)
    		return
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  4. src/net/net.go

    }
    
    func releaseThread() {
    	<-threadLimit
    }
    
    // buffersWriter is the interface implemented by Conns that support a
    // "writev"-like batch write optimization.
    // writeBuffers should fully consume and write all chunks from the
    // provided Buffers, else it should report a non-nil error.
    type buffersWriter interface {
    	writeBuffers(*Buffers) (int64, error)
    }
    
    // Buffers contains zero or more runs of bytes to write.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. src/compress/flate/deflate_test.go

    			b[i] = 1
    		} else {
    			b[i] = 0
    		}
    	}
    	r.cur = cur
    	return
    }
    
    func TestVeryLongSparseChunk(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping sparse chunk during short test")
    	}
    	w, err := NewWriter(io.Discard, 1)
    	if err != nil {
    		t.Errorf("NewWriter: %v", err)
    		return
    	}
    	if _, err = io.Copy(w, &sparseReader{l: 23e8}); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	}
    	return nil, errUnrecognized
    }
    
    // cpuProfile returns a new Profile from C++ profilez data.
    // b is the profile bytes after the header, period is the profiling
    // period, and parse is a function to parse 8-byte chunks from the
    // profile in its native endianness.
    func cpuProfile(b []byte, period int64, parse func(b []byte) (uint64, []byte)) (*Profile, error) {
    	p := &Profile{
    		Period:     period * 1000,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  7. src/bufio/bufio.go

    	*b = Reader{
    		buf:          buf,
    		rd:           r,
    		lastByte:     -1,
    		lastRuneSize: -1,
    	}
    }
    
    var errNegativeRead = errors.New("bufio: reader returned negative count from Read")
    
    // fill reads a new chunk into the buffer.
    func (b *Reader) fill() {
    	// Slide existing data to beginning.
    	if b.r > 0 {
    		copy(b.buf, b.buf[b.r:b.w])
    		b.w -= b.r
    		b.r = 0
    	}
    
    	if b.w >= len(b.buf) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  8. pkg/auth/authorizer/abac/abac_test.go

    		{User: uChuck, Verb: "get", Resource: "pods", NS: "ns1", ExpectDecision: authorizer.DecisionNoOpinion},
    		{User: uChuck, Verb: "get", Resource: "floop", NS: "ns1", ExpectDecision: authorizer.DecisionNoOpinion},
    		// Chunk can't access things with no kind or namespace
    		{User: uChuck, Verb: "get", Path: "/", Resource: "", NS: "", ExpectDecision: authorizer.DecisionNoOpinion},
    	}
    	for i, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 40K bytes
    - Viewed (0)
  9. src/net/http/fs.go

    	ctypes, haveType := w.Header()["Content-Type"]
    	var ctype string
    	if !haveType {
    		ctype = mime.TypeByExtension(filepath.Ext(name))
    		if ctype == "" {
    			// read a chunk to decide between utf-8 text and binary
    			var buf [sniffLen]byte
    			n, _ := io.ReadFull(content, buf[:])
    			ctype = DetectContentType(buf[:n])
    			_, err := content.Seek(0, io.SeekStart) // rewind to output whole file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. pkg/adsc/adsc.go

    		default:
    			if isMCP {
    				a.handleMCP(resourceGvk, msg.Resources)
    			}
    		}
    
    		// If we got no resource - still save to the store with empty name/namespace, to notify sync
    		// This scheme also allows us to chunk large responses !
    
    		// TODO: add hook to inject nacks
    
    		a.mutex.Lock()
    		if isMCP {
    			if _, exist := a.sync[resourceGvk.String()]; !exist {
    				a.sync[resourceGvk.String()] = time.Now()
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
Back to top