Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for 0008 (0.04 sec)

  1. src/cmd/compile/internal/test/testdata/zero_test.go

    	a := Z3{[8]byte{255, 255, 255, 255, 255, 255, 255, 255}, [3]byte{255, 255, 255}, [8]byte{255, 255, 255, 255, 255, 255, 255, 255}}
    	zero3_ssa(&a.mid)
    	want := Z3{[8]byte{255, 255, 255, 255, 255, 255, 255, 255}, [3]byte{0, 0, 0}, [8]byte{255, 255, 255, 255, 255, 255, 255, 255}}
    	if a != want {
    		t.Errorf("zero3 got=%v, want %v\n", a, want)
    	}
    }
    
    type Z4 struct {
    	pre  [8]byte
    	mid  [4]byte
    	post [8]byte
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 49.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composit_functions_debugging.mlir

        %0 = "quantfork.stats"(%arg0) {layerStats = dense<[0.000000e+00, 0.1]> : tensor<2xf32>} : (tensor<2x2xf32>) -> tensor<2x2xf32>
        %1 = "tf.PartitionedCall"(%0, %cst) {_tfl_quant_trait = "fully_quantizable", config = "", config_proto = "", executor_type = "", f = @composite_matmul_fn_2} : (tensor<2x2xf32>, tensor<2x2xf32>) -> tensor<2x2xf32>
        %2 = "quantfork.stats"(%1) {layerStats = dense<[0.000000e+00, 0.2]> : tensor<2xf32>} : (tensor<2x2xf32>) -> tensor<2x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 80.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    	r0, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procgetgroups)), 2, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0, 0, 0, 0)
    	n = int(r0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    				{
    					Hostname:       "foo.com",
    					Resolution:     model.Passthrough,
    					DefaultAddress: "0.0.0.0",
    				},
    			},
    			wantServices: []*model.Service{
    				{
    					Hostname:       "foo.com",
    					Resolution:     model.Passthrough,
    					DefaultAddress: "0.0.0.0",
    				},
    			},
    		},
    		{
    			name: "no allocation if address exists",
    			inServices: []*model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. docs/ru/docs/deployment/docker.md

    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    COPY ./app /code/app
    
    CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
    
    # Если используете прокси-сервер, такой как Nginx или Traefik, добавьте --proxy-headers
    # CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80", "--proxy-headers"]
    ```
    
    </details>
    
    ## Что такое "контейнер"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				SyncFrequency:      metav1.Duration{Duration: 1 * time.Minute},
    				FileCheckFrequency: metav1.Duration{Duration: 20 * time.Second},
    				HTTPCheckFrequency: metav1.Duration{Duration: 20 * time.Second},
    				Address:            "0.0.0.0",
    				Port:               ports.KubeletPort,
    				Authentication: v1beta1.KubeletAuthentication{
    					Anonymous: v1beta1.KubeletAnonymousAuthentication{Enabled: utilpointer.Bool(false)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_windows.go

    func GetCurrentProcess() (pseudoHandle Handle, err error) {
    	r0, _, e1 := Syscall(procGetCurrentProcess.Addr(), 0, 0, 0, 0)
    	pseudoHandle = Handle(r0)
    	if pseudoHandle == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func getCurrentProcessId() (pid uint32) {
    	r0, _, _ := Syscall(procGetCurrentProcessId.Addr(), 0, 0, 0, 0)
    	pid = uint32(r0)
    	return
    }
    
    func GetEnvironmentStrings() (envs *uint16, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (1)
  8. pilot/pkg/networking/core/listener.go

    						service: service,
    					}
    
    					// Support statefulsets/headless services with TCP ports, and empty service address field.
    					// Instead of generating a single 0.0.0.0:Port listener, generate a listener
    					// for each instance. HTTP services can happily reside on 0.0.0.0:PORT and use the
    					// wildcard route match to get to the appropriate IP through original dst clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      // Use other output
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  10. src/net/netip/netip_test.go

    		{mustIP("::1"), mustIP("::2"), true},
    		{mustIP("::1"), mustIP("::1%foo"), true},
    		{mustIP("::1%foo"), mustIP("::2"), true},
    		{mustIP("::2"), mustIP("::3"), true},
    
    		{mustIP("::"), mustIP("0.0.0.0"), false},
    		{mustIP("0.0.0.0"), mustIP("::"), true},
    
    		{mustIP("::1%a"), mustIP("::1%b"), true},
    		{mustIP("::1%a"), mustIP("::1%a"), false},
    		{mustIP("::1%b"), mustIP("::1%a"), false},
    	}
    	for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top