Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for rh (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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