Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 395 for subTable (0.2 sec)

  1. src/net/http/httptest/httptest.go

    func NewRequest(method, target string, body io.Reader) *http.Request {
    	return NewRequestWithContext(context.Background(), method, target, body)
    }
    
    // NewRequestWithContext returns a new incoming server Request, suitable
    // for passing to an [http.Handler] for testing.
    //
    // The target is the RFC 7230 "request-target": it may be either a
    // path or an absolute URL. If target is an absolute URL, the host name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:09:14 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/html/HtmlEscapers.java

     */
    
    package com.google.common.html;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.escape.Escaper;
    import com.google.common.escape.Escapers;
    
    /**
     * {@code Escaper} instances suitable for strings to be included in HTML attribute values and
     * most elements' text contents. When possible, avoid manual escaping by using templating
     * systems and high-level APIs that provide autoescaping.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 14 22:08:54 UTC 2021
    - 3K bytes
    - Viewed (0)
  3. src/internal/poll/fd.go

    func (e *DeadlineExceededError) Timeout() bool   { return true }
    func (e *DeadlineExceededError) Temporary() bool { return true }
    
    // ErrNotPollable is returned when the file or socket is not suitable
    // for event notification.
    var ErrNotPollable = errors.New("not pollable")
    
    // consume removes data from a slice of byte slices, for writev.
    func consume(v *[][]byte, n int64) {
    	for len(*v) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:16:28 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

      ModuleOp module = getOperation();
      // This pass assumes that all functions are suitable for export, i.e., each
      // function has a single tf_executor.graph op and all islands wrap single
      // ops.
      if (failed(tensorflow::VerifyExportSuitable(module))) {
        module.emitOpError() << "not suitable for checking control dependencies";
        return;
      }
      TF::SideEffectAnalysis side_effect_analysis(module);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

     * [declaration provider][org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinDeclarationProvider].
     *
     * Since this fallback is not suitable for symbols from binary libraries in Standalone mode, the symbol names provider absolutely needs to
     * work there. This functionality is covered by package scope tests.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/html/HtmlEscapers.java

     */
    
    package com.google.common.html;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.escape.Escaper;
    import com.google.common.escape.Escapers;
    
    /**
     * {@code Escaper} instances suitable for strings to be included in HTML attribute values and
     * most elements' text contents. When possible, avoid manual escaping by using templating
     * systems and high-level APIs that provide autoescaping.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 14 22:08:54 UTC 2021
    - 3K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/funcinference.go

    type Settable int
    
    func (p *Settable) Set(s string) {
    	i, _ := strconv.Atoi(s) // real code should not ignore the error
    	*p = Settable(i)
    }
    
    var _ = FromStrings[Settable]([]string{"1", "2"})
    
    // Suitable error message when the type parameter is provided (rather than inferred).
    
    func f8[P, Q any](P, Q) {}
    
    func _(s string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 21:01:45 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. pkg/probe/http/request.go

    	"fmt"
    	"net"
    	"net/http"
    	"net/url"
    	"strconv"
    	"strings"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/component-base/version"
    	"k8s.io/kubernetes/pkg/probe"
    )
    
    // NewProbeRequest returns an http.Request suitable for use as a request for a
    // probe.
    func NewProbeRequest(url *url.URL, headers http.Header) (*http.Request, error) {
    	return newProbeRequest(url, headers, "probe")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 07:39:55 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/api_openapi.json

                "type": "string"
              },
              "serverAddress": {
                "default": "",
                "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.",
                "type": "string"
              }
            },
            "required": [
              "clientCIDR",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. src/net/interface_test.go

    package net
    
    import (
    	"fmt"
    	"reflect"
    	"runtime"
    	"testing"
    )
    
    // loopbackInterface returns an available logical network interface
    // for loopback tests. It returns nil if no suitable interface is
    // found.
    func loopbackInterface() *Interface {
    	ift, err := Interfaces()
    	if err != nil {
    		return nil
    	}
    	for _, ifi := range ift {
    		if ifi.Flags&FlagLoopback != 0 && ifi.Flags&FlagUp != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top