Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for Usages (0.44 sec)

  1. src/net/http/transport.go

    type wantConnQueue struct {
    	// This is a queue, not a deque.
    	// It is split into two stages - head[headPos:] and tail.
    	// popFront is trivial (headPos++) on the first stage, and
    	// pushBack is trivial (append) on the second stage.
    	// If the first stage is empty, popFront can swap the
    	// first and second stages to remedy the situation.
    	//
    	// This two-stage split is analogous to the use of two lists
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. src/net/http/httputil/reverseproxy_test.go

    	defer frontendProxy.Close()
    
    	if _, err = frontendProxy.Client().Get(frontendProxy.URL); err == nil {
    		t.Fatalf("want non-nil error")
    	}
    	// The race detector complains about the proxyLog usage in logf in copyBuffer
    	// and our usage below with proxyLog.Bytes() so we're explicitly using a
    	// channel to ensure that the ReverseProxy's ServeHTTP is done before we
    	// continue after Get.
    	<-donec
    
    	expected := []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. src/html/template/escape_test.go

    		{
    			"optional attrs",
    			`<img class="{{"iconClass"}}"` +
    				`{{if .T}} id="{{"<iconId>"}}"{{end}}` +
    				// Double quotes inside if/else.
    				` src=` +
    				`{{if .T}}"?{{"<iconPath>"}}"` +
    				`{{else}}"images/cleardot.gif"{{end}}` +
    				// Missing space before title, but it is not a
    				// part of the src attribute.
    				`{{if .T}}title="{{"<title>"}}"{{end}}` +
    				// Quotes outside if/else.
    				` alt="` +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/javadoc.css

        white-space: pre;
    }
    .member-signature .type-parameters {
        white-space: normal;
    }
    /*
     * Styles for formatting effect.
     */
    .source-line-no {
        /* Color of line numbers in source pages can be set via custom property below */
        color:var(--source-linenumber-color, green);
        padding:0 30px 0 0;
    }
    .block {
        display:block;
        margin:0 10px 5px 0;
        color:var(--block-text-color);
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  5. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.antix.game-component",
    				"application/vnd.apple.installer+xml",
    				"application/vnd.apple.iwork",
    				"application/vnd.apple.keynote",
    				"application/vnd.apple.pages",
    				"application/vnd.apple.numbers",
    				"application/x-tika-iworks-protected",
    				"application/vnd.arastra.swi",
    				"application/vnd.audiograph",
    				"application/vnd.autopackage",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// assume cache).
    	//
    	// It uses cache.MetaNamespaceKeyFunc to generate object names, which
    	// therefore are "<namespace>/<name>".
    	//
    	// This is necessary to ensure that reconstructing the resource usage
    	// at the start of a pod scheduling cycle doesn't reuse the resources
    	// assigned to such a claim. Alternatively, claim allocation state
    	// could also get tracked across pod scheduling cycles, but that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    	// a syscall, so its overhead is nontrivial). Higher values
    	// make the system less responsive to incoming work.
    	drainCheckThreshold = 100000
    
    	// pagesPerSpanRoot indicates how many pages to scan from a span root
    	// at a time. Used by special root marking.
    	//
    	// Higher values improve throughput by increasing locality, but
    	// increase the minimum latency of a marking operation.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        }
      });
    
      return failure(has_illegal_ops);
    }
    
    // Converts a set of TF2XLA ops into pure TF ops for future legalizations as
    // TF2XLA ops aren't supported by later stages.
    LogicalResult ConvertTf2XlaOps(func::FuncOp func, MLIRContext *context) {
      ConversionTarget target(*context);
      target.addLegalDialect<arith::ArithDialect>();
      target.addLegalDialect<func::FuncDialect>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    	// ClusterUpdate describes a push triggered by a Cluster change
    	ClusterUpdate TriggerReason = "cluster"
    )
    
    // Merge two update requests together
    // Merge behaves similarly to a list append; usage should in the form `a = a.merge(b)`.
    // Importantly, Merge may decide to allocate a new PushRequest object or reuse the existing one - both
    // inputs should not be used after completion.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     * your HTTP calls. This is because each client holds its own connection pool and thread pools.
     * Reusing connections and threads reduces latency and saves memory. Conversely, creating a client
     * for each request wastes resources on idle pools.
     *
     * Use `new OkHttpClient()` to create a shared instance with the default settings:
     *
     * ```java
     * // The singleton HTTP client.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top