Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for meisten (0.2 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    you see, Alice had learnt several things of this sort in her
    lessons in the schoolroom, and though this was not a VERY good
    opportunity for showing off her knowledge, as there was no one to
    listen to her, still it was good practice to say it over) `--yes,
    that's about the right distance--but then I wonder what Latitude
    or Longitude I've got to?'  (Alice had no idea what Latitude was,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    you see, Alice had learnt several things of this sort in her
    lessons in the schoolroom, and though this was not a VERY good
    opportunity for showing off her knowledge, as there was no one to
    listen to her, still it was good practice to say it over) `--yes,
    that's about the right distance--but then I wonder what Latitude
    or Longitude I've got to?'  (Alice had no idea what Latitude was,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  3. src/net/http/server.go

    }
    
    // A Server defines parameters for running an HTTP server.
    // The zero value for Server is a valid configuration.
    type Server struct {
    	// Addr optionally specifies the TCP address for the server to listen on,
    	// in the form "host:port". If empty, ":http" (port 80) is used.
    	// The service names are defined in RFC 6335 and assigned by IANA.
    	// See net.Dial for details of the address format.
    	Addr string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/_aws/fess.json

    "minulle", "sinä", "sinun", "sinut", "sinua", "sinussa", "sinusta", "sinuun", "sinulla", "sinulta", "sinulle", "hän", "hänen", "hänet", "häntä", "hänessä", "hänestä", "häneen", "hänellä", "häneltä", "hänelle", "me", "meidän", "meidät", "meitä", "meissä", "meistä", "meihin", "meillä", "meiltä", "meille", "te", "teidän", "teidät", "teitä", "teissä", "teistä", "teihin", "teillä", "teiltä", "teille", "he", "heidän", "heidät", "heitä", "heissä", "heistä", "heihin", "heillä", "heiltä", "heille", "tämä", "tämän",...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 23 12:38:28 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/_cloud/fess.json

    "minulle", "sinä", "sinun", "sinut", "sinua", "sinussa", "sinusta", "sinuun", "sinulla", "sinulta", "sinulle", "hän", "hänen", "hänet", "häntä", "hänessä", "hänestä", "häneen", "hänellä", "häneltä", "hänelle", "me", "meidän", "meidät", "meitä", "meissä", "meistä", "meihin", "meillä", "meiltä", "meille", "te", "teidän", "teidät", "teitä", "teissä", "teistä", "teihin", "teillä", "teiltä", "teille", "he", "heidän", "heidät", "heitä", "heissä", "heistä", "heihin", "heillä", "heiltä", "heille", "tämä", "tämän",...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  6. src/cmd/trace/testdata/go122.test

    	data="net.(*netFD).listenStream"
    String id=120
    	data="net.(*sysListener).listenTCPProto"
    String id=121
    	data="net.(*sysListener).listenTCP"
    String id=122
    	data="net.(*ListenConfig).Listen"
    String id=123
    	data="net.Listen"
    String id=124
    	data="runtime.(*scavengerState).park"
    String id=125
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mgcscavenge.go"
    String id=126
    	data="runtime.bgscavenge"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procgetsockopt                                           = modws2_32.NewProc("getsockopt")
    	proclisten                                               = modws2_32.NewProc("listen")
    	procntohs                                                = modws2_32.NewProc("ntohs")
    	procrecvfrom                                             = modws2_32.NewProc("recvfrom")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status_test.go

    	if testing.Short() {
    		t.Skip("skipping test in short mode.")
    	}
    
    	attempts := int64(0)
    	failureCallbacks := int64(0)
    
    	// set up a listener that hangs connections
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	assert.NoError(t, err)
    	defer ln.Close()
    	go func() {
    		// accept connections and just let them hang
    		for {
    			_, err := ln.Accept()
    			if err != nil {
    				t.Log(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    		return fmt.Errorf("body Close = %v", err)
    	}
    	return nil
    }
    
    func newLocalListener(t *testing.T) net.Listener {
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    		ln, err = net.Listen("tcp6", "[::1]:0")
    	}
    	if err != nil {
    		t.Fatal(err)
    	}
    	return ln
    }
    
    type countCloseReader struct {
    	n *int
    	io.Reader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.4.md

    * Implement alpha version of PreferAvoidPods ([#20699](https://github.com/kubernetes/kubernetes/pull/20699), [@jiangyaoguo](https://github.com/jiangyaoguo))
    * Retry when apiserver fails to listen on insecure port ([#28797](https://github.com/kubernetes/kubernetes/pull/28797), [@aaronlevy](https://github.com/aaronlevy))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
Back to top