Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 530 for cook (0.22 sec)

  1. src/internal/coverage/cfile/hooks.go

    // terminates.
    func InitHook(istest bool) {
    	// Note: hooks are run in reverse registration order, so
    	// register the counter data hook before the meta-data hook
    	// (in the case where two hooks are needed).
    	exithook.Add(exithook.Hook{F: emitCounterData, RunOnFailure: true})
    	if istest {
    		exithook.Add(exithook.Hook{F: emitMetaData, RunOnFailure: true})
    	} else {
    		emitMetaData()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/math/cmplx/exp.go

    //    Some software in this archive may be from the book _Methods and
    // Programs for Mathematical Functions_ (Prentice-Hall or Simon & Schuster
    // International, 1989) or from the Cephes Mathematical Library, a
    // commercial product. In either event, it is copyrighted by the author.
    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexResponse.java

        protected final long took;
    
        protected SuggestIndexResponse(final int numberOfSuggestDocs, final int numberOfInputDocs, final List<Throwable> errors,
                final long took) {
            this.numberOfSuggestDocs = numberOfSuggestDocs;
            this.numberOfInputDocs = numberOfInputDocs;
            this.took = took;
            if (errors == null || errors.isEmpty()) {
                hasError = false;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/go/doc/comment/testdata/linklist3.txt

    {"DocLinkBaseURL": "https://pkg.go.dev"}
    -- input --
    Cool things:
    
      - Foo
      - [Go]
      - Bar
    
    [Go]: https://go.dev/
    -- text --
    Cool things:
    
      - Foo
      - Go
      - Bar
    
    [Go]: https://go.dev/
    -- markdown --
    Cool things:
    
      - Foo
      - [Go](https://go.dev/)
      - Bar
    
    -- html --
    <p>Cool things:
    <ul>
    <li>Foo
    <li><a href="https://go.dev/">Go</a>
    <li>Bar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 21:57:02 UTC 2022
    - 349 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/hg/hgrepo1.txt

    # had bookmarks pointing to the base of each branch instead of the tip. 🤔
    # Either way, force the bookmarks we care about to match the original copy of
    # the repo.
    hg book v2 -r 3 --force
    hg book v2.3.4 -r 1 --force
    hg book v3 -r 5 --force
    
    hg log -G --debug
    
    hg tags
    cmp stdout .hg-tags
    
    	# 'hg convert' leaves an 'update tags' commit on the default branch, and that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  6. test/fixedbugs/issue34503.dir/a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    import "unsafe"
    
    type HookFunc func(x uint64)
    
    var HookV unsafe.Pointer
    
    func Hook(x uint64) {
    	(*(*HookFunc)(HookV))(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 25 18:10:57 UTC 2019
    - 294 bytes
    - Viewed (0)
  7. test/fixedbugs/issue31053.dir/f1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package f1
    
    type Foo struct {
    	doneChan chan bool
    	Name     string
    	fOO      int
    	hook     func()
    }
    
    func (f *Foo) Exported() {
    }
    
    func (f *Foo) unexported() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 08 20:44:01 UTC 2020
    - 322 bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/tests/value_test.cc

      ASSERT_EQ(c, TaggedValue(3.f));
    }
    
    namespace {
    int alloc_count = 0;
    class Cool {
     public:
      Cool() { alloc_count++; }
      ~Cool() { alloc_count--; }
    };
    }  // namespace
    
    TEST(Test1, TestCapsule) {
      TaggedValue test_moved, test_copy;
      ASSERT_EQ(alloc_count, 0);
      void* ptr_value = new Cool();
      {
        TaggedValue capsule =
            TaggedValue::Capsule(static_cast<void*>(ptr_value),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  9. src/math/tanh.go

    //    Some software in this archive may be from the book _Methods and
    // Programs for Mathematical Functions_ (Prentice-Hall or Simon & Schuster
    // International, 1989) or from the Cephes Mathematical Library, a
    // commercial product. In either event, it is copyrighted by the author.
    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. pkg/kubelet/lifecycle/handlers.go

    		if err != nil {
    			msg = fmt.Sprintf("Exec lifecycle hook (%v) for Container %q in Pod %q failed - error: %v, message: %q", handler.Exec.Command, container.Name, format.Pod(pod), err, string(output))
    			klog.V(1).ErrorS(err, "Exec lifecycle hook for Container in Pod failed", "execCommand", handler.Exec.Command, "containerName", container.Name, "pod", klog.KObj(pod), "message", string(output))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 11:40:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top