Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 503 for curB (0.13 sec)

  1. internal/s3select/simdj/testdata/parking-citations-10.json.zst

    {"Ticket":1104803000,"IssueData":"2015-12-21T00:00:00","IssueTime":"2055","RPState":"CA","PlateExpiry":"201503","Make":"NISS","BodyStyle":"PA","Color":"BK","Location":"200 WORLD WAY","Route":"2R2","Agency":2,"ViolationCode":"8939","ViolationDescr":"WHITE CURB","Fine":58,"Latitude":6439997.9,"Longitude":1802686.4} {"Ticket":1104820732,"IssueData":"2015-12-26T00:00:00","IssueTime":"1515","RPState":"CA","PlateExpiry":"","Make":"ACUR","BodyStyle":"PA","Color":"WH","Location":"100 WORLD WAY","Route":"2F11",...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 693 bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/list.go

    		// Not sure why it is necessary.
    		return line{}, true
    	}
    	if !s.isBlank() {
    		c.haveContent = true
    	}
    	return s, true
    }
    
    func newListItem(p *parseState, s line) (line, bool) {
    	if list, ok := p.curB().(*listBuilder); ok && list.todo != nil {
    		s = list.todo()
    		list.todo = nil
    		return s, true
    	}
    	if p.startListItem(&s) {
    		return s, true
    	}
    	return s, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/parse.go

    		t.Inline = ps.inline(t.raw)
    	}
    
    	if p.TaskListItems {
    		for _, list := range ps.lists {
    			ps.taskList(list)
    		}
    	}
    
    	return ps.root, ps.corner
    }
    
    func (p *parseState) curB() blockBuilder {
    	if p.lineDepth < len(p.stack) {
    		return p.stack[p.lineDepth].builder
    	}
    	return nil
    }
    
    func (p *parseState) nextB() blockBuilder {
    	if p.lineDepth+1 < len(p.stack) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/curl/Curl.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.curl;
    
    import java.io.File;
    
    public class Curl {
    
        public static final File tmpDir = new File(System.getProperty("java.io.tmpdir"));
    
        protected Curl() {
            // nothing
        }
    
        public static CurlRequest get(final String url) {
            return new CurlRequest(Method.GET, url);
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Mon Nov 14 21:05:19 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. Dockerfile.hotfix

    # Download mc binary and signature file
    RUN curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc -o /go/bin/mc && \
        curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc.minisig -o /go/bin/mc.minisig && \
        chmod +x /go/bin/mc
    
    RUN if [ "$TARGETARCH" = "amd64" ]; then \
           curl -L -s -q https://github.com/moparisthebest/static-curl/releases/latest/download/curl-${TARGETARCH} -o /go/bin/curl; \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. Dockerfile.release.fips

        chmod +x /go/bin/minio
    
    RUN if [ "$TARGETARCH" = "amd64" ]; then \
           curl -L -s -q https://github.com/moparisthebest/static-curl/releases/latest/download/curl-${TARGETARCH} -o /go/bin/curl; \
           chmod +x /go/bin/curl; \
        fi
    
    # Verify binary signature using public key "RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGavRUN"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. Dockerfile.release

    # Download mc binary and signature file
    RUN curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc -o /go/bin/mc && \
        curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc.minisig -o /go/bin/mc.minisig && \
        chmod +x /go/bin/mc
    
    RUN if [ "$TARGETARCH" = "amd64" ]; then \
           curl -L -s -q https://github.com/moparisthebest/static-curl/releases/latest/download/curl-${TARGETARCH} -o /go/bin/curl; \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 29 19:10:49 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. Dockerfile.release.old_cpu

    # Download mc binary and signature file
    RUN curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc -o /go/bin/mc && \
        curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc.minisig -o /go/bin/mc.minisig && \
        chmod +x /go/bin/mc
    
    RUN if [ "$TARGETARCH" = "amd64" ]; then \
           curl -L -s -q https://github.com/moparisthebest/static-curl/releases/latest/download/curl-${TARGETARCH} -o /go/bin/curl; \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    		// and the call site which uses it. See #49282.
    		if s.curBlock.ID == s.f.Entry.ID && s.hasOpenDefers {
    			b := s.endBlock()
    			b.Kind = ssa.BlockPlain
    			curb := s.f.NewBlock(ssa.BlockPlain)
    			b.AddEdgeTo(curb)
    			s.startBlock(curb)
    		}
    
    		for i, n := range args {
    			callArgs = append(callArgs, s.putArg(n, t.Param(i).Type))
    		}
    
    		callArgs = append(callArgs, s.mem())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller.go

    ) {
    	wrappedHandler := func(prev, curr T, event model.Event) error {
    		curr = informer.Get(curr.GetName(), curr.GetNamespace())
    		if controllers.IsNil(curr) {
    			// this can happen when an immediate delete after update
    			// the delete event can be handled later
    			return nil
    		}
    		return handler(prev, curr, event)
    	}
    	// Pre-build our metric types to avoid recompute them on each event
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top