Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,382 for BHelper (0.12 sec)

  1. test/typeparam/absdiffimp.dir/a.go

    // // orderedAbs is a helper type that defines an Abs method for
    // // ordered numeric types.
    // type orderedAbs[T orderedNumeric] T
    //
    // func (a orderedAbs[T]) Abs() orderedAbs[T] {
    // 	if a < 0 {
    // 		return -a
    // 	}
    // 	return a
    // }
    //
    // // complexAbs is a helper type that defines an Abs method for
    // // complex types.
    // type complexAbs[T Complex] T
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 00:11:24 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/doc.go

    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 runtime includes helper functions for working with API objects
    // that follow the kubernetes API object conventions, which are:
    //
    // 0. Your API objects have a common metadata struct member, TypeMeta.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 17 18:08:55 UTC 2018
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/selector.go

    func (r *Selector) Visit(fn VisitorFunc) error {
    	helper := NewHelper(r.Client, r.Mapping)
    	initialOpts := metav1.ListOptions{
    		LabelSelector: r.LabelSelector,
    		FieldSelector: r.FieldSelector,
    		Limit:         r.LimitChunks,
    	}
    	return FollowContinue(&initialOpts, func(options metav1.ListOptions) (runtime.Object, error) {
    		list, err := helper.List(
    			r.Namespace,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 15:08:01 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/UserAgentHelperTest.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.helper;
    
    import org.codelibs.fess.helper.UserAgentHelper.UserAgentType;
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class UserAgentHelperTest extends UnitFessTestCase {
    
        public UserAgentHelper userAgentHelper;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_canonicalization_helper.h

      LogicalResult matchAndRewrite(Op op,
                                    PatternRewriter &rewriter) const override {
        bool found = !!op->removeAttr("output_shapes");
        return success(found);
      }
    };
    
    // Helper function to create TF op while copying all underscore attributes from
    // another TF op.
    // TODO(jpienaar): This is a workaround until behavior is established.
    template <typename OpTy, typename... Args>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 12 21:57:12 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/fuzz_test.go

    import (
    	"testing"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/security/trustdomain"
    	"istio.io/istio/pkg/fuzz"
    )
    
    func FuzzBuildHTTP(f *testing.F) {
    	fuzz.Fuzz(f, func(fg fuzz.Helper) {
    		bundle := fuzz.Struct[trustdomain.Bundle](fg)
    		push := fuzz.Struct[*model.PushContext](fg, validatePush)
    		node := fuzz.Struct[*model.Proxy](fg)
    		selectionOpts := model.PolicyMatcherForProxy(node)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/net/http/transport_dial_test.go

    	connID int        // distinguished Dials in logs
    	ready  chan error // sent on to complete the Dial
    
    	net.Conn
    }
    
    func newTransportDialTester(t *testing.T, mode testMode) *transportDialTester {
    	t.Helper()
    	dt := &transportDialTester{
    		t:     t,
    		dials: make(chan *transportDialTesterConn),
    	}
    	dt.cst = newClientServerTest(t, mode, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	if originalNode != nil {
    		_, wasUntolerated = v1helper.FindMatchingUntoleratedTaint(originalNode.Spec.Taints, pod.Spec.Tolerations, helper.DoNotScheduleTaintsFilterFunc())
    	}
    
    	_, isUntolerated := v1helper.FindMatchingUntoleratedTaint(modifiedNode.Spec.Taints, pod.Spec.Tolerations, helper.DoNotScheduleTaintsFilterFunc())
    
    	if wasUntolerated && !isUntolerated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/common.go

    	v1helper "k8s.io/component-helpers/scheduling/corev1"
    	"k8s.io/component-helpers/scheduling/corev1/nodeaffinity"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/helper"
    	"k8s.io/utils/ptr"
    )
    
    type topologyPair struct {
    	key   string
    	value string
    }
    
    // topologySpreadConstraint is an internal version for v1.TopologySpreadConstraint
    // and where the selector is parsed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. tests/integration/telemetry/util.go

    // metric.
    func PromDiff(t test.Failer, prom prometheus.Instance, cluster cluster.Cluster, query prometheus.Query) {
    	t.Helper()
    	unlabelled := prometheus.Query{Metric: query.Metric}
    	v, _ := prom.Query(cluster, unlabelled)
    	if v == nil {
    		t.Logf("no metrics found for %v", unlabelled)
    		return
    	}
    	switch v.Type() {
    	case model.ValVector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top