Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 193 for maxsize (0.33 sec)

  1. src/cmd/go/internal/modfetch/codehost/vcs.go

    	return info, nil
    }
    
    func (r *vcsRepo) Latest(ctx context.Context) (*RevInfo, error) {
    	return r.Stat(ctx, "latest")
    }
    
    func (r *vcsRepo) ReadFile(ctx context.Context, rev, file string, maxSize int64) ([]byte, error) {
    	if rev == "latest" {
    		rev = r.cmd.latest
    	}
    	_, err := r.Stat(ctx, rev) // download rev into local repo
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. pkg/kubelet/logs/container_log_manager_test.go

    	const (
    		testMaxFiles = 3
    		testMaxSize  = 10
    	)
    	now := time.Now()
    	f := critest.NewFakeRuntimeService()
    	c := &containerLogManager{
    		runtimeService: f,
    		policy: LogRotatePolicy{
    			MaxSize:  testMaxSize,
    			MaxFiles: testMaxFiles,
    		},
    		osInterface: container.RealOS{},
    		clock:       testingclock.NewFakeClock(now),
    		mutex:       sync.Mutex{},
    		queue: workqueue.NewTypedRateLimitingQueueWithConfig(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/runtime/asm_ppc64x.s

    // of constant-sized-frame functions to encode a few bits of size in the pc.
    // Caution: ugly multiline assembly macros in your future!
    
    #define DISPATCH(NAME,MAXSIZE)		\
    	MOVD	$MAXSIZE, R31;		\
    	CMP	R3, R31;		\
    	BGT	4(PC);			\
    	MOVD	$NAME(SB), R12;		\
    	MOVD	R12, CTR;		\
    	BR	(CTR)
    // Note: can't just "BR NAME(SB)" - bad inlining results.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  4. src/mime/multipart/multipart_test.go

    	}
    }
    
    func TestParseAllSizes(t *testing.T) {
    	t.Parallel()
    	maxSize := 5 << 10
    	if testing.Short() {
    		maxSize = 512
    	}
    	var buf bytes.Buffer
    	body := strings.Repeat("a", maxSize)
    	bodyb := []byte(body)
    	for size := 0; size < maxSize; size++ {
    		buf.Reset()
    		w := NewWriter(&buf)
    		part, _ := w.CreateFormField("f")
    		part.Write(bodyb[:size])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 30.4K bytes
    - Viewed (0)
  5. src/runtime/asm_arm64.s

    // of constant-sized-frame functions to encode a few bits of size in the pc.
    // Caution: ugly multiline assembly macros in your future!
    
    #define DISPATCH(NAME,MAXSIZE)		\
    	MOVD	$MAXSIZE, R27;		\
    	CMP	R27, R16;		\
    	BGT	3(PC);			\
    	MOVD	$NAME(SB), R27;	\
    	B	(R27)
    // Note: can't just "B NAME(SB)" - bad inlining results.
    
    TEXT ·reflectcall(SB), NOSPLIT|NOFRAME, $0-48
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. src/runtime/asm_mips64x.s

    // of constant-sized-frame functions to encode a few bits of size in the pc.
    // Caution: ugly multiline assembly macros in your future!
    
    #define DISPATCH(NAME,MAXSIZE)		\
    	MOVV	$MAXSIZE, R23;		\
    	SGTU	R1, R23, R23;		\
    	BNE	R23, 3(PC);			\
    	MOVV	$NAME(SB), R4;	\
    	JMP	(R4)
    // Note: can't just "BR NAME(SB)" - bad inlining results.
    
    TEXT ·reflectcall(SB), NOSPLIT|NOFRAME, $0-48
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  7. src/runtime/asm_riscv64.s

    // of constant-sized-frame functions to encode a few bits of size in the pc.
    // Caution: ugly multiline assembly macros in your future!
    
    #define DISPATCH(NAME,MAXSIZE)	\
    	MOV	$MAXSIZE, T1	\
    	BLTU	T1, T0, 3(PC)	\
    	MOV	$NAME(SB), T2;	\
    	JALR	ZERO, T2
    // Note: can't just "BR NAME(SB)" - bad inlining results.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsbhv/BsKeyMatchBhv.java

                result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy")));
                result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime")));
                result.setMaxSize(DfTypeUtil.toInteger(source.get("maxSize")));
                result.setQuery(DfTypeUtil.toString(source.get("query")));
                result.setTerm(DfTypeUtil.toString(source.get("term")));
                result.setUpdatedBy(DfTypeUtil.toString(source.get("updatedBy")));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/runtime/asm_loong64.s

    // of constant-sized-frame functions to encode a few bits of size in the pc.
    // Caution: ugly multiline assembly macros in your future!
    
    #define DISPATCH(NAME,MAXSIZE)		\
    	MOVV	$MAXSIZE, R30;		\
    	SGTU	R19, R30, R30;		\
    	BNE	R30, 3(PC);			\
    	MOVV	$NAME(SB), R4;	\
    	JMP	(R4)
    // Note: can't just "BR NAME(SB)" - bad inlining results.
    
    TEXT ·reflectcall(SB), NOSPLIT|NOFRAME, $0-48
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. src/runtime/asm_mipsx.s

    // we don't have variable-sized frames, so we use a small number
    // of constant-sized-frame functions to encode a few bits of size in the pc.
    
    #define DISPATCH(NAME,MAXSIZE)	\
    	MOVW	$MAXSIZE, R23;	\
    	SGTU	R1, R23, R23;	\
    	BNE	R23, 3(PC);	\
    	MOVW	$NAME(SB), R4;	\
    	JMP	(R4)
    
    TEXT ·reflectcall(SB),NOSPLIT|NOFRAME,$0-28
    	MOVW	frameSize+20(FP), R1
    
    	DISPATCH(runtime·call16, 16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top