Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for startPos (0.13 sec)

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

    	// NewUnstartedServer and calling Server.StartTLS.
    	EnableHTTP2 bool
    
    	// TLS is the optional TLS configuration, populated with a new config
    	// after TLS is started. If set on an unstarted server before StartTLS
    	// is called, existing fields are copied into the new config.
    	TLS *tls.Config
    
    	// Config may be changed after calling NewUnstartedServer and
    	// before Start or StartTLS.
    	Config *http.Server
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/plugin_test.go

    		b.Log("to run a standalone server, run:")
    		b.Log("go run k8s.io/apiserver/pkg/admission/plugin/webhook/testing/main/main.go")
    		testServer := webhooktesting.NewTestServer(b)
    		testServer.StartTLS()
    		defer testServer.Close()
    		testServerURL = testServer.URL
    	}
    
    	objectInterfaces := webhooktesting.NewObjectInterfacesForTest()
    
    	serverURL, err := url.ParseRequestURI(testServerURL)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt

              }
            }
          }
    
          val startNs = System.nanoTime()
          val response: Response
          try {
            response = chain.proceed(request)
          } catch (e: Exception) {
            logger.log("<-- HTTP FAILED: $e")
            throw e
          }
    
          val tookMs = TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - startNs)
    
          val responseBody = response.body!!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  4. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

          visited.insert(operand);
        }
      }
    }
    
    void FindConsumedOp(Operation *start_op,
                        llvm::DenseSet<Operation *> &consumed_ops) {
      if (consumed_ops.contains(start_op)) return;
      std::vector<Operation *> queue;
      queue.push_back(start_op);
      consumed_ops.insert(start_op);
      while (!queue.empty()) {
        auto op = queue.back();
        queue.pop_back();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    		*ss = 0
    		return ssOverflow
    	}
    	// The Stream-Safe Text Processing prescribes that the counting can stop
    	// as soon as a starter is encountered. However, there are some starters,
    	// like Jamo V and T, that can combine with other runes, leaving their
    	// successive non-starters appended to the previous, possibly causing an
    	// overflow. We will therefore consider any rune with a non-zero nLead to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/net/smtp/smtp_test.go

    			t.Errorf("Client dial: %v", err)
    			return
    		}
    		defer c.Quit()
    		cfg := &tls.Config{ServerName: "example.com"}
    		testHookStartTLS(cfg) // set the RootCAs
    		if err := c.StartTLS(cfg); err != nil {
    			t.Errorf("StartTLS: %v", err)
    			return
    		}
    		cs, ok := c.TLSConnectionState()
    		if !ok {
    			t.Errorf("TLSConnectionState returned ok == false; want true")
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. docs/sts/ldap.md

    MINIO_IDENTITY_LDAP_SERVER_STARTTLS         (on|off)    use StartTLS connection to AD/LDAP server, defaults to "off"
    ```
    
    The server address variable is _required_. TLS is assumed to be on by default. The port in the server address is optional and defaults to 636 if not provided.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    func doAppend(rb *reorderBuffer, out []byte, p int) []byte {
    	rb.setFlusher(out, appendFlush)
    	src, n := rb.src, rb.nsrc
    	doMerge := len(out) > 0
    	if q := src.skipContinuationBytes(p); q > p {
    		// Move leading non-starters to destination.
    		rb.out = src.appendSlice(rb.out, p, q)
    		p = q
    		doMerge = patchTail(rb)
    	}
    	fd := &rb.f
    	if doMerge {
    		var info Properties
    		if p < n {
    			info = fd.info(src, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/lower-static-tensor-list.mlir

    // CHECK:  [[ZERO_2:%cst.*]] = arith.constant dense<0> : tensor<i32>
    // CHECK:  [[EXPANDED_START_INDEX:%.*]] = "tf.ExpandDims"([[ZERO]], [[ZERO_2]]) : (tensor<i32>, tensor<i32>) -> tensor<1xi32>
    // CHECK:  [[START_POS:%.*]] = "tf.Concat"([[ZERO_2]], [[EXPANDED_START_INDEX]], [[PARTIAL_START_POS]]) : (tensor<i32>, tensor<1xi32>, tensor<?xi32>) -> tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 39.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

            checkMethodBase(requestBody).put("/api/admin/scheduler/setting").then().body("response.created", equalTo(true))
                    .body("response.status", equalTo(0));
        }
    
        protected static void startJob(final String namePrefix) {
            for (int i = 0; i < 30; i++) {
                final Map<String, Object> requestBody = new HashMap<>();
                final String schedulerId = getSchedulerIds(namePrefix).get(0);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top