Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,385 for bghelper (1.75 sec)

  1. 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)
  2. 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)
  3. 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)
  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. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
    
    // Implements the helper function for {ASSERT|EXPECT}_NE
    GTEST_IMPL_CMP_HELPER_(NE, !=);
    // Implements the helper function for {ASSERT|EXPECT}_LE
    GTEST_IMPL_CMP_HELPER_(LE, <=);
    // Implements the helper function for {ASSERT|EXPECT}_LT
    GTEST_IMPL_CMP_HELPER_(LT, <);
    // Implements the helper function for {ASSERT|EXPECT}_GE
    GTEST_IMPL_CMP_HELPER_(GE, >=);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/aggregator.go

    	kubeexternalinformers "k8s.io/client-go/informers"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/klog/v2"
    	v1 "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1"
    	v1helper "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1/helper"
    	"k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1"
    	aggregatorapiserver "k8s.io/kube-aggregator/pkg/apiserver"
    	aggregatorscheme "k8s.io/kube-aggregator/pkg/apiserver/scheme"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions.go

    	v1 "k8s.io/api/core/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	corelisters "k8s.io/client-go/listers/core/v1"
    	v1helper "k8s.io/kubernetes/pkg/apis/core/v1/helper"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 12.5K bytes
    - Viewed (1)
  8. 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)
  9. 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)
  10. 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)
Back to top