Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 487 for heal (0.04 sec)

  1. bin/update_proxy.sh

    SLEEP_TIME=60
    
    printf "Verifying %s is available\n" "$ISTIO_ENVOY_RELEASE_URL"
    until curl --output /dev/null --silent --head --fail "$ISTIO_ENVOY_RELEASE_URL"; do
        printf '.'
        sleep $SLEEP_TIME
    done
    printf '\n'
    
    printf "Verifying %s is available\n" "$ISTIO_ENVOY_ARM_RELEASE_URL"
    until curl --output /dev/null --silent --head --fail "$ISTIO_ENVOY_ARM_RELEASE_URL"; do
        printf '.'
        sleep $SLEEP_TIME
    done
    printf '\n'
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 28 07:59:44 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. test/escape_calls.go

    package foo
    
    func f(buf []byte) []byte { // ERROR "leaking param: buf to result ~r0 level=0$"
    	return buf
    }
    
    func g(*byte) string
    
    func h(e int) {
    	var x [32]byte // ERROR "moved to heap: x$"
    	g(&f(x[:])[0])
    }
    
    type Node struct {
    	s           string
    	left, right *Node
    }
    
    func walk(np **Node) int { // ERROR "leaking param content: np"
    	n := *np
    	w := len(n.s)
    	if n == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 22:06:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. 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)
  4. src/syscall/asm_linux_386.s

    // Kernel interface gets call sub-number and pointer to a0.
    TEXT ·socketcall(SB),NOSPLIT,$0-36
    	CALL	runtime·entersyscall(SB)
    	MOVL	$SYS_SOCKETCALL, AX	// syscall entry
    	MOVL	call+0(FP), BX	// socket call number
    	LEAL	a0+4(FP), CX	// pointer to call arguments
    	MOVL	$0, DX
    	MOVL	$0, SI
    	MOVL	$0, DI
    	INVOKE_SYSCALL
    	CMPL	AX, $0xfffff001
    	JLS	oksock
    	MOVL	$-1, n+28(FP)
    	NEGL	AX
    	MOVL	AX, err+32(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/software/resources-http/src/test/resources/org/gradle/internal/resource/transport/http/mavencentral_dirlisting.html

    <html>
    <head><title>Index of /maven2/junit/junit/</title></head>
    <body bgcolor="white">
    <h1>Index of /maven2/junit/junit/</h1>
    <hr><pre><a href="../">../</a>
        <a href="3.7/">3.7/</a>                                               07-Dec-2010 15:34                   -
        <a href="3.8/">3.8/</a>                                               07-Dec-2010 15:34                   -
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/html/SimpleHtmlWriterTest.groovy

            given:
            StringWriter sw = new StringWriter()
    
            when:
            SimpleHtmlWriter htmlWriter = new SimpleHtmlWriter(sw)
            htmlWriter.startElement("html")
                    .startElement("head").endElement()
                    .startElement("body")
                    .startElement("h1").characters("Test Header").endElement()
                    .endElement()
                    .endElement()
            sw.close()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 21:27:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. releasenotes/notes/46719.yaml

    kind: bug-fix
    area: traffic-management
    issue:
      - 46719
    releaseNotes:
      - |
        **Added** gated flag `ISTIO_ENABLE_IPV4_OUTBOUND_LISTENER_FOR_IPV6_CLUSTERS` to manage an additional outbound listener for IPv6-only clusters to deal with IPv4 NAT outbound traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 03 15:28:21 UTC 2023
    - 414 bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/ReadOnlyDependencyCacheWithinContainerTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    
    @Requires(
        value = [UnitTestPreconditions.HasDocker, IntegTestPreconditions.NotEmbeddedExecutor],
        reason = "needs real Gradle distribution to run in container"
    )
    class ReadOnlyDependencyCacheWithinContainerTest extends AbstractReadOnlyCacheDependencyResolutionTest {
    
        BlockingHttpServer synchronizer
        MavenHttpModule core
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. 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)
Back to top