Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 174 for 3$ (2.42 sec)

  1. src/runtime/malloc.go

    	//   OS               | FixedStack | NumStackOrders
    	//   -----------------+------------+---------------
    	//   linux/darwin/bsd | 2KB        | 4
    	//   windows/32       | 4KB        | 3
    	//   windows/64       | 8KB        | 2
    	//   plan9            | 4KB        | 3
    	_NumStackOrders = 4 - goarch.PtrSize/4*goos.IsWindows - 1*goos.IsPlan9
    
    	// heapAddrBits is the number of bits in a heap address. On
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/math/big/int_test.go

    			elt.Rand(r, &modx4)
    			elt.Sub(&elt, &mod) // test range [-mod, 3*mod)
    			if !testModSqrt(t, &elt, &mod, &sq, &sqrt) {
    				t.Errorf("#%d: failed (sqrt(e) = %s)", i, &sqrt)
    			}
    		}
    
    		if testing.Short() && i > 2 {
    			break
    		}
    	}
    
    	if testing.Short() {
    		return
    	}
    
    	// exhaustive test for small values
    	for n := 3; n < 100; n++ {
    		mod.SetInt64(int64(n))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		[]int32{8081}, map[string]string{"test-app": "test-app-2"}, t)
    	createServiceWait(controller, "svc3", "nsA",
    		map[string]string{}, map[string]string{},
    		[]int32{8082}, map[string]string{"test-app": "test-app-3"}, t)
    	createServiceWait(controller, "svc4", "nsA",
    		map[string]string{}, map[string]string{},
    		[]int32{8083}, map[string]string{"test-app": "test-app-4"}, t)
    
    	expectedSvcList := []*model.Service{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    // RunKubelet is responsible for setting up and running a kubelet.  It is used in three different applications:
    //
    //	1 Integration tests
    //	2 Kubelet binary
    //	3 Standalone 'kubernetes' binary
    //
    // Eventually, #2 will be replaced with instances of #3
    func RunKubelet(ctx context.Context, kubeServer *options.KubeletServer, kubeDeps *kubelet.Dependencies, runOnce bool) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. cmd/sts-handlers_test.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		return s.Message(), ErrPreStartHook
    	}
    	m.recordContainerEvent(pod, container, containerID, v1.EventTypeNormal, events.CreatedContainer, fmt.Sprintf("Created container %s", container.Name))
    
    	// Step 3: start the container.
    	err = m.runtimeService.StartContainer(ctx, containerID)
    	if err != nil {
    		s, _ := grpcstatus.FromError(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    		}
    	}
    
    	// Touch entry 2. LRU should evict 3 next.
    	cache.Get(keys[2])
    	cache.Put(keys[0], &cs[0])
    	if s, ok := cache.Get(keys[3]); ok || s != nil {
    		t.Fatalf("session cache should have evicted key 3")
    	}
    
    	// Update entry 0 in place.
    	cache.Put(keys[0], &cs[3])
    	if s, ok := cache.Get(keys[0]); !ok || s != &cs[3] {
    		t.Fatalf("session cache failed update for key 0")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	"dx": {"]=", 2, precAssign},
    	"eO": {"^=", 2, precAssign},
    	"eo": {"^", 2, precXor},
    	"eq": {"==", 2, precEqual},
    	"fl": {"...", 2, precPrimary},
    	"fr": {"...", 2, precPrimary},
    	"fL": {"...", 3, precPrimary},
    	"fR": {"...", 3, precPrimary},
    	"ge": {">=", 2, precRel},
    	"gs": {"::", 1, precUnary},
    	"gt": {">", 2, precRel},
    	"ix": {"[]", 2, precPostfix},
    	"lS": {"<<=", 2, precAssign},
    	"le": {"<=", 2, precRel},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  9. .bazelrc

    # We have some invalid linker scripts in the build,
    # so we need to disable this check
    build:release_linux_base --linkopt=-Wl,--undefined-version
    
    # Container environment settings below this point.
    # Use Python 3.X as installed in container image
    build:release_linux_base --action_env PYTHON_BIN_PATH="/usr/bin/python3"
    build:release_linux_base --action_env PYTHON_LIB_PATH="/usr/lib/tf_python"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/traffic-params.yaml.7.template.gen.yaml

            startupProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
              initialDelaySeconds: 0
              periodSeconds: 1
              timeoutSeconds: 3
              failureThreshold: {{ .Values.global.proxy.startupProbe.failureThreshold }}
          {{ end }}
            readinessProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top