Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 1,978 for seni (0.05 sec)

  1. src/net/http/fcgi/child.go

    	// Consume the entire body, so the host isn't still writing to
    	// us when we close the socket below in the !keepConn case,
    	// otherwise we'd send a RST. (golang.org/issue/4183)
    	// TODO(bradfitz): also bound this copy in time. Or send
    	// some sort of abort request to the host, so the host
    	// can properly cut off the client sending all the data.
    	// For now just bound it a little and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreator.java

    import org.dbflute.mail.send.SMailDeliveryDepartment;
    import org.dbflute.mail.send.SMailPostalMotorbike;
    import org.dbflute.mail.send.SMailPostalParkingLot;
    import org.dbflute.mail.send.SMailPostalPersonnel;
    import org.dbflute.mail.send.embedded.personnel.SMailDogmaticPostalPersonnel;
    import org.dbflute.mail.send.embedded.receptionist.SMailConventionReceptionist;
    import org.dbflute.mail.send.supplement.async.SMailAsyncStrategy;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. pilot/pkg/xds/ads.go

    	})
    }
    
    // AdsPushAll will send updates to all nodes, with a full push.
    // Mainly used in Debug interface.
    func AdsPushAll(s *DiscoveryServer) {
    	s.AdsPushAll(&model.PushRequest{
    		Full:   true,
    		Push:   s.globalPushContext(),
    		Reason: model.NewReasonStats(model.DebugTrigger),
    	})
    }
    
    // AdsPushAll will send updates to all nodes, for a full config or incremental EDS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. pkg/ctrlz/topics/assets/templates/scopes.html

            let ajax = new XMLHttpRequest();
            ajax.onload = onload;
            ajax.onerror = onerror;
            ajax.open("GET", url, true);
            ajax.send();
    
            function onload() {
                if (this.status === 200) { // request succeeded
                    let si = JSON.parse(this.responseText);
                    for (let i = 0; i < si.length; i++) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. docs_src/openapi_callbacks/tutorial001.py

        And this path operation will:
    
        * Send the invoice to the client.
        * Collect the money from the client.
        * Send a notification back to the API user (the external developer), as a callback.
            * At this point is that the API will somehow send a POST request to the
                external API with the notification of the invoice event
                (e.g. "payment successful").
        """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  6. src/main/resources/fess_env_web.properties

    # ----------------------------------------------------------
    #                                                      Mail
    #                                                     ------
    # Does it send mock mail? (true: no send actually, logging only)
    mail.send.mock = false
    
    # SMTP server settings for main: host:port
    mail.smtp.server.main.host.and.port = localhost:25
    
    # The prefix of subject to show test environment or not
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/goaway.go

    				return ret
    			},
    		},
    	}
    }
    
    // goaway send a GOAWAY to client according to decider for HTTP2 requests
    type goaway struct {
    	handler http.Handler
    	decider GoawayDecider
    }
    
    // ServeHTTP implement HTTP handler
    func (h *goaway) ServeHTTP(w http.ResponseWriter, r *http.Request) {
    	if r.Proto == "HTTP/2.0" && h.decider.Goaway(r) {
    		// Send a GOAWAY and tear down the TCP connection when idle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 28 20:27:28 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  8. src/os/signal/signal_test.go

    	c := make(chan os.Signal, 1)
    	Notify(c, syscall.SIGHUP)
    	defer Stop(c)
    
    	// Send this process a SIGHUP
    	t.Logf("sighup...")
    	syscall.Kill(syscall.Getpid(), syscall.SIGHUP)
    	waitSig(t, c, syscall.SIGHUP)
    
    	// Ask for everything we can get. The buffer size has to be
    	// more than 1, since the runtime might send SIGURG signals.
    	// Using 10 is arbitrary.
    	c1 := make(chan os.Signal, 10)
    	Notify(c1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  9. src/net/net_windows_test.go

    	time.Sleep(alittle)
    
    	// Send second connection data (with delay in a separate goroutine).
    	result := make(chan error)
    	go func() {
    		time.Sleep(alittle)
    		err := send(ln.Addr().String(), "abc")
    		if err != nil {
    			result <- err
    		}
    		result <- nil
    	}()
    	defer func() {
    		err := <-result
    		if err != nil {
    			t.Fatalf("send failed: %v", err)
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/compress/lzw/writer.go

    			return err
    		}
    		w.bits <<= 8
    		w.nBits -= 8
    	}
    	return nil
    }
    
    // errOutOfCodes is an internal error that means that the writer has run out
    // of unused codes and a clear code needs to be sent next.
    var errOutOfCodes = errors.New("lzw: out of codes")
    
    // incHi increments e.hi and checks for both overflow and running out of
    // unused codes. In the latter case, incHi sends a clear code, resets the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top