Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for beginning (0.2 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    	// Append any usage of the go versions of ELF save/restore
    	// functions to the end of the callstub list to minimize
    	// chances a trampoline might be needed.
    	stubs = append(stubs, abifuncs...)
    
    	// Put stubs at the beginning (instead of the end).
    	// So when resolving the relocations to calls to the stubs,
    	// the addresses are known and trampolines can be inserted
    	// when necessary.
    	ctxt.Textp = append(stubs, ctxt.Textp...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    	req.Header.Set("content-encoding", "aws-chunked")
    	req.Header.Set("x-amz-decoded-content-length", strconv.FormatInt(dataLength, 10))
    	req.Header.Set("content-length", strconv.FormatInt(contentLength, 10))
    
    	// Seek back to beginning.
    	body.Seek(0, 0)
    
    	// Add body
    	req.Body = io.NopCloser(body)
    	req.ContentLength = contentLength
    
    	return req, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. src/runtime/map.go

    	offset      uint8          // intra-bucket offset to start from during iteration (should be big enough to hold bucketCnt-1)
    	wrapped     bool           // already wrapped around from end of bucket array to beginning
    	B           uint8
    	i           uint8
    	bucket      uintptr
    	checkBucket uintptr
    }
    
    // bucketShift returns 1<<b, optimized for code generation.
    func bucketShift(b uint8) uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                        //don't allow selection of dates before the minimum...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    	// then release mheap_.lock.
    	allArenas []arenaIdx
    
    	// sweepArenas is a snapshot of allArenas taken at the
    	// beginning of the sweep cycle. This can be read safely by
    	// simply blocking GC (by disabling preemption).
    	sweepArenas []arenaIdx
    
    	// markArenas is a snapshot of allArenas taken at the beginning
    	// of the mark cycle. Because allArenas is append-only, neither
    	// this slice nor its contents will change during the mark, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    }
    
    // SyncLoop runs periodic work.  This is expected to run as a goroutine or as the main loop of the app.  It does not return.
    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    	// synthesize "last change queued" time as the informers are syncing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. src/regexp/testdata/testregex.c

    T("  -F	list failed test lines\n");
    T("  -P	list passed test lines\n");
    T("  -S	output one summary line\n");
    T("\n");
    T("INPUT FORMAT\n");
    T("  Input lines may be blank, a comment beginning with #, or a test\n");
    T("  specification. A specification is five fields separated by one\n");
    T("  or more tabs. NULL denotes the empty string and NIL denotes the\n");
    T("  0 pointer.\n");
    T("\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  8. src/html/template/escape_test.go

    		},
    		{
    			"badMarshaler",
    			`<button onclick='alert(1/{{.B}}in numbers)'>`,
    			`<button onclick='alert(1/ /* json: error calling MarshalJSON for type *template.badMarshaler: invalid character &#39;f&#39; looking for beginning of object key string */null in numbers)'>`,
    		},
    		{
    			"jsMarshaler",
    			`<button onclick='alert({{.M}})'>`,
    			`<button onclick='alert({&#34;\u003cfoo\u003e&#34;:&#34;O&#39;Reilly&#34;})'>`,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    }
    
    // SyncLoop runs periodic work.  This is expected to run as a goroutine or as the main loop of the app.  It does not return.
    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    
    	// synthesize "last change queued" time as the informers are syncing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    	// Calculate the dominator tree and locate all strongly connected components.
    	// If a value is live in one block of an SCC, it is live in all.
    	// Walk the dominator tree from end to beginning, just once, treating SCC
    	// components as single blocks, duplicated calculated liveness information
    	// out to all of them.
    	po := f.postorder()
    	s.loopnest = f.loopnest()
    	s.loopnest.calculateDepths()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top