Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,382 for BHelper (0.14 sec)

  1. pkg/kubelet/apis/podresources/testing/provider_mock.go

    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetAllocatableDevices")
    	ret0, _ := ret[0].([]*v10.ContainerDevices)
    	return ret0
    }
    
    // GetAllocatableDevices indicates an expected call of GetAllocatableDevices.
    func (mr *MockDevicesProviderMockRecorder) GetAllocatableDevices() *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. pkg/kubelet/pod/testing/mock_manager.go

    	return m.recorder
    }
    
    // AddPod mocks base method.
    func (m *MockManager) AddPod(pod *v1.Pod) {
    	m.ctrl.T.Helper()
    	m.ctrl.Call(m, "AddPod", pod)
    }
    
    // AddPod indicates an expected call of AddPod.
    func (mr *MockManagerMockRecorder) AddPod(pod any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AddPod", reflect.TypeOf((*MockManager)(nil).AddPod), pod)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. pkg/fuzz/util.go

    import (
    	"bytes"
    	"fmt"
    	"strings"
    	"testing"
    
    	fuzzheaders "github.com/AdaLogics/go-fuzz-headers"
    
    	"istio.io/istio/pkg/test"
    )
    
    const panicPrefix = "go-fuzz-skip: "
    
    // Helper is a helper struct for fuzzing
    type Helper struct {
    	cf *fuzzheaders.ConsumeFuzzer
    	t  test.Failer
    }
    
    type Validator interface {
    	// FuzzValidate returns true if the current struct is valid for fuzzing.
    	FuzzValidate() bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 30 15:31:14 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  4. pkg/test/loadbalancersim/loadbalancer/weight.go

    func (lb *weightedConnections) doRequest(c *WeightedConnection, onDone func()) {
    	lb.helper.Request(c.Request, onDone)
    }
    
    func (lb *weightedConnections) Name() string {
    	return lb.helper.Name()
    }
    
    func (lb *weightedConnections) TotalRequests() uint64 {
    	return lb.helper.TotalRequests()
    }
    
    func (lb *weightedConnections) ActiveRequests() uint64 {
    	return lb.helper.ActiveRequests()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. src/mdo/writer.vm

        #end
      #end
      #foreach ( $field in $allFields )
        #if ( ! $Helper.xmlFieldMetadata( $field ).attribute && ! $Helper.xmlFieldMetadata( $field ).transient )
          #set ( $fieldTagName = $Helper.xmlFieldMetadata( $field ).tagName )
          #if ( ! $fieldTagName )
            #set ( $fieldTagName = $field.name )
          #end
          #set ( $fieldCapName = $Helper.capitalise( $field.name ) )
          #set ( $def = ${field.defaultValue} )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. pkg/kubelet/container/testing/mockdirentry.go

    }
    
    // Info mocks base method.
    func (m *MockDirEntry) Info() (fs.FileInfo, error) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "Info")
    	ret0, _ := ret[0].(fs.FileInfo)
    	ret1, _ := ret[1].(error)
    	return ret0, ret1
    }
    
    // Info indicates an expected call of Info.
    func (mr *MockDirEntryMockRecorder) Info() *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.helper;
    
    import java.util.Map;
    
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.entity.FessUser;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.unit.UnitFessTestCase;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/env/crawler/resources/app.xml

    	<component name="labelTypeHelper" class="org.codelibs.fess.helper.LabelTypeHelper">
    	</component>
    	<component name="webFsIndexHelper" class="org.codelibs.fess.helper.WebFsIndexHelper">
    	</component>
    	<component name="dataIndexHelper" class="org.codelibs.fess.helper.DataIndexHelper">
    	</component>
    	<component name="duplicateHostHelper" class="org.codelibs.fess.helper.DuplicateHostHelper">
    	</component>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Apr 09 02:14:47 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. pkg/test/loadbalancersim/mesh/node.go

    }
    
    func (n *Node) TotalRequests() uint64 {
    	return n.helper.TotalRequests()
    }
    
    func (n *Node) ActiveRequests() uint64 {
    	return n.helper.ActiveRequests()
    }
    
    func (n *Node) Latency() *timeseries.Instance {
    	return n.helper.Latency()
    }
    
    func (n *Node) Request(onDone func()) {
    	n.helper.Request(func(wrappedOnDone func()) {
    		deadline := time.Now().Add(n.calcRequestDuration())
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio.go

    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/helper"
    )
    
    const maxUtilization = 100
    
    // buildRequestedToCapacityRatioScorerFunction allows users to apply bin packing
    // on core resources like CPU, Memory as well as extended resources like accelerators.
    func buildRequestedToCapacityRatioScorerFunction(scoringFunctionShape helper.FunctionShape, resources []config.ResourceSpec) func([]int64, []int64) int64 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.6K bytes
    - Viewed (0)
Back to top