Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for fl (0.02 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/test/java/jcifs/tests/FileLocationTest.java

                SmbResourceLocator fl = p.getLocator();
                assertNull(fl.getServer());
                assertNull(fl.getShare());
                assertEquals(SmbConstants.TYPE_WORKGROUP, fl.getType());
                assertEquals("\\", fl.getUNCPath());
                assertEquals("smb://", fl.getCanonicalURL());
                assertEquals("/", fl.getURLPath());
            }
        }
    
    
        @Test
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 08 13:16:07 UTC 2020
    - 23K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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/link/testdata/pe-llvm/main.go

    //
    //     SYMBOL TABLE:
    //     [ 0](sec -1)(fl 0x00)(ty   0)(scl   3) (nx 0) 0x00000011 @feat.00
    //     [ 1](sec  1)(fl 0x00)(ty   0)(scl   3) (nx 1) 0x00000000 .rsrc$01
    //     AUX scnlen 0x68 nreloc 1 nlnno 0 checksum 0x0 assoc 0 comdat 0
    //     [ 3](sec  2)(fl 0x00)(ty   0)(scl   3) (nx 1) 0x00000000 .rsrc$02
    //     AUX scnlen 0x18 nreloc 0 nlnno 0 checksum 0x0 assoc 0 comdat 0
    //     [ 5](sec  2)(fl 0x00)(ty   0)(scl   3) (nx 0) 0x00000000 $R000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  7. 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)
  8. src/runtime/fastlog2_test.go

    	var e float64
    
    	inc := 1
    	if testing.Short() {
    		// Check 1K total values, down from 64M.
    		inc = 1 << 16
    	}
    	for i := 1; i < 1<<randomBitCount; i += inc {
    		l, fl := math.Log2(float64(i)), runtime.Fastlog2(float64(i))
    		d := l - fl
    		e += d * d
    	}
    	e = math.Sqrt(e)
    
    	if e > 1.0 {
    		t.Fatalf("imprecision on fastlog2 implementation, want <=1.0, got %f", e)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 784 bytes
    - Viewed (0)
  9. src/internal/xcoff/file_test.go

    		fn := len(f.Sections)
    		if tn != fn {
    			t.Errorf("open %s: len(Sections) = %d, want %d", tt.file, fn, tn)
    		}
    		tl := tt.needed
    		fl, err := f.ImportedLibraries()
    		if err != nil {
    			t.Error(err)
    		}
    		if !reflect.DeepEqual(tl, fl) {
    			t.Errorf("open %s: loader import = %v, want %v", tt.file, tl, fl)
    		}
    	}
    }
    
    func TestOpenFailure(t *testing.T) {
    	filename := "file.go"    // not an XCOFF object file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 10 18:52:31 UTC 2018
    - 3K bytes
    - Viewed (0)
  10. 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)
Back to top