Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for rh (0.05 sec)

  1. src/internal/unsafeheader/unsafeheader_test.go

    		}
    		if f.Offset != rf.Offset {
    			t.Errorf("%v.%s has offset %d, but %v.%s has offset %d", h, f.Name, f.Offset, rh, rf.Name, rf.Offset)
    		}
    	}
    
    	if h.NumField() != rh.NumField() {
    		t.Errorf("%v has %d fields, but %v has %d", h, h.NumField(), rh, rh.NumField())
    	}
    	if h.Align() != rh.Align() {
    		t.Errorf("%v has alignment %d, but %v has alignment %d", h, h.Align(), rh, rh.Align())
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  2. pkg/controller/history/controller_history.go

    			clone = updated
    		}
    		if updated, err := rh.lister.ControllerRevisions(clone.Namespace).Get(clone.Name); err == nil {
    			// make a copy so we don't mutate the shared cache
    			clone = updated.DeepCopy()
    		}
    		return updateErr
    	})
    	return clone, err
    }
    
    func (rh *realHistory) DeleteControllerRevision(revision *apps.ControllerRevision) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  3. pkg/monitoring/base.go

    }
    
    func (f baseMetric) Decrement() {
    	f.rest.Record(-1)
    }
    
    func (f baseMetric) runRecordHook(value float64) {
    	recordHookMutex.RLock()
    	if rh, ok := recordHooks[f.name]; ok {
    		lv := slices.Map(f.attrs, func(e attribute.KeyValue) LabelValue {
    			return LabelValue{e}
    		})
    		rh.OnRecord(f.name, lv, value)
    	}
    	recordHookMutex.RUnlock()
    }
    
    func (f baseMetric) Register() error {
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/net/dnsclient_unix_test.go

    	{"8.8.4.4:53", mustQuestion("com.", dnsmessage.TypeALL, dnsmessage.ClassINET), 4, dnsmessage.RCodeSuccess},
    }
    
    func TestDNSTransportFallback(t *testing.T) {
    	fake := fakeDNSServer{
    		rh: func(n, _ string, q dnsmessage.Message, _ time.Time) (dnsmessage.Message, error) {
    			r := dnsmessage.Message{
    				Header: dnsmessage.Header{
    					ID:       q.Header.ID,
    					Response: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/plugin/v1beta1/server.go

    	grpc       *grpc.Server
    	rhandler   RegistrationHandler
    	chandler   ClientHandler
    	clients    map[string]Client
    }
    
    // NewServer returns an initialized device plugin registration server.
    func NewServer(socketPath string, rh RegistrationHandler, ch ClientHandler) (Server, error) {
    	if socketPath == "" || !filepath.IsAbs(socketPath) {
    		return nil, fmt.Errorf(errBadSocket+" %s", socketPath)
    	}
    
    	dir, name := filepath.Split(socketPath)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	XXPERMDI X0, X0, $2, X0
    	XXPERMDI X1, X1, $2, X1
    	VOR    RL, RL, Y0
    
    	// VOR RH, RH, Y1   RH was saved above in D2X format
    	LXVD2X (R1)(R17), Y1
    	CALL   p256MulInternal<>(SB)
    
    	// SUB(R<T-S1)           // R  = T-S1
    	p256SubInternal(RH,RL,T1,T0,S1H,S1L)
    
    	STXVD2X RH, (R1)(R17) // Save RH
    
    	// if R == 0 or R^P == 0 then ret=ret else ret=0
    	// clobbers T1H and T1L
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. platforms/software/publish/src/integTest/groovy/org/gradle/api/tasks/UploadTaskIntegrationTest.groovy

                    def ud = uploadDescriptor
                    uploadDescriptor = true
    
                    def dd = descriptorDestination
                    descriptorDestination = file('descriptor.txt')
    
                    def rh = repositories
                    repositories {}
    
                    def c = configuration
                    configuration = configurations.getByName('compileClasspath')
    
                    def a = artifacts
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/abt/avlint32_test.go

    		s = " min >= t.key"
    		return
    	}
    
    	if keyMax <= t.key {
    		s = " max <= t.key"
    		return
    	}
    
    	l := t.left
    	r := t.right
    
    	lh := l.height()
    	rh := r.height()
    	mh := max(lh, rh)
    	th := t.height()
    	dh := lh - rh
    	if dh < 0 {
    		dh = -dh
    	}
    	if dh > 1 {
    		s = fmt.Sprintf(" dh > 1, t=%d", t.key)
    		return
    	}
    
    	if l == nil && r == nil {
    		if th != LEAF_HEIGHT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

      rpm2cpio "devtoolset-9-gcc-9.3.1-2.2.el7.src.rpm" |cpio -idmv
      tar -xvf "gcc-9.3.1-20200408.tar.xz" --strip 1
      ;;
    devtoolset-10)
      wget --retry-connrefused --waitretry=1 --read-timeout=20 --timeout=15 --tries=5 "https://vault.centos.org/centos/7/sclo/Source/rh/devtoolset-10-gcc-10.2.1-11.2.el7.src.rpm"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. pkg/monitoring/monitoring_test.go

    }
    
    func TestRecordHook(t *testing.T) {
    	mt := monitortest.New(t)
    
    	// testRecordHook will record value for hookSum measure when testSum is recorded
    	rh := &testRecordHook{}
    	monitoring.RegisterRecordHook(testSum.Name(), rh)
    
    	testSum.With(name.Value("foo"), kind.Value("bart")).Increment()
    	testSum.With(name.Value("baz"), kind.Value("bart")).Record(45)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top