Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 1000000000 (0.17 sec)

  1. maven-embedder/src/test/java/org/apache/maven/cli/transfer/FileSizeFormatTest.java

            assertEquals("1.0 GB", format.format(_999_megabytes, ScaleUnit.GIGABYTE));
    
            long _1000_megabytes = 1000L * 1000L * 1000L;
            assertEquals("1.0 GB", format.format(_1000_megabytes));
            assertEquals("1000000000 B", format.format(_1000_megabytes, ScaleUnit.BYTE));
            assertEquals("1000000 kB", format.format(_1000_megabytes, ScaleUnit.KILOBYTE));
            assertEquals("1000 MB", format.format(_1000_megabytes, ScaleUnit.MEGABYTE));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    					Name:              "pc2",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(-3e11)},
    				},
    				Value:         1000000000,
    				GlobalDefault: true,
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"pc2", int64(1000000000), bool(true), "5m"}}},
    		},
    	}
    
    	for i, test := range tests {
    		rows, err := printPriorityClass(&test.pc, printers.GenerateOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    			g.Expect(httpProtocolOptions.CommonHttpProtocolOptions.IdleTimeout).To(Not(BeNil()))
    			g.Expect(httpProtocolOptions.CommonHttpProtocolOptions.IdleTimeout).To(Equal(durationpb.New(time.Duration(15000000000))))
    		})
    	}
    }
    
    // clusterTest defines a structure containing all information needed to build a cluster for tests
    type clusterTest struct {
    	// Required
    	t                 testing.TB
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	// difference in the resulting rounding. Therefore, we
    	// preserve it, and OR (not ADD) it back in. The case
    	// that matters is when the eleven discarded bits are
    	// equal to 10000000001; that rounds up, and the 1 cannot
    	// be lost else it would round down if the LSB of the
    	// candidate mantissa is 0.
    	cmp := s.newValue2(cvttab.leq, types.Types[types.TBOOL], s.zeroVal(ft), x)
    	b := s.endBlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top