Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for startPos (0.18 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    				}
    				ts := httptest.NewUnstartedServer(h)
    				ts.TLS = &tls.Config{
    					Certificates: []tls.Certificate{cert},
    					NextProtos:   []string{"http2", "http/1.1"},
    				}
    				ts.StartTLS()
    				return ts
    			},
    			ProxyTransport: utilnet.SetTransportDefaults(&http.Transport{TLSClientConfig: &tls.Config{
    				NextProtos:         []string{"http2", "http/1.1"},
    				InsecureSkipVerify: true,
    			}}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler_test.go

    	server := httptest.NewUnstartedServer(handler)
    	server.EnableHTTP2 = true
    	server.StartTLS()
    	cli := server.Client()
    	cli.Timeout = clientTimeout
    	return server, func(req *http.Request) (*http.Response, error) {
    		return cli.Do(req)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. pkg/log/config.go

    	// vs. reading it's internal state.
    	useJSON atomic.Value
    )
    
    func init() {
    	// use our defaults for starters so that logging works even before everything is fully configured
    	_ = Configure(DefaultOptions())
    }
    
    // See: https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry#LogSeverity
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper_test.go

    		if err != nil {
    			t.Errorf("https (invalid hostname): proxy_test: %v", err)
    		}
    		ts := httptest.NewUnstartedServer(h)
    		ts.TLS = &tls.Config{
    			Certificates: []tls.Certificate{cert},
    		}
    		ts.StartTLS()
    		return ts
    	}
    }
    
    func httpsServerValidHostname(t *testing.T) serverFunc {
    	return func(h http.Handler) *httptest.Server {
    		cert, err := tls.X509KeyPair(localhostCert, localhostKey)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  7. src/go/doc/comment/parse.go

    		case spanList:
    			b = d.list(lines[s.start:s.end], prev.end < s.start)
    		case spanCode:
    			b = d.code(lines[s.start:s.end])
    		case spanOldHeading:
    			b = d.oldHeading(lines[s.start])
    		case spanHeading:
    			b = d.heading(lines[s.start])
    		case spanPara:
    			b = d.paragraph(lines[s.start:s.end])
    		}
    		if b != nil {
    			d.Content = append(d.Content, b)
    		}
    		prev = s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

            refresh();
            fileConfigId = getFileConfigIds(NAME_PREFIX).get(0);
    
            createJob();
            logger.info("Job is created");
            refresh();
    
            startJob(NAME_PREFIX);
    
            waitJob(NAME_PREFIX);
            refresh();
        }
    
        @BeforeEach
        protected void init() {
            refresh();
        }
    
        @AfterEach
        protected void tearDown() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. pkg/spiffe/spiffe_test.go

    	}
    
    	server.TLS = &tls.Config{
    		Certificates: []tls.Certificate{
    			{
    				Certificate: serverCert,
    				PrivateKey:  privateKey,
    			},
    		},
    		MinVersion: tls.VersionTLS12,
    	}
    	server.StartTLS()
    	defer server.Close()
    
    	testCases := []struct {
    		name        string
    		certMap     map[string][]string
    		errContains string
    	}{
    		{
    			name:    "Successful validation",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. pkg/dns/client/dns.go

    			if err != nil {
    				return nil, err
    			}
    			h.dnsProxies = append(h.dnsProxies, proxy)
    
    		}
    	}
    
    	return h, nil
    }
    
    // StartDNS starts DNS-over-UDP and DNS-over-TCP servers.
    func (h *LocalDNSServer) StartDNS() {
    	for _, p := range h.dnsProxies {
    		go p.start()
    	}
    }
    
    func (h *LocalDNSServer) UpdateLookupTable(nt *dnsProto.NameTable) {
    	lookupTable := &LookupTable{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top