Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 273 for 05 (0.02 sec)

  1. staging/src/k8s.io/api/go.mod

    	github.com/modern-go/reflect2 v1.0.2 // indirect
    	github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
    	github.com/spf13/pflag v1.0.5 // indirect
    	github.com/x448/float16 v0.8.4 // indirect
    	golang.org/x/net v0.25.0 // indirect
    	golang.org/x/text v0.15.0 // indirect
    	google.golang.org/protobuf v1.33.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/integrator_test.go

    	}
    	clk.Step(time.Millisecond)
    	igr.Add(-1)
    	clk.Step(time.Millisecond)
    	results = igr.GetResults()
    	if e := (IntegratorResults{Duration: 2 * time.Millisecond.Seconds(), Average: 1.5, Deviation: 0.5, Min: 1, Max: 3}); !e.Equal(&results) {
    		t.Errorf("expected %#+v, got %#+v", e, results)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 27 21:11:44 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/CountingOutputStreamTest.java

        byte[] data = new byte[10];
        counter.write(data);
        written += 10;
        assertEquals(written, out.size());
        assertEquals(written, counter.getCount());
    
        counter.write(data, 0, 5);
        written += 5;
        assertEquals(written, out.size());
        assertEquals(written, counter.getCount());
    
        counter.write(data, 2, 5);
        written += 5;
        assertEquals(written, out.size());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-configurations.dot

    digraph cppUnitTestConfigurations {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=3.5, height=0.5];
    
      subgraph central {
        node[style=filled, fillcolor=white]
        implementation -> testVariantExecutableImplementation [style=invis, weight=1000]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/io/fs/format.go

    // The outputs for a directory named subdir and a file named hello.go are:
    //
    //	d subdir/
    //	- hello.go
    func FormatDirEntry(dir DirEntry) string {
    	name := dir.Name()
    	b := make([]byte, 0, 5+len(name))
    
    	// The Type method does not return any permission bits,
    	// so strip them from the string.
    	mode := dir.Type().String()
    	mode = mode[:len(mode)-9]
    
    	b = append(b, mode...)
    	b = append(b, ' ')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/internal/trace/gc_test.go

    		want   float64
    		worst  []float64
    	}{
    		{0, 0, []float64{}},
    		{time.Millisecond, 0, []float64{0, 0}},
    		{time.Second, 0, []float64{0, 0}},
    		{2 * time.Second, 0.5, []float64{0.5, 0.5}},
    		{3 * time.Second, 1 / 3.0, []float64{1 / 3.0}},
    		{4 * time.Second, 0.5, []float64{0.5}},
    		{5 * time.Second, 3 / 5.0, []float64{3 / 5.0}},
    		{6 * time.Second, 3 / 5.0, []float64{3 / 5.0}},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. src/sort/example_search_test.go

    func ExampleSearchFloat64s() {
    	a := []float64{1.0, 2.0, 3.3, 4.6, 6.1, 7.2, 8.0}
    
    	x := 2.0
    	i := sort.SearchFloat64s(a, x)
    	fmt.Printf("found %g at index %d in %v\n", x, i, a)
    
    	x = 0.5
    	i = sort.SearchFloat64s(a, x)
    	fmt.Printf("%g not found, can be inserted at index %d in %v\n", x, i, a)
    	// Output:
    	// found 2 at index 1 in [1 2 3.3 4.6 6.1 7.2 8]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 18 08:25:24 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/go.mod

    	github.com/google/gofuzz v1.2.0
    	github.com/google/uuid v1.3.1
    	github.com/moby/spdystream v0.2.0
    	github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
    	github.com/onsi/ginkgo/v2 v2.19.0
    	github.com/spf13/pflag v1.0.5
    	github.com/stretchr/testify v1.8.4
    	golang.org/x/net v0.25.0
    	golang.org/x/time v0.3.0
    	gopkg.in/evanphx/json-patch.v4 v4.12.0
    	gopkg.in/inf.v0 v0.9.1
    	k8s.io/klog/v2 v2.120.1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. doc/next/7-ports.md

    <!-- go.dev/issue/60905, CL 559555 -->
    Go 1.23 introduces a new `GOARM64` environment variable, which specifies the minimum target version of the ARM64 architecture at compile time. Allowed values are `v8.{0-9}` and `v9.{0-5}`. This may be followed by an option specifying extensions implemented by target hardware. Valid options are `,lse` and `,crypto`.
    
    The `GOARM64` environment variable defaults to `v8.0`.
    
    ### RISC-V {#riscv}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/link/testdata/pe-llvm/main.go

    //     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
    //     RELOCATION RECORDS FOR [.rsrc$01]:
    //     OFFSET           TYPE                     VALUE
    //     0000000000000048 IMAGE_REL_AMD64_ADDR32NB $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)
Back to top