Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 105 for Sr (0.02 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestTestFrameworkIntegrationTest.groovy

            // It was hard to get the desired outcome on macOS and impossible for Linux. It
            // all seems to be related to https://bugs.swift.org/browse/SR-1127. On Linux,
            // we just can't assert that test output is captured correctly. Until we roll out
            // our own driver app, test output capture only works on macOS.
            return OperatingSystem.current().macOsX
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            <!--</module>-->
    
            <!-- Coding -->
            <module name="CovariantEquals"/>
            <module name="DefaultComesLast"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:16 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  7. src/image/internal/imageutil/gen.go

    	// rest of Go 1 compatibility), and decide if we want to have a more
    	// general purpose DrawToRGBA method for other image types. One possibility
    	// is:
    	//
    	// func (src *YCbCr) CopyToRGBA(dst *RGBA, dr, sr Rectangle) (effectiveDr, effectiveSr Rectangle)
    	//
    	// in the spirit of the built-in copy function for 1-dimensional slices,
    	// that also allowed a CopyFromRGBA method if needed.
    
    	x0 := (r.Min.X - dst.Rect.Min.X) * 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  8. src/bufio/bufio_test.go

    func (sr *scriptedReader) Read(p []byte) (n int, err error) {
    	if len(*sr) == 0 {
    		panic("too many Read calls on scripted Reader. No steps remain.")
    	}
    	step := (*sr)[0]
    	*sr = (*sr)[1:]
    	return step(p)
    }
    
    func newScriptedReader(steps ...func(p []byte) (n int, err error)) io.Reader {
    	sr := scriptedReader(steps)
    	return &sr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    		}
    		flush()
    		fmt.Fprintf(&buf, "]")
    		return buf.String()
    
    	case RegShift:
    		return fmt.Sprintf("R%d%s$%d", int(a.Reg), plan9Shift[a.Shift], int(a.Count))
    
    	case RegShiftReg:
    		return fmt.Sprintf("R%d%sR%d", int(a.Reg), plan9Shift[a.Shift], int(a.RegCount))
    	}
    	return strings.ToUpper(arg.String())
    }
    
    // convert memory operand from GNU syntax to Plan 9 syntax, for example,
    // [r5] -> (R5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestScraper.java

                            }
    
                            // If no current test can be associated to the output, the last known descriptor is used.
                            // See https://bugs.swift.org/browse/SR-1127 for more information.
                        } else if (lastDescriptor != null) {
                            processor.output(lastDescriptor.getId(), new DefaultTestOutputEvent(destination, text));
                        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top