Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for Sr (0.02 sec)

  1. src/cmd/go/internal/bug/bug.go

    func printOSDetails(w io.Writer) {
    	switch runtime.GOOS {
    	case "darwin", "ios":
    		printCmdOut(w, "uname -v: ", "uname", "-v")
    		printCmdOut(w, "", "sw_vers")
    	case "linux":
    		printCmdOut(w, "uname -sr: ", "uname", "-sr")
    		printCmdOut(w, "", "lsb_release", "-a")
    		printGlibcVersion(w)
    	case "openbsd", "netbsd", "freebsd", "dragonfly":
    		printCmdOut(w, "uname -v: ", "uname", "-v")
    	case "illumos", "solaris":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/math/rand/v2/rand_test.go

    // two statsResults are similar.
    func (sr *statsResults) checkSimilarDistribution(expected *statsResults) error {
    	if !nearEqual(sr.mean, expected.mean, expected.closeEnough, expected.maxError) {
    		s := fmt.Sprintf("mean %v != %v (allowed error %v, %v)", sr.mean, expected.mean, expected.closeEnough, expected.maxError)
    		fmt.Println(s)
    		return errors.New(s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. src/math/rand/rand_test.go

    // two statsResults are similar.
    func (sr *statsResults) checkSimilarDistribution(expected *statsResults) error {
    	if !nearEqual(sr.mean, expected.mean, expected.closeEnough, expected.maxError) {
    		s := fmt.Sprintf("mean %v != %v (allowed error %v, %v)", sr.mean, expected.mean, expected.closeEnough, expected.maxError)
    		fmt.Println(s)
    		return errors.New(s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/extensions.go

    	// Parse the secret resource name.
    	sr, err := credentials.ParseResourceName(rn, pluginNamespace, "", "")
    	if err != nil {
    		log.Debugf("Failed to parse wasm secret resource name %v", err)
    		return ""
    	}
    	// Forcely rewrite secret namespace to plugin namespace, since we require secret resource
    	// referenced by WasmPlugin co-located with WasmPlugin in the same namespace.
    	sr.Namespace = pluginNamespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. cmd/bucket-replication-stats.go

    		return
    	}
    	atomic.AddInt64(&r.srStats.ReplicaSize, sz)
    	atomic.AddInt64(&r.srStats.ReplicaCount, 1)
    }
    
    func (r *ReplicationStats) srUpdate(sr replStat) {
    	dID, err := globalSiteReplicationSys.getDeplIDForEndpoint(sr.endpoint())
    	if err == nil {
    		r.srStats.update(sr, dID)
    	}
    }
    
    // Update updates in-memory replication statistics with new values.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    // Passing a nil resolver does not have an effect, instead a default one will be used.
    func (a *Webhook) SetServiceResolver(sr webhookutil.ServiceResolver) {
    	a.clientManager.SetServiceResolver(sr)
    }
    
    // SetExternalKubeClientSet implements the WantsExternalKubeInformerFactory interface.
    // It sets external ClientSet for admission plugins that need it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/fake.go

    	XDSUpdater model.XDSUpdater
    }
    
    func (to TestOptions) FuzzValidate() bool {
    	for _, csc := range to.ConfigStoreCaches {
    		if csc == nil {
    			return false
    		}
    	}
    	for _, sr := range to.ServiceRegistries {
    		if sr == nil {
    			return false
    		}
    	}
    	return true
    }
    
    type ConfigGenTest struct {
    	t                    test.Failer
    	store                model.ConfigStoreController
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. docs/language_names.yml

    ru: русский язык
    rw: Ikinyarwanda
    sa: संस्कृतम्
    sc: sardu
    sd: सिन्धी
    se: Davvisámegiella
    sg: yângâ tî sängö
    si: සිංහල
    sk: slovenčina
    sl: slovenščina
    sn: chiShona
    so: Soomaaliga
    sq: shqip
    sr: српски језик
    ss: SiSwati
    st: Sesotho
    su: Basa Sunda
    sv: svenska
    sw: Kiswahili
    ta: தமிழ்
    te: తెలుగు
    tg: тоҷикӣ
    th: ไทย
    ti: ትግርኛ
    tk: Türkmen
    tl: Wikang Tagalog
    tn: Setswana
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:42:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/net/http/clientserver_test.go

    		CheckResponse: func(proto string, res *Response) {
    			sr, ok := res.Body.(slurpResult)
    			if !ok {
    				t.Errorf("%s body is %T; want slurpResult", proto, res.Body)
    				return
    			}
    			if sr.err != io.ErrUnexpectedEOF {
    				t.Errorf("%s read error = %v; want io.ErrUnexpectedEOF", proto, sr.err)
    			}
    			if string(sr.body) != "12" {
    				t.Errorf("%s body = %q; want %q", proto, sr.body, "12")
    			}
    		},
    	}.run(t)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  10. cmd/generic-handlers.go

    			}
    			return
    		}
    		if globalDomainIPs.Intersection(set.CreateStringSet(getHostsSlice(sr)...)).IsEmpty() {
    			r.URL.Scheme = "http"
    			if globalIsTLS {
    				r.URL.Scheme = "https"
    			}
    			r.URL.Host = getHostFromSrv(sr)
    			// Make sure we remove any existing headers before
    			// proxying the request to another node.
    			for k := range w.Header() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top