Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,146 for heal (0.04 sec)

  1. pkg/proxy/ipvs/graceful_termination.go

    )
    
    const (
    	rsCheckDeleteInterval = 1 * time.Minute
    )
    
    // listItem stores real server information and the process time.
    // If nothing special happened, real server will be delete after process time.
    type listItem struct {
    	VirtualServer *utilipvs.VirtualServer
    	RealServer    *utilipvs.RealServer
    }
    
    // String return the unique real server name(with virtual server information)
    func (g *listItem) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/AbstractCodeQualityTask.java

        /**
         * The minimum heap size for the worker process.  When unspecified, no minimum heap size is set.
         *
         * Supports units like the command-line option {@code -Xms} such as {@code "1g"}.
         *
         * @return The minimum heap size.
         */
        @Optional
        @Input
        public abstract Property<String> getMinHeapSize();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. src/html/template/example_test.go

    	check(err)
    
    	// Output:
    	// <!DOCTYPE html>
    	// <html>
    	// 	<head>
    	// 		<meta charset="UTF-8">
    	// 		<title>My page</title>
    	// 	</head>
    	// 	<body>
    	// 		<div>My photos</div><div>My blog</div>
    	// 	</body>
    	// </html>
    	// <!DOCTYPE html>
    	// <html>
    	// 	<head>
    	// 		<meta charset="UTF-8">
    	// 		<title>My another page</title>
    	// 	</head>
    	// 	<body>
    	// 		<div><strong>no rows</strong></div>
    	// 	</body>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/test/kotlin/gradlebuild/performance/tasks/DetermineBaselinesTest.kt

            // given
            mockGitOperation(listOf("git", "fetch", "origin", "master", "release"), "")
            mockGitOperation(listOf("git", "merge-base", "origin/master", "HEAD"), "master-fork-point")
            mockGitOperation(listOf("git", "merge-base", "origin/release", "HEAD"), "release-fork-point")
            mockGitOperation(listOf("git", "show", "master-fork-point:version.txt"), "5.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpsIntegrationTest.groovy

            given:
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
            def baseUrl = getAuthenticatedBaseUrl()
            prepareWrapper(baseUrl)
            server.expect(server.get("/$TEST_DISTRIBUTION_URL")
                .sendFile(distribution.binDistribution))
            server.expect(server.get("/versions/current").send("""{ "version" : "7.6" }"""))
            server.expect(server.head("/distributions/gradle-7.6-bin.zip"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/templates/structuring-software-projects/server-application/app/src/main/resources/templates/admin.html

    <!DOCTYPE HTML>
    <html xmlns:th='https://www.thymeleaf.org'>
    <head>
      <title>My Product Configurator</title>
      <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'/>
    </head>
    <body>
      <form action='#' th:action='@{/admin}' th:object='${versionRange}' method='post'>
        <p>From Version: <input type='text' th:field='*{fromVersion}'/></p>
        <p>To Version:   <input type='text' th:field='*{toVersion}'/></p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 494 bytes
    - Viewed (0)
  7. test/defererrcheck.go

    }
    
    func f2() {
    	for {
    		defer func() { // ERROR "heap-allocated defer"
    			fmt.Println("defer1")
    		}()
    		if glob > 2 {
    			break
    		}
    	}
    	defer func() { // ERROR "stack-allocated defer"
    		fmt.Println("defer2")
    	}()
    }
    
    func f3() {
    	defer func() { // ERROR "stack-allocated defer"
    		fmt.Println("defer2")
    	}()
    	for {
    		defer func() { // ERROR "heap-allocated defer"
    			fmt.Println("defer1")
    		}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 26 16:54:17 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/comparison/DiffUtils.java

        private void reduceEqualLinesFromHeadAndTail(
                List<String> original, List<String> revised, int contextSize) {
            int head = 0;
            int maxHead = min(original.size(), revised.size());
            while (head < maxHead && original.get(head).equals(revised.get(head))) {
                head++;
            }
            head = max(head - contextSize, 0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/error/admin_error.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %><!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <title><<la:message ke="labels.admin_brand_title"/> | <<la:message ke="labels.error_title"/></title>
        <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
        <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 12:21:50 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

         * @param heapSize The minimum heap size. Use null for the default minimum heap size.
         */
        void setMinHeapSize(@Nullable String heapSize);
    
        /**
         * Returns the maximum heap size for the process, if any.
         *
         * @return The maximum heap size. Returns null if the default maximum heap size should be used.
         */
        @Nullable @Optional @Input
        String getMaxHeapSize();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top