Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 194 for DT (0.34 sec)

  1. cmd/build-constants.go

    	GOPATH = ""
    
    	// GOROOT - GOROOT value at the time of build.
    	GOROOT = ""
    
    	// Version - version time.RFC3339.
    	Version = "DEVELOPMENT.GOGET"
    
    	// ReleaseTag - release tag in TAG.%Y-%m-%dT%H-%M-%SZ.
    	ReleaseTag = "DEVELOPMENT.GOGET"
    
    	// CommitID - latest commit id.
    	CommitID = "DEVELOPMENT.GOGET"
    
    	// ShortCommitID - first 12 characters from CommitID.
    	ShortCommitID = "DEVELOPMENT.GOGET"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 17:57:52 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/os/timeout_test.go

    		// The writer, with no timeouts of its own,
    		// sending bytes to clients as fast as it can.
    		t0 := time.Now()
    		n, err := io.Copy(w, neverEnding('a'))
    		dt := time.Since(t0)
    		pasvch <- result{n, err, dt}
    	}
    
    	for _, timeout := range []time.Duration{
    		1 * time.Nanosecond,
    		2 * time.Nanosecond,
    		5 * time.Nanosecond,
    		50 * time.Nanosecond,
    		100 * time.Nanosecond,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

                                    }
                                    final Date dt = FessFunctions.parseDate(values[0], dateFormate);
                                    if (dt != null) {
                                        dataMap.put(mapping.getValue1(), FessFunctions.formatDate(dt));
                                    } else {
                                        logger.warn("Failed to parse {}", mapping);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. tools/go-compile-verbose

    START="$(date -u +%s.%N)"
    
    # Output a message, with a timestamp matching istio log format
    function log() {
      delta=$(date +%s.%N --date="$START seconds ago")
      echo -e "$(date -u '+%Y-%m-%dT%H:%M:%S.%NZ')\t${delta}\t$*" >&2 >> /tmp/golog
    }
    
    GROOT="$(go env GOROOT)"
    GPATH="$(go env GOPATH)"
    GMODCACHE="$(go env GOMODCACHE)"
    ROOT="$PWD"
    
    $@
    ls="$(basename $1)"
    shift
    case "$ls" in
      link)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 18:18:29 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/runtime/netpoll_windows.go

    		// in which automatically cancels the wait completion packet.
    		fallthrough
    	case STATUS_SUCCESS:
    		dt := -delay / 100 // relative sleep (negative), 100ns units
    		if stdcall6(_SetWaitableTimer, mp.waitIocpTimer, uintptr(unsafe.Pointer(&dt)), 0, 0, 0, 0) == 0 {
    			println("runtime: SetWaitableTimer failed; errno=", getlasterror())
    			throw("runtime: netpoll failed")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/ops.h

      /// Constructor specifying a node name, index and datatype. This should only
      /// be used for specifying a backward edge, needed by control flow.
      Input(const std::string& name, int32_t i, DataType dt)
          : node_name_(name), index_(i), data_type_(dt) {}
    
      Node* node() const { return output_.node(); }
      std::string node_name() const { return node_name_; }
      int32 index() const { return node_name_.empty() ? output_.index() : index_; }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/css/all.css

    @media (min-width: 768px) {
        p {
            margin: 1.5em 0
        }
    }
    
    li, dt, dd {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.5;
        margin: .25em
    }
    
    ol, ul, dl {
        list-style: initial;
        font-size: 1rem;
        font-weight: 300;
        margin: 0 0 0 1.5em;
        padding: 0
    }
    
    li p, dt p, dd p {
        margin: .4em 0
    }
    
    ol {
        list-style: decimal
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  8. src/html/template/escape.go

    		// Use any template derived during an earlier call to escapeTemplate
    		// with different top level templates, or clone if necessary.
    		dt := e.template(dname)
    		if dt == nil {
    			dt = template.New(dname)
    			dt.Tree = &parse.Tree{Name: dname, Root: t.Root.CopyList()}
    			e.derived[dname] = dt
    		}
    		t = dt
    	}
    	return e.computeOutCtx(c, t), dname
    }
    
    // computeOutCtx takes a template and its start context and computes the output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  9. pkg/bootstrap/testdata/tracing_none_golden.json

    {
      "application_log_config": {
        "log_format": {
            "text_format": "%Y-%m-%dT%T.%fZ\t%l\tenvoy %n %g:%#\t%v\tthread=%t"
        }
      },
      "node": {
        "id": "sidecar~1.2.3.4~foo~bar",
        "cluster": "istio-proxy",
        "locality": {
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/tables.go

    	"address",
    	"article",
    	"aside",
    	"base",
    	"basefont",
    	"blockquote",
    	"body",
    	"caption",
    	"center",
    	"col",
    	"colgroup",
    	"dd",
    	"details",
    	"dialog",
    	"dir",
    	"div",
    	"dl",
    	"dt",
    	"fieldset",
    	"figcaption",
    	"figure",
    	"footer",
    	"form",
    	"frame",
    	"frameset",
    	"h1",
    	"h2",
    	"h3",
    	"h4",
    	"h5",
    	"h6",
    	"head",
    	"header",
    	"hr",
    	"html",
    	"iframe",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top