Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for fl (0.12 sec)

  1. pilot/pkg/leaderelection/k8sleaderelection/healthzadaptor_test.go

    func (fl *fakeLock) Update(ctx context.Context, ler rl.LeaderElectionRecord) error {
    	return nil
    }
    
    // RecordEvent is a dummy to allow us to have a fakeLock for testing.
    func (fl *fakeLock) RecordEvent(string) {}
    
    // Identity is a dummy to allow us to have a fakeLock for testing.
    func (fl *fakeLock) Identity() string {
    	return fl.identity
    }
    
    // Key is a dummy to allow us to have a fakeLock for testing.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 12 18:41:53 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. .fleet/settings.json

    {
        "backend.maxHeapSizeMb": 2602,
    
        // https://youtrack.jetbrains.com/issue/FL-22276
        // Fleet cannot handle nested maven projects until FL-22276
        "ignored.project.globs": [
            "**/pom.xml"
        ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Oct 16 13:48:21 UTC 2023
    - 214 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/stmtlines_test.go

    		lrdr, err := dw.LineReader(e)
    		must(err)
    
    		var le dwarf.LineEntry
    
    		for {
    			err := lrdr.Next(&le)
    			if err == io.EOF {
    				break
    			}
    			must(err)
    			fl := Line{le.File.Name, le.Line}
    			lines[fl] = lines[fl] || le.IsStmt
    		}
    	}
    
    	nonStmtLines := []Line{}
    	for line, isstmt := range lines {
    		if !isstmt {
    			nonStmtLines = append(nonStmtLines, line)
    		}
    	}
    
    	var m int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 17:05:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/mkbuiltin.go

    	default:
    		log.Fatalf("unhandled type: %#v", t)
    		panic("unreachable")
    	}
    }
    
    func (i *typeInterner) fields(fl *ast.FieldList, keepNames bool) string {
    	if fl == nil || len(fl.List) == 0 {
    		return "nil"
    	}
    
    	var res []string
    	for _, f := range fl.List {
    		typ := i.subtype(f.Type)
    		if len(f.Names) == 0 {
    			res = append(res, typ)
    		} else {
    			for _, name := range f.Names {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/compile/internal/ssa/html.go

    	filename = ""
    	for _, fl := range all {
    		fmt.Fprint(&buf, "<div>&nbsp;</div>")
    		if filename != fl.Filename {
    			fmt.Fprintf(&buf, "<div><strong>%v</strong></div>", fl.Filename)
    			filename = fl.Filename
    		}
    		for i, line := range fl.Lines {
    			ln := int(fl.StartLineno) + i
    			var escaped string
    			if strings.TrimSpace(line) == "" {
    				escaped = "&nbsp;"
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
Back to top