Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,382 for BHelper (0.16 sec)

  1. src/mdo/writer-stax.vm

      #foreach ( $field in $allFields )
        #if ( ! $Helper.xmlFieldMetadata( $field ).attribute && ! $Helper.xmlFieldMetadata( $field ).transient
                     && ! $Helper.xmlFieldMetadata( $field ).format )
          #set ( $fieldTagName = $Helper.xmlFieldMetadata( $field ).tagName )
          #if ( ! $fieldTagName )
            #set ( $fieldTagName = $field.name )
          #end
          #set ( $fieldCapName = $Helper.capitalise( $field.name ) )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  2. tests/fuzz/README.md

    git clone --depth=1 https://github.com/google/oss-fuzz.git
    cd oss-fuzz
    python infra/helper.py build_image istio
    python infra/helper.py build_fuzzers istio ~/go/src/istio.io/istio
    ```
    
    Reproduce failure:
    
    ```bash
    python infra/helper.py reproduce istio FuzzX ~/Downloads/clusterfuzz-testcase-minimized-FuzzX-1234
    ```
    
    Run:
    
    ```bash
    python infra/helper.py run_fuzzer istio FuzzValidateMeshConfig
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 16:45:44 UTC 2022
    - 994 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_race_issue26995.txt

    package testing_test
    
    import "testing"
    
    type TestingT interface {
    	Helper()
    	Log(args ...interface{})
    }
    
    func directCall(t *testing.T) {
    	t.Helper()
    	t.Log("directCall")
    }
    
    func interfaceTBCall(t testing.TB) {
    	t.Helper()
    	t.Log("interfaceTBCall")
    }
    
    func interfaceCall(t TestingT) {
    	t.Helper()
    	t.Log("interfaceCall")
    }
    
    func TestTesting(t *testing.T) {
    	directCall(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 17:19:18 UTC 2024
    - 662 bytes
    - Viewed (0)
  4. src/mdo/model-version.vm

                $pfx ${var}.get${Helper.capitalise($field.name)}().stream().anyMatch(this::is_${v}) // ${class.name} : ${field.name}
                    #else
                $pfx !${var}.get${Helper.capitalise($field.name)}().isEmpty() // ${class.name} : ${field.name}
                    #end
                #elseif ( $field.isOneMultiplicity() )
                $pfx is_${v}(${var}.get${Helper.capitalise($field.name)}()) // ${class.name} : ${field.name}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. pkg/kubelet/container/testing/mock_runtime_cache.go

    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "ForceUpdateIfOlder", arg0, arg1)
    	ret0, _ := ret[0].(error)
    	return ret0
    }
    
    // ForceUpdateIfOlder indicates an expected call of ForceUpdateIfOlder.
    func (mr *MockRuntimeCacheMockRecorder) ForceUpdateIfOlder(arg0, arg1 any) *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
    - 4K bytes
    - Viewed (0)
  6. src/mdo/reader-stax.vm

      #foreach ( $field in $allFields )
        #if ( ! $Helper.xmlFieldMetadata( $field ).attribute && ! $Helper.xmlFieldMetadata( $field ).transient && ! $Helper.xmlFieldMetadata( $field ).format )
          #set ( $fieldTagName = $Helper.xmlFieldMetadata( $field ).tagName )
          #if ( ! $fieldTagName )
            #set ( $fieldTagName = $field.name )
          #end
          #if ( $Helper.isFlatItems( $field ) )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/config/builder.go

    }
    
    func (b *Builder) checkMissing(s Source) {
    	b.t.Helper()
    	tpl := s.TemplateOrFail(b.t)
    	missing := tpl.MissingParams(s.Params())
    	if missing.Len() > 0 {
    		b.t.Fatalf("config template requires missing params: %v", sets.SortedList(missing))
    	}
    }
    
    func (b *Builder) getNamespace(s Source) namespace.Instance {
    	b.t.Helper()
    	ns := s.Params().GetWellKnown(param.Namespace)
    	if ns == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/lockedfile/internal/filelock/filelock_test.go

    )
    
    func lock(t *testing.T, f *os.File) {
    	t.Helper()
    	err := filelock.Lock(f)
    	t.Logf("Lock(fd %d) = %v", f.Fd(), err)
    	if err != nil {
    		t.Fail()
    	}
    }
    
    func rLock(t *testing.T, f *os.File) {
    	t.Helper()
    	err := filelock.RLock(f)
    	t.Logf("RLock(fd %d) = %v", f.Fd(), err)
    	if err != nil {
    		t.Fail()
    	}
    }
    
    func unlock(t *testing.T, f *os.File) {
    	t.Helper()
    	err := filelock.Unlock(f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 22:37:50 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. pkg/test/framework/testcontext.go

    	c.Helper()
    	return c.T.Name()
    }
    
    func (c *testContext) Skip(args ...any) {
    	c.Helper()
    	c.T.Skip(args...)
    }
    
    func (c *testContext) SkipNow() {
    	c.Helper()
    	c.T.SkipNow()
    }
    
    func (c *testContext) Skipf(format string, args ...any) {
    	c.Helper()
    	c.T.Skipf(format, args...)
    }
    
    func (c *testContext) Skipped() bool {
    	c.Helper()
    	return c.T.Skipped()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/scorer_test.go

    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/helper"
    )
    
    const (
    	classHDD = "hdd"
    	classSSD = "ssd"
    )
    
    func TestScore(t *testing.T) {
    	defaultShape := make(helper.FunctionShape, 0, len(defaultShapePoint))
    	for _, point := range defaultShapePoint {
    		defaultShape = append(defaultShape, helper.FunctionShapePoint{
    			Utilization: int64(point.Utilization),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 13 11:08:45 UTC 2021
    - 5.8K bytes
    - Viewed (0)
Back to top