Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for tent (0.05 sec)

  1. src/net/http/transport_test.go

    			test.t.Fatalf("Write: %v", err)
    		}
    	}
    	if _, err := test.conn.Write([]byte("\r\n")); err != nil {
    		test.t.Fatalf("Write: %v", err)
    	}
    }
    
    // wantBodySent ensures the transport has sent the request body to the server.
    func (test *transport100ContinueTest) wantBodySent() {
    	got, err := io.ReadAll(io.LimitReader(test.reader, int64(len(transport100ContinueTestBody))))
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Uploaded Mapping file. */
        public static final String SUCCESS_upload_mapping_file = "{success.upload_mapping_file}";
    
        /** The key of the message: Sent the test mail. */
        public static final String SUCCESS_send_testmail = "{success.send_testmail}";
    
        /** The key of the message: Deleted job logs. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    			db.openNewConnection(ctx)
    		}
    	}
    }
    
    // Open one new connection
    func (db *DB) openNewConnection(ctx context.Context) {
    	// maybeOpenNewConnections has already executed db.numOpen++ before it sent
    	// on db.openerCh. This function must execute db.numOpen-- if the
    	// connection fails or is closed before returning.
    	ci, err := db.connector.Connect(ctx)
    	db.mu.Lock()
    	defer db.mu.Unlock()
    	if db.closed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    	"istio.io/istio/pkg/http/headers"
    	echoClient "istio.io/istio/pkg/test/echo"
    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/pkg/test/framework/components/echo/common/ports"
    	"istio.io/istio/pkg/test/framework/components/echo/echotest"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. src/reflect/value.go

    				// that the runtime will crash on if it sees it during GC or write barriers.
    				// Since it is a not-in-heap pointer, all pointers to the heap are
    				// forbidden! That makes the test pretty easy.
    				// See issue 48399.
    				if !verifyNotInHeapPtr(*(*uintptr)(ptr)) {
    					panic("reflect: reflect.Value.Elem on an invalid notinheap pointer")
    				}
    			}
    			ptr = *(*unsafe.Pointer)(ptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    		},
    		"suspending a job with unsatisfied expectations": {
    			// Unlike the previous test, we expect the controller to NOT suspend the
    			// Job in the syncJob call because the controller will wait for
    			// expectations to be satisfied first. The next syncJob call (not tested
    			// here) will be the same as the previous test.
    			suspend:                   true,
    			parallelism:               2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    				// See RFC 1122 page 88.
    				t.Logf("On test %#v, acceptable error from ReadString: %v", test, err)
    				return
    			}
    			t.Fatalf("On test %#v, ReadString: %v", test, err)
    		}
    		if !strings.Contains(line, test.expectedResponse) {
    			t.Errorf("On test %#v, got first line = %q; want %q", test, line, test.expectedResponse)
    		}
    	}
    
    	for _, test := range serverExpectTests {
    		runTest(test)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CallTest.kt

      }
    
      @Test
      fun post_HTTPS() {
        enableTls()
        post()
      }
    
      @Test
      fun post_HTTP_2() {
        enableProtocol(Protocol.HTTP_2)
        post()
      }
    
      @Test
      fun postZeroLength() {
        server.enqueue(MockResponse(body = "abc"))
        val request =
          Request.Builder()
            .url(server.url("/"))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    	stwForTestCountPagesInUse                       // "CountPagesInUse (test)"
    	stwForTestReadMetricsSlow                       // "ReadMetricsSlow (test)"
    	stwForTestReadMemStatsSlow                      // "ReadMemStatsSlow (test)"
    	stwForTestPageCachePagesLeaked                  // "PageCachePagesLeaked (test)"
    	stwForTestResetDebugLog                         // "ResetDebugLog (test)"
    )
    
    func (r stwReason) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

       * To maintain this code, make a change for the strong reference type. Then, cut and paste, and
       * replace "Strong" with "Soft" or "Weak" within the pasted text. The primary difference is that
       * strong entries store the key reference directly while soft and weak entries delegate to their
       * respective superclasses.
       */
    
      /** Used for strongly-referenced keys. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top