Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for 150000 (0.17 sec)

  1. internal/bucket/lifecycle/lifecycle_test.go

    		expected time.Time
    	}{
    		{
    			time.Date(2020, time.March, 15, 10, 10, 10, 0, time.UTC),
    			4,
    			time.Date(2020, time.March, 20, 0, 0, 0, 0, time.UTC),
    		},
    		{
    			time.Date(2020, time.March, 15, 0, 0, 0, 0, time.UTC),
    			1,
    			time.Date(2020, time.March, 17, 0, 0, 0, 0, time.UTC),
    		},
    	}
    
    	for i, tc := range testCases {
    		t.Run(fmt.Sprintf("Test %d", i+1), func(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. docs/bucket/notifications/README.md

    To update the configuration, use `mc admin config get notify_amqp` command to get the current configuration for `notify_amqp`.
    
    ```sh
    $ mc admin config get myminio/ notify_amqp
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/time/time_test.go

    		5: {Date(1991, September, 14, 17, 0, 0, 0, loc), Date(1991, September, 14, 8, 0, 0, 0, UTC)},
    		6: {Date(1991, September, 15, 0, 50, 0, 0, loc), Date(1991, September, 14, 15, 50, 0, 0, UTC)},
    		7: {Date(1991, September, 15, 2, 00, 0, 0, loc), Date(1991, September, 14, 18, 00, 0, 0, UTC)},
    	}
    
    	for i, tt := range tests {
    		if !tt.give.Equal(tt.want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "5000"}).
    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "6000", "memory": "10000"}).Obj(),
    			},
    			existingPods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/replica_calculator_test.go

    		podReadiness:     []v1.ConditionStatus{v1.ConditionFalse, v1.ConditionTrue, v1.ConditionFalse},
    		metric: &metricInfo{
    			name:          "qps",
    			levels:        []int64{50000},
    			targetUsage:   10000,
    			expectedUsage: 50000,
    			singleObject: &autoscalingv2.CrossVersionObjectReference{
    				Kind:       "Deployment",
    				APIVersion: "apps/v1",
    				Name:       "some-deployment",
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  6. istioctl/pkg/proxyconfig/testdata/config_dump.json

                          "endpoint": {
                            "address": {
                              "socket_address": {
                                "address": "127.0.0.1",
                                "port_value": 15000
                              }
                            }
                          }
                        }
                      ]
                    }
                  ]
                }
              },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  7. src/math/all_test.go

    func TestLargeCos(t *testing.T) {
    	large := float64(100000 * Pi)
    	for i := 0; i < len(vf); i++ {
    		f1 := cosLarge[i]
    		f2 := Cos(vf[i] + large)
    		if !close(f1, f2) {
    			t.Errorf("Cos(%g) = %g, want %g", vf[i]+large, f2, f1)
    		}
    	}
    }
    
    func TestLargeSin(t *testing.T) {
    	large := float64(100000 * Pi)
    	for i := 0; i < len(vf); i++ {
    		f1 := sinLarge[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    	}
    }
    
    // blockFrequentShort produces 100000 block events with an average duration of
    // rate / 10.
    func blockFrequentShort(rate int) {
    	for i := 0; i < 100000; i++ {
    		blockevent(int64(rate/10), 1)
    	}
    }
    
    // blockFrequentShort produces 10000 block events with an average duration of
    // rate.
    func blockInfrequentLong(rate int) {
    	for i := 0; i < 10000; i++ {
    		blockevent(int64(rate), 1)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. src/sync/atomic/atomic_test.go

    		for {
    			v := addr.Load()
    			if addr.CompareAndSwap(v, v+1) {
    				break
    			}
    		}
    	}
    }
    
    func TestHammer32(t *testing.T) {
    	const p = 4
    	n := 100000
    	if testing.Short() {
    		n = 1000
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(p))
    
    	for name, testf := range hammer32 {
    		c := make(chan int)
    		var val uint32
    		for i := 0; i < p; i++ {
    			go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm/asm5.go

    	{AORR, C_NCON, C_NONE, C_REG, 13, 8, 0, 0, 0, C_SBIT},
    	{ACMP, C_NCON, C_REG, C_NONE, 13, 8, 0, 0, 0, 0},
    	{AADD, C_SCON, C_REG, C_REG, 13, 8, 0, 0, 0, C_SBIT},
    	{AADD, C_SCON, C_NONE, C_REG, 13, 8, 0, 0, 0, C_SBIT},
    	{AAND, C_SCON, C_REG, C_REG, 13, 8, 0, 0, 0, C_SBIT},
    	{AAND, C_SCON, C_NONE, C_REG, 13, 8, 0, 0, 0, C_SBIT},
    	{AORR, C_SCON, C_REG, C_REG, 13, 8, 0, 0, 0, C_SBIT},
    	{AORR, C_SCON, C_NONE, C_REG, 13, 8, 0, 0, 0, C_SBIT},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top