Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for startPos (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/runtime/netpoll_solaris.go

    			netpollupdate(pd, 0, uint32(clear))
    			unlock(&pd.lock)
    		}
    
    		if mode != 0 {
    			// TODO(mikio): Consider implementing event
    			// scanning error reporting once we are sure
    			// about the event port on SmartOS.
    			//
    			// See golang.org/x/issue/30840.
    			delta += netpollready(&toRun, pd, mode)
    		}
    	}
    
    	return toRun, delta
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/go/printer/testdata/declarations.input

    	b
    	c
    	def
    )
    
    // excerpt from godoc.go
    var (
    	goroot = flag.String("goroot", runtime.GOROOT(), "Go root directory")
    	testDir = flag.String("testdir", "", "Go root subdirectory - for testing only (faster startups)")
    	pkgPath = flag.String("path", "", "additional package directories (colon-separated)")
    	filter = flag.String("filter", "", "filter file containing permitted package directory paths")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    			},
    		}
    		w.Header().Set("Content-Type", "application/json")
    		json.NewEncoder(w).Encode(resp)
    	}
    
    	server := httptest.NewUnstartedServer(http.HandlerFunc(serveHTTP))
    	server.TLS = tlsConfig
    	server.StartTLS()
    
    	// Adjust the path to point to our custom path
    	serverURL, _ := url.Parse(server.URL)
    	serverURL.Path = webhookPath
    	server.URL = serverURL.String()
    
    	return server, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    		}
    		w.Header().Set("Content-Type", "application/json")
    		json.NewEncoder(w).Encode(resp)
    	}
    
    	server := httptest.NewUnstartedServer(http.HandlerFunc(serveHTTP))
    	server.TLS = tlsConfig
    	server.StartTLS()
    
    	// Adjust the path to point to our custom path
    	serverURL, _ := url.Parse(server.URL)
    	serverURL.Path = webhookPath
    	server.URL = serverURL.String()
    
    	return server, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    Gradle runs on the Java Virtual Machine (JVM) and uses several supporting libraries with non-trivial initialization time.
    Startups can be slow.
    The **Gradle Daemon** solves this problem.
    
    The Gradle Daemon is a long-lived background process that reduces the time it takes to run a build.
    
    The Gradle Daemon reduces build times by:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top