Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 808 for heal (2.25 sec)

  1. src/time/tick_test.go

    				return
    			}
    		}
    		t.Errorf("len(C) = %d, want 1", n)
    	}
    
    	// Test simple stop; timer never in heap.
    	tim.Stop()
    	noTick()
    
    	// Test modify of timer not in heap.
    	tim.Reset(10000 * Second)
    	noTick()
    
    	if synctimerchan {
    		// Test modify of timer in heap.
    		tim.Reset(1)
    		Sleep(sched)
    		if l, c := len(C), cap(C); l != 0 || c != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. docs/en/docs/reference/apirouter.md

        options:
            members:
                - websocket
                - include_router
                - get
                - put
                - post
                - delete
                - options
                - head
                - patch
                - trace
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 524 bytes
    - Viewed (0)
  3. src/net/http/pattern_test.go

    		p1, p2 string
    		want   relationship
    	}{
    		{"/", "/", equivalent},
    		{"GET /", "GET /", equivalent},
    		{"HEAD /", "HEAD /", equivalent},
    		{"POST /", "POST /", equivalent},
    		{"GET /", "POST /", disjoint},
    		{"GET /", "/", moreSpecific},
    		{"HEAD /", "/", moreSpecific},
    		{"GET /", "HEAD /", moreGeneral},
    	} {
    		pat1 := mustParsePattern(t, test.p1)
    		pat2 := mustParsePattern(t, test.p2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    	}
    	getg().m.traceback = 2
    	throw("found bad pointer in Go heap (incorrect use of unsafe or cgo?)")
    }
    
    // findObject returns the base address for the heap object containing
    // the address p, the object's span, and the index of the object in s.
    // If p does not point into a heap object, it returns base == 0.
    //
    // If p points is an invalid heap pointer and debug.invalidptr != 0,
    // findObject panics.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. src/crypto/aes/gcm_ppc64x.go

    	return g.nonceSize
    }
    
    func (g *gcmAsm) Overhead() int {
    	return g.tagSize
    }
    
    func sliceForAppend(in []byte, n int) (head, tail []byte) {
    	if total := len(in) + n; cap(in) >= total {
    		head = in[:total]
    	} else {
    		head = make([]byte, total)
    		copy(head, in)
    	}
    	tail = head[len(in):]
    	return
    }
    
    // deriveCounter computes the initial GCM counter state from the given nonce.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/CommitDistribution.groovy

            this.commitDistributionsDir = commitDistributionsDir;
        }
    
        /**
         * `super.gradleHome` is not the real Gradle home but the directory which the commit distribution is unzipped into.
         * The real Gradle home is `gradle-7.5-commit-1a2b3c4/gradle-7.5-20220618071843+0000`.
         * @return
         */
        @Override
        TestFile getGradleHomeDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/net/http/client.go

    }
    
    // Head issues a HEAD to the specified URL. If the response is one of
    // the following redirect codes, Head follows the redirect, up to a
    // maximum of 10 redirects:
    //
    //	301 (Moved Permanently)
    //	302 (Found)
    //	303 (See Other)
    //	307 (Temporary Redirect)
    //	308 (Permanent Redirect)
    //
    // Head is a wrapper around DefaultClient.Head.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. src/hash/crc32/crc32_test.go

    	{0x6d52a33c, 0x735400a4, "If the enemy is within range, then so are you.", "crc\x01ʇ\x91My\x1b\x99\xf8", "crc\x01wB\x84\x81\xaaB\x037"},
    	{0x90631e8d, 0xbec49c95, "It's well we cannot hear the screams/That we create in others' dreams.", "crc\x01ʇ\x91M\bqfY", "crc\x01wB\x84\x81\x16y\xa1\xd2"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/reuse_git.txt

    stdout '"TagSum": "t1:47DEQpj8HBSa[+]/TImW[+]5JCeuQeRkm5NMpJWZG3hSuFU="'
    stdout '"Ref": "HEAD"'
    stdout '"Hash": "fc3a09f3dc5cfe0d7a743ea18f1f5226e68b3777"'
    
    # pseudo-version again should not invoke git fetch (it has the version from the @latest query)
    # but still be careful not to include a TagSum or a Ref, especially not Ref set to HEAD,
    # which is easy to do when reusing the cached version from the @latest query.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. src/database/sql/doc.txt

    * Make type casting/conversions consistent between all drivers. To
      achieve this, most of the conversions are done in the sql package,
      not in each driver. The drivers then only have to deal with a
      smaller set of types.
    
    * Be flexible with type conversions, but be paranoid about silent
      truncation or other loss of precision.
    
    * Handle concurrency well.  Users shouldn't need to care about the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 06:48:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top