Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 106 for s_param (0.19 sec)

  1. pkg/config/validation/agent/validation.go

    			v.Warning = appendError(v.Warning, t.Warning)
    		default:
    			v.Err = appendError(v.Err, t)
    		}
    	}
    	return v
    }
    
    // AppendWarningf appends a formatted warning string
    // nolint: unparam
    func AppendWarningf(v Validation, format string, a ...any) Validation {
    	return AppendValidation(v, Warningf(format, a...))
    }
    
    // Warningf formats according to a format specifier and returns the string as a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. src/go/types/named.go

    		// (for example, in recursive type declarations).
    		assert(check != nil)
    	}
    
    	if orig.tparams.Len() != targs.Len() {
    		// Mismatching arg and tparam length may be checked elsewhere.
    		return Typ[Invalid]
    	}
    
    	// Ensure that an instance is recorded before substituting, so that we
    	// resolve n for any recursive references.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if fn(tpqa) {
    		tpqa.Param.Traverse(fn)
    		tpqa.Arg.Traverse(fn)
    	}
    }
    
    func (tpqa *TemplateParamQualifiedArg) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(tpqa) {
    		return nil
    	}
    	param := tpqa.Param.Copy(fn, skip)
    	arg := tpqa.Arg.Copy(fn, skip)
    	if param == nil && arg == nil {
    		return fn(tpqa)
    	}
    	if param == nil {
    		param = tpqa.Param
    	}
    	if arg == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    		}
    	}
    	return store
    }
    
    func buildPatchStruct(config string) *structpb.Struct {
    	val := &structpb.Struct{}
    	_ = protomarshal.UnmarshalString(config, val)
    	return val
    }
    
    // nolint: unparam
    func buildGolangPatchStruct(config string) *structpb.Struct {
    	val := &structpb.Struct{}
    	_ = protomarshal.Unmarshal([]byte(config), val)
    	return val
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/expand_calls.go

    			// It's common for a tail call passing the same arguments (e.g. method wrapper),
    			// so this would be a self copy. Detect this and optimize it out.
    			n := a.Aux.(*ir.Name)
    			if n.Class == ir.PPARAM && n.FrameOffset()+x.f.Config.ctxt.Arch.FixedFrameSize == aOffset {
    				continue
    			}
    		}
    		if x.debug > 1 {
    			x.Printf("...storeArg %s, %v, %d\n", a.LongString(), aType, aOffset)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  6. hack/tools/go.sum

    mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b/go.mod h1:2odslEg/xrtNQqCYg2/jCoyKnw3vv5biOc3JnIcYfL4=
    mvdan.cc/unparam v0.0.0-20240104100049-c549a3470d14 h1:zCr3iRRgdk5eIikZNDphGcM6KGVTx3Yu+/Uu9Es254w=
    mvdan.cc/unparam v0.0.0-20240104100049-c549a3470d14/go.mod h1:ZzZjEpJDOmx8TdVU6umamY3Xy0UAQUI2DHbf05USVbI=
    rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    	}
    	return nil
    }
    
    // appendErrorf appends a formatted error string
    // nolint: unparam
    func appendErrorf(v Validation, format string, a ...any) Validation {
    	return AppendValidation(v, fmt.Errorf(format, a...))
    }
    
    // AppendWarningf appends a formatted warning string
    // nolint: unparam
    func AppendWarningf(v Validation, format string, a ...any) Validation {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    func TestInstantiatedObjects(t *testing.T) {
    	const src = `
    package p
    
    type T[P any] struct {
    	field P
    }
    
    func (recv *T[Q]) concreteMethod(mParam Q) (mResult Q) { return }
    
    type FT[P any] func(ftParam P) (ftResult P)
    
    func F[P any](fParam P) (fResult P){ return }
    
    type I[P any] interface {
    	interfaceMethod(P)
    }
    
    type R[P any] T[P]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    		return nil
    	}
    	return &istio.Headers_HeaderOperations{
    		Add:    headerListToMap(filter.Add),
    		Remove: filter.Remove,
    		Set:    headerListToMap(filter.Set),
    	}
    }
    
    // nolint: unparam
    func createMethodMatch(match k8s.HTTPRouteMatch) (*istio.StringMatch, *ConfigError) {
    	if match.Method == nil {
    		return nil, nil
    	}
    	return &istio.StringMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			Ports:     svcPorts,
    			Selector:  selector,
    			Type:      corev1.ServiceTypeClusterIP,
    		},
    	}
    
    	clienttest.Wrap(t, controller.services).Create(service)
    }
    
    // nolint: unparam
    func createExternalNameService(controller *FakeController, name, namespace string,
    	ports []int32, externalName string, t *testing.T, xdsEvents *xdsfake.Updater,
    ) *corev1.Service {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top