Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 501 for heal (0.04 sec)

  1. test/fixedbugs/issue35073b.go

    package main
    
    import (
    	"reflect"
    	"unsafe"
    )
    
    func main() {
    	n := 10                      // ERROR "moved to heap: n"
    	m := make(map[string]string) // ERROR "moved to heap: m" "make\(map\[string\]string\) escapes to heap"
    
    	_ = unsafe.Pointer(reflect.ValueOf(&n).Elem().UnsafeAddr()) // ERROR "inlining call"
    	_ = unsafe.Pointer(reflect.ValueOf(&m).Elem().Pointer())    // ERROR "inlining call"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:12:49 UTC 2023
    - 706 bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/builder/RequestDataBuilder.java

                return this;
            }
    
            public RequestDataContext get() {
                return method(Method.GET);
            }
    
            public RequestDataContext head() {
                return method(Method.HEAD);
            }
    
            public RequestDataContext post() {
                return method(Method.POST);
            }
    
            public RequestDataContext url(final String url) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MaximumHeapHelper.java

    import org.gradle.internal.jvm.Jvm;
    
    import java.util.Arrays;
    import java.util.Locale;
    
    /**
     * Helper to compute maximum heap sizes.
     */
    public class MaximumHeapHelper {
    
        /**
         * Get the default maximum heap.
         *
         * Different JVMs on different systems may use a different default for maximum heap when unset.
         * This method implements a best effort approximation, omitting rules for low memory systems (<192MB total RAM).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. test/escape_mutations.go

    }
    
    func F4(b *B) { // ERROR "leaking param content: b"
    	fmt.Println(*b) // ERROR "\.\.\. argument does not escape" "\*b escapes to heap"
    }
    
    func F4a(b *B) { // ERROR "leaking param content: b" "mutates param: b derefs=0"
    	b.x = 2
    	fmt.Println(*b) // ERROR "\.\.\. argument does not escape" "\*b escapes to heap"
    }
    
    func F5(b *B) { // ERROR "leaking param: b"
    	sink = b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/util/testing/fake_test.go

    	}
    	// Add real server to the virtual server
    	for i := range rss {
    		if err = fake.AddRealServer(vs, rss[i]); err != nil {
    			t.Errorf("Fail to add real server, error: %v", err)
    		}
    	}
    	// Delete a real server of the virtual server
    	// Make sure any position of the list can be real deleted
    	rssLen := len(rss)
    	for i := range rss {
    		// List all real servers of the virtual server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. src/runtime/traceallocfree.go

    	traceAllocFreeInfoBatch         // Contains info for interpreting events. [min heap addr, page size, min heap align, min stack align]
    )
    
    // traceSnapshotMemory takes a snapshot of all runtime memory that there are events for
    // (heap spans, heap objects, goroutine stacks, etc.) and writes out events for them.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:32:51 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. hack/verify-govulncheck.sh

    govulncheck -scan module ./... > "${KUBE_TEMP}/head.txt"
    pushd "${WORKTREE}" >/dev/null
      govulncheck -scan module ./... > "${KUBE_TEMP}/pr-base.txt"
    popd >/dev/null
    
    echo -e "\n HEAD: $(cat "${KUBE_TEMP}"/head.txt)" 
    echo -e "\n PR_BASE: $(cat "${KUBE_TEMP}/pr-base.txt")" 
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/definingUsingConfigurations-custom/kotlin/src/main/webapp/hello.jsp

    <html>
    <head><title>Randomizer</title></head>
    <body>
    <%
        double num = Math.random();
        if (num > 0.5) {
    %>
    <h2>It's your lucky day!</h2><p>(<%= num %>)</p>
    <%
    } else {
    %>
    <h2>Sorry...bad day</h2><p>(<%= num %>)</p>
    <%
        }
    %>
    <a href="<%= request.getRequestURI() %>"><h3>Try Again</h3></a>
    </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 312 bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/app/views/main.scala.html

    @(title: String)(content: Html)
    <!DOCTYPE html>
    <html>
        <head>
            <title>@title</title>
            <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")">
            <link rel="shortcut icon" type="image/png" href="@routes.Assets.at("images/favicon.png")">
            <script src="@routes.Assets.at("javascripts/hello.js")" type="text/javascript"></script>
        </head>
        <body>
    @content
        </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 440 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/definingUsingConfigurations-custom/groovy/src/main/webapp/hello.jsp

    <html>
    <head><title>Randomizer</title></head>
    <body>
    <%
        double num = Math.random();
        if (num > 0.5) {
    %>
    <h2>It's your lucky day!</h2><p>(<%= num %>)</p>
    <%
    } else {
    %>
    <h2>Sorry...bad day</h2><p>(<%= num %>)</p>
    <%
        }
    %>
    <a href="<%= request.getRequestURI() %>"><h3>Try Again</h3></a>
    </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 312 bytes
    - Viewed (0)
Back to top