Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 106 for s_param (0.15 sec)

  1. cni/pkg/nodeagent/ztunnelserver.go

    // All this to say, that we want to make sure that message to ztunnel are sent from a single goroutine
    // so we don't mix messages and acks.
    // nolint: unparam
    func (z *ztunnelServer) handleConn(ctx context.Context, conn *ZtunnelConnection) error {
    	defer conn.Close()
    
    	context.AfterFunc(ctx, func() {
    		log.Debug("context cancelled - closing conn")
    		conn.Close()
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    // *unconditionally*.  Therefore these #includes cannot be moved
    // inside #if GTEST_HAS_PARAM_TEST.
    #include "gtest/internal/gtest-param-util.h"
    #include "gtest/internal/gtest-port.h"
    
    #if GTEST_HAS_PARAM_TEST
    
    namespace testing {
    
    // Forward declarations of ValuesIn(), which is implemented in
    // include/gtest/gtest-param-test.h.
    template <typename ForwardIterator>
    internal::ParamGenerator<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/ingress/status_test.go

    	client := kubelib.NewFakeClient(testObjects...)
    	sync := NewStatusSyncer(fakeMeshHolder(name), client)
    	client.RunAndWait(test.NewStop(t))
    	go sync.Run(test.NewStop(t))
    	return sync
    }
    
    // nolint: unparam
    func getIPs(ing clienttest.TestClient[*knetworking.Ingress], name string, ns string) func() []string {
    	return func() []string {
    		i := ing.Get(name, ns)
    		if i == nil {
    			return nil
    		}
    		res := []string{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/KotlinGrammar.kt

        }
    
        val annotationUseSiteTarget by debug {
            (symbol("field") + symbol("property") + symbol("get") + symbol("set") +
                symbol("receiver") + symbol("param") + symbol("setparam") + symbol("delgate")) * token(COLON)
        }
    
        val singleAnnotation by debug {
            annotationMarker * optional(annotationUseSiteTarget) * unescapedAnnotation
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/signature.go

    			// starts after f, not at "r"; see #52038.
    			scopePos := ftyp.Pos()
    			tparams := make([]*TypeParam, len(rparams))
    			for i, rparam := range rparams {
    				tparams[i] = check.declareTypeParam(rparam, scopePos)
    			}
    			sig.rparams = bindTParams(tparams)
    			// Blank identifiers don't get declared, so naive type-checking of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/python/tfr_gen_test.py

          CHECK-NEXT:   %[[raw_data:.*]] = tfr.quant_raw_data(%x) : (!tfr.tensor) -> (!tfr.tensor)
          CHECK-NEXT:   %[[qparam:.*]]:2 = tfr.quant_qparam(%x) : (!tfr.tensor) -> (!tfr.tensor, !tfr.tensor)
          CHECK:        %[[list:.*]] = "tfr.build_list"(%[[qparam]]#0, %[[qparam]]#0) : (!tfr.tensor, !tfr.tensor) -> !tfr.tensor_list
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 28.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/validtype.go

    			// Find the corresponding type argument for the type parameter
    			// and proceed with checking that type argument.
    			for i, tparam := range inst.TypeParams().list() {
    				// The type parameter and type argument lists should
    				// match in length but be careful in case of errors.
    				if t == tparam && i < inst.TypeArgs().Len() {
    					targ := inst.TypeArgs().At(i)
    					// The type argument must be valid in the enclosing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/go/types/validtype.go

    			// Find the corresponding type argument for the type parameter
    			// and proceed with checking that type argument.
    			for i, tparam := range inst.TypeParams().list() {
    				// The type parameter and type argument lists should
    				// match in length but be careful in case of errors.
    				if t == tparam && i < inst.TypeArgs().Len() {
    					targ := inst.TypeArgs().At(i)
    					// The type argument must be valid in the enclosing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/op.go

    // OffsetOfArg returns the SP offset of argument which (indexed 0, 1, etc).
    // If the call is to a method, the receiver is the first argument (i.e., index 0)
    func (a *AuxCall) OffsetOfArg(which int64) int64 {
    	n := int64(a.abiInfo.InParam(int(which)).Offset())
    	return n
    }
    
    // RegsOfResult returns the register(s) used for result which (indexed 0, 1, etc).
    func (a *AuxCall) RegsOfResult(which int64) []abi.RegIndex {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. pkg/webhooks/validation/server/server_test.go

    	}
    	wh, err := New(options)
    	if err != nil {
    		t.Fatalf("New() failed: %v", err)
    	}
    
    	return wh
    }
    
    func makePilotConfig(t *testing.T, i int, validConfig bool, includeBogusKey bool) []byte { // nolint: unparam
    	t.Helper()
    
    	var key string
    	if validConfig {
    		key = "key"
    	}
    
    	name := fmt.Sprintf("%s%d", "mock-config", i)
    
    	r := collections.Mock
    	var un unstructured.Unstructured
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top