Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 155 for pings (0.05 sec)

  1. guava/src/com/google/common/net/HttpHeaders.java

       * {@code Ping-From}</a> header field name.
       *
       * @since 19.0
       */
      public static final String PING_FROM = "Ping-From";
      /**
       * The HTTP <a href="http://html.spec.whatwg.org/multipage/semantics.html#hyperlink-auditing">
       * {@code Ping-To}</a> header field name.
       *
       * @since 19.0
       */
      public static final String PING_TO = "Ping-To";
    
      /**
       * The HTTP <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/stream.go

    // subprotocol name is used if websocket.Config.Protocol is empty.
    func NewReader(r io.Reader, ping bool, protocols map[string]ReaderProtocolConfig) *Reader {
    	return &Reader{
    		r:           r,
    		err:         make(chan error),
    		ping:        ping,
    		protocols:   protocols,
    		handleCrash: runtime.HandleCrash,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/HttpHeaders.java

       * {@code Ping-From}</a> header field name.
       *
       * @since 19.0
       */
      public static final String PING_FROM = "Ping-From";
      /**
       * The HTTP <a href="http://html.spec.whatwg.org/multipage/semantics.html#hyperlink-auditing">
       * {@code Ping-To}</a> header field name.
       *
       * @since 19.0
       */
      public static final String PING_TO = "Ping-To";
    
      /**
       * The HTTP <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz_test.go

    			sets.NewString(),
    		},
    		{"Should extract out the ping health check",
    			createGetRequestWithUrl("/healthz?exclude=ping"),
    			sets.NewString("ping"),
    		},
    		{"Should extract out ping and log health check",
    			createGetRequestWithUrl("/healthz?exclude=ping&exclude=log"),
    			sets.NewString("ping", "log"),
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 20:43:16 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/connection.go

    	t := time.NewTicker(period)
    	defer t.Stop()
    	for {
    		select {
    		case <-c.conn.CloseChan():
    			return
    		case <-t.C:
    		}
    		if _, err := c.ping(); err != nil {
    			klog.V(3).Infof("SPDY Ping failed: %v", err)
    			// Continue, in case this is a transient failure.
    			// c.conn.CloseChan above will tell us when the connection is
    			// actually closed.
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 01 15:04:07 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  6. src/database/sql/example_cli_test.go

    	signal.Notify(appSignal, os.Interrupt)
    
    	go func() {
    		<-appSignal
    		stop()
    	}()
    
    	Ping(ctx)
    
    	Query(ctx, *id)
    }
    
    // Ping the database to verify DSN provided by the user is valid and the
    // server accessible. If the ping fails exit the program with an error.
    func Ping(ctx context.Context) {
    	ctx, cancel := context.WithTimeout(ctx, 1*time.Second)
    	defer cancel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:27:54 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                    }
                }
    
                abstract class Ping extends DefaultTask {
    
                    Ping() { outputs.upToDateWhen { false } }
    
                    @Inject
                    protected abstract WorkerExecutor getWorkerExecutor()
    
                    @TaskAction
                    void ping() {
                        def taskPath = path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/api/BaseApiManager.java

                return FormatType.FAVORITE;
            }
            if (FormatType.FAVORITES.name().equals(type)) {
                return FormatType.FAVORITES;
            }
            if (FormatType.PING.name().equals(type)) {
                return FormatType.PING;
            }
            if (FormatType.SCROLL.name().equals(type)) {
                return FormatType.SCROLL;
            }
            if (FormatType.SUGGEST.name().equals(type)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. src/container/ring/ring.go

    // Package ring implements operations on circular lists.
    package ring
    
    // A Ring is an element of a circular list, or ring.
    // Rings do not have a beginning or end; a pointer to any ring element
    // serves as reference to the entire ring. Empty rings are represented
    // as nil Ring pointers. The zero value for a Ring is a one-element
    // ring with a nil Value.
    type Ring struct {
    	next, prev *Ring
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    }
    
    // PingHealthz returns true automatically when checked
    var PingHealthz HealthChecker = ping{}
    
    // ping implements the simplest possible healthz checker.
    type ping struct{}
    
    func (ping) Name() string {
    	return "ping"
    }
    
    // PingHealthz is a health check that returns true.
    func (ping) Check(_ *http.Request) error {
    	return nil
    }
    
    // LogHealthz returns true if logging is not blocked
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top