Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for fl (0.03 sec)

  1. src/internal/reflectlite/export_test.go

    	}
    	field := &tt.Fields[i]
    	typ := field.Typ
    
    	// Inherit permission bits from v, but clear flagEmbedRO.
    	fl := v.flag&(flagStickyRO|flagIndir|flagAddr) | flag(typ.Kind())
    	// Using an unexported field forces flagRO.
    	if !field.Name.IsExported() {
    		if field.Embedded() {
    			fl |= flagEmbedRO
    		} else {
    			fl |= flagStickyRO
    		}
    	}
    	// Either flagIndir is set and v.ptr points at struct,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_logging.go

    		case *meshconfig.MeshConfig_ExtensionProvider_EnvoyFileAccessLogProvider_LogFormat_Text:
    			fl.AccessLogFormat, needsFormatter = buildFileAccessTextLogFormat(logFormat.Text)
    		case *meshconfig.MeshConfig_ExtensionProvider_EnvoyFileAccessLogProvider_LogFormat_Labels:
    			fl.AccessLogFormat, needsFormatter = buildFileAccessJSONLogFormat(logFormat)
    		}
    	} else {
    		fl.AccessLogFormat, needsFormatter = buildFileAccessTextLogFormat("")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/accesslog.go

    		return nil
    	}
    
    	fl := &cel.ExpressionFilter{
    		Expression: spec.Filter.Expression,
    	}
    
    	return &accesslog.AccessLogFilter{
    		FilterSpecifier: &accesslog.AccessLogFilter_ExtensionFilter{
    			ExtensionFilter: &accesslog.ExtensionFilter{
    				Name:       celFilter,
    				ConfigType: &accesslog.ExtensionFilter_TypedConfig{TypedConfig: protoconv.MessageToAny(fl)},
    			},
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/internal/reflectlite/value.go

    		}
    		// The returned value's address is v's value.
    		if ptr == nil {
    			return Value{}
    		}
    		tt := (*ptrType)(unsafe.Pointer(v.typ()))
    		typ := tt.Elem
    		fl := v.flag&flagRO | flagIndir | flagAddr
    		fl |= flag(typ.Kind())
    		return Value{typ, ptr, fl}
    	}
    	panic(&ValueError{"reflectlite.Value.Elem", v.kind()})
    }
    
    func valueInterface(v Value) any {
    	if v.flag == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. src/reflect/makefunc.go

    		panic("reflect: internal error: invalid use of makeMethodValue")
    	}
    
    	// Ignoring the flagMethod bit, v describes the receiver, not the method type.
    	fl := v.flag & (flagRO | flagAddr | flagIndir)
    	fl |= flag(v.typ().Kind())
    	rcvr := Value{v.typ(), v.ptr, fl}
    
    	// v.Type returns the actual type of the method value.
    	ftyp := (*funcType)(unsafe.Pointer(v.Type().(*rtype)))
    
    	code := methodValueCallCodePtr()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/reflect/value.go

    	}
    	if v.typ().Kind() == abi.Interface && v.IsNil() {
    		panic("reflect: Method on nil interface value")
    	}
    	fl := v.flag.ro() | (v.flag & flagIndir)
    	fl |= flag(Func)
    	fl |= flag(i)<<flagMethodShift | flagMethod
    	return Value{v.typ(), v.ptr, fl}
    }
    
    // NumMethod returns the number of methods in the value's method set.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_test_context.go

    	metav1.TypeMeta
    	metav1.ListMeta
    	Items []T
    }
    
    func (fl *FakeList[P]) DeepCopyObject() runtime.Object {
    	copiedItems := make([]P, len(fl.Items))
    	for i, item := range fl.Items {
    		copiedItems[i] = item.DeepCopyObject().(P)
    	}
    	return &FakeList[P]{
    		TypeMeta: fl.TypeMeta,
    		ListMeta: fl.ListMeta,
    		Items:    copiedItems,
    	}
    }
    
    type fakeAuthorizer struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/security.go

    		return err
    	}
    	// Currently the only flag on the allow list that causes problems
    	// for the linker is "-flto"; check for it manually here.
    	for _, fl := range list {
    		if strings.HasPrefix(fl, "-flto") {
    			return fmt.Errorf("flag %q triggers external linking", fl)
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/go/doc/example.go

    			// composite literal.
    			ast.Inspect(e.Value, inspectFunc)
    			return false
    		}
    		return true
    	}
    
    	inspectFieldList := func(fl *ast.FieldList) {
    		if fl != nil {
    			for _, f := range fl.List {
    				ast.Inspect(f.Type, inspectFunc)
    			}
    		}
    	}
    
    	// Find the decls immediately referenced by body.
    	ast.Inspect(body, inspectFunc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. src/debug/gosym/pclntab.go

    func (t *LineTable) findFileLine(entry uint64, filetab, linetab uint32, filenum, line int32, cutab []byte) uint64 {
    	if filetab == 0 || linetab == 0 {
    		return 0
    	}
    
    	fp := t.pctab[filetab:]
    	fl := t.pctab[linetab:]
    	fileVal := int32(-1)
    	filePC := entry
    	lineVal := int32(-1)
    	linePC := entry
    	fileStartPC := filePC
    	for t.step(&fp, &filePC, &fileVal, filePC == entry) {
    		fileIndex := fileVal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top