Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 209 for bland (0.07 sec)

  1. src/go/printer/testdata/expressions.golden

    	f(1, args)
    	f(2, args[0])
    
    	// make sure syntactically legal code remains syntactically legal
    	f(3, 42 ...)	// a blank must remain between 42 and ...
    	f(4, 42....)
    	f(5, 42....)
    	f(6, 42.0...)
    	f(7, 42.0...)
    	f(8, .42...)
    	f(9, .42...)
    	f(10, 42e0...)
    	f(11, 42e0...)
    
    	_ = 42 .x	// a blank must remain between 42 and .x
    	_ = 42..x
    	_ = 42..x
    	_ = 42.0.x
    	_ = 42.0.x
    	_ = .42.x
    	_ = .42.x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  2. src/go/printer/testdata/expressions.raw

    	f(1, args)
    	f(2, args[0])
    
    	// make sure syntactically legal code remains syntactically legal
    	f(3, 42 ...)	// a blank must remain between 42 and ...
    	f(4, 42....)
    	f(5, 42....)
    	f(6, 42.0...)
    	f(7, 42.0...)
    	f(8, .42...)
    	f(9, .42...)
    	f(10, 42e0...)
    	f(11, 42e0...)
    
    	_ = 42 .x	// a blank must remain between 42 and .x
    	_ = 42..x
    	_ = 42..x
    	_ = 42.0.x
    	_ = 42.0.x
    	_ = .42.x
    	_ = .42.x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  3. src/net/unixsock.go

    	}
    	return n, err
    }
    
    // WriteMsgUnix writes a message to addr via c, copying the payload
    // from b and the associated out-of-band data from oob. It returns the
    // number of payload and out-of-band bytes written.
    //
    // Note that if len(b) == 0 and len(oob) > 0, this function will still
    // write 1 byte to the connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

            spec.withException(e);
        }
    
        private TaskSelector.SelectionContext sanityCheckPath(String name, String type) {
            // Don't allow paths that are:
            // - empty or blank
            // - the root path
            // - have empty or blank segments (eg `::a`, `a::b`, `a:  :b`, etc)
    
            if (name.isEmpty() || StringUtils.isBlank(name)) {
                throw problemsService.getInternalReporter().throwing(spec -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. src/go/types/signature.go

    		_, rname, rparams := check.unpackRecv(recvPar.List[0].Type, true)
    		if len(rparams) > 0 {
    			// The scope of the type parameter T in "func (r T[T]) f()"
    			// starts after f, not at "r"; see #52038.
    			scopePos := ftyp.Params.Pos()
    			tparams := check.declareTypeParams(nil, rparams, scopePos)
    			sig.rparams = bindTParams(tparams)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    siracusa.it sirdal.no site site.tb-hosting.com site.transip.me siteleaf.net sites.static.land sj sjc.br sk sk.ca sk.eu.org skanit.no skanland.no skaun.no skedsmo.no skedsmokorset.no ski ski.museum ski.no skien.no skierva.no skiervá.no skin skiptvet.no skjak.no skjervoy.no skjervøy.no skjåk.no sklep.pl sko.gov.pl skoczow.pl skodje.no skole.museum sky skydiving.aero skygearapp.com skype skánit.no skånland.no sl slask.pl slattum.no sld.do sld.pa slg.br sling slupsk.pl slz.br sm sm.ua small-web.org...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  7. src/net/udpsock.go

    // to c's remote address if c is connected (in which case addr must be
    // nil). The payload is copied from b and the associated out-of-band
    // data is copied from oob. It returns the number of payload and
    // out-of-band bytes written.
    //
    // The packages golang.org/x/net/ipv4 and golang.org/x/net/ipv6 can be
    // used to manipulate IP-level socket options in oob.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. pkg/apis/core/fuzzer/fuzzer.go

    		},
    		func(http *core.HTTPGetAction, c fuzz.Continue) {
    			c.FuzzNoCustom(http)            // fuzz self without calling this function again
    			http.Path = "/" + http.Path     // can't be blank
    			http.Scheme = "x" + http.Scheme // can't be blank
    		},
    		func(ss *core.ServiceSpec, c fuzz.Continue) {
    			c.FuzzNoCustom(ss) // fuzz self without calling this function again
    			if len(ss.Ports) == 0 {
    				// There must be at least 1 port.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    				*j = &i
    			} else {
    				*j = nil
    			}
    		},
    		func(j *runtime.TypeMeta, c fuzz.Continue) {
    			// We have to customize the randomization of TypeMetas because their
    			// APIVersion and Kind must remain blank in memory.
    			j.APIVersion = ""
    			j.Kind = ""
    		},
    		func(j *runtime.Object, c fuzz.Continue) {
    			// TODO: uncomment when round trip starts from a versioned object
    			if true { //c.RandBool() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/Cache.kt

            responseHeaders = responseHeadersBuilder.build()
    
            if (url.isHttps) {
              val blank = source.readUtf8LineStrict()
              if (blank.isNotEmpty()) {
                throw IOException("expected \"\" but was \"$blank\"")
              }
              val cipherSuiteString = source.readUtf8LineStrict()
              val cipherSuite = CipherSuite.forJavaName(cipherSuiteString)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top