Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 101 for resc (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    			t.Logf("At %s, Sending request: %q", time.Now().Format(timeFmt), firstRequestTimesOutPath)
    			resp, err := requestGetter(firstRequestTimesOutPath)
    			t.Logf("At %s, RoundTrip of request: %q has completed", time.Now().Format(timeFmt), firstRequestTimesOutPath)
    			firstReqResultCh <- result{err: err, response: resp}
    		}()
    		go func() {
    			// we must wait for the "first" request to start executing before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. pkg/apis/storage/validation/validation_test.go

    func TestCSIServiceAccountToken(t *testing.T) {
    	driverName := "test-driver"
    	gcp := "gcp"
    	aws := "aws"
    	notRequiresRepublish := false
    	tests := []struct {
    		desc      string
    		csiDriver *storage.CSIDriver
    		wantErr   bool
    	}{{
    		desc: "invalid - TokenRequests has tokens with the same audience",
    		csiDriver: &storage.CSIDriver{
    			ObjectMeta: metav1.ObjectMeta{Name: driverName},
    			Spec: storage.CSIDriverSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      Option<QuantMethod> quantization_method_{
          *this, "quantization-method",
          llvm::cl::init(tensorflow::quantization::QuantizationMethod::
                             METHOD_STATIC_RANGE_INT8),
          llvm::cl::desc("Choose quantization method."),
          llvm::cl::values(
              clEnumValN(tensorflow::quantization::QuantizationMethod::
                             METHOD_STATIC_RANGE_INT8,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. pkg/kubelet/status/status_manager_test.go

    	// newer one, so we set the old timestamp to one second in the past.
    	// See: https://github.com/golang/go/issues/8687
    	old := metav1.NewTime(time.Now().Add(-time.Second))
    	for desc, test := range map[string]struct {
    		condition    *v1.PodCondition
    		oldCondition *v1.PodCondition
    		expectUpdate bool
    	}{
    		"should do nothing if no corresponding condition": {
    			expectUpdate: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	SIGWINCH    = syscall.Signal(0x1c)
    	SIGXCPU     = syscall.Signal(0x18)
    	SIGXFSZ     = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "not owner"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "I/O error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	SIGXCPU    = syscall.Signal(0x1e)
    	SIGXFSZ    = syscall.Signal(0x1f)
    	SIGXRES    = syscall.Signal(0x26)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "not owner"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "I/O error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	creater, isCreater := storage.(rest.Creater)
    	namedCreater, isNamedCreater := storage.(rest.NamedCreater)
    	lister, isLister := storage.(rest.Lister)
    	getter, isGetter := storage.(rest.Getter)
    	getterWithOptions, isGetterWithOptions := storage.(rest.GetterWithOptions)
    	gracefulDeleter, isGracefulDeleter := storage.(rest.GracefulDeleter)
    	collectionDeleter, isCollectionDeleter := storage.(rest.CollectionDeleter)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    	}
    	wg.Wait()
    }
    
    func addgonote(ctxt *Link, sectionName string, tag uint32, desc []byte) {
    	ldr := ctxt.loader
    	s := ldr.CreateSymForUpdate(sectionName, 0)
    	s.SetType(sym.SELFROSECT)
    	// namesz
    	s.AddUint32(ctxt.Arch, uint32(len(ELF_NOTE_GO_NAME)))
    	// descsz
    	s.AddUint32(ctxt.Arch, uint32(len(desc)))
    	// tag
    	s.AddUint32(ctxt.Arch, tag)
    	// name + padding
    	s.AddBytes(ELF_NOTE_GO_NAME)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/html/template/escape_test.go

    		b := new(strings.Builder)
    		if err := tmpl.Execute(b, data); err != nil {
    			t.Errorf("%s: template execution failed: %s", test.desc, err)
    			continue
    		}
    		if w, g := test.output, b.String(); w != g {
    			t.Errorf("%s: escaped output: want\n\t%q\ngot\n\t%q", test.desc, w, g)
    			continue
    		}
    	}
    }
    
    func TestEscapeSet(t *testing.T) {
    	type dataItem struct {
    		Children []*dataItem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	SIGWINCH  = syscall.Signal(0x1c)
    	SIGXCPU   = syscall.Signal(0x18)
    	SIGXFSZ   = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
Back to top