Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for 0010 (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    								Type: "string",
    							},
    						},
    					},
    				},
    				ValidationExtensions: schema.ValidationExtensions{
    					XValidations: apiextensions.ValidationRules{
    						{
    							Rule:    "size(self[0][0]) == 10",
    							Message: "size of items under items of scoped field should be equal to 10",
    						},
    					},
    				},
    			},
    			expectedResults: []validationMatcher{
    				noError(),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. cmd/object-api-multipart_test.go

    		{bucketNames[0], "", "", 0, 0, ListPartsInfo{}, ObjectNameInvalid{Bucket: bucketNames[0]}, false},
    		// Asserting for Invalid UploadID (Test number 9).
    		{bucketNames[0], objectNames[0], "abc", 0, 0, ListPartsInfo{}, InvalidUploadID{UploadID: "abc"}, false},
    		// Test case for uploadID with multiple parts (Test number 12).
    		{bucketNames[0], objectNames[0], uploadIDs[0], 0, 10, partInfos[0], nil, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  3. src/time/format.go

    				return layout[0:i], stdNumShortTZ, layout[i+3:]
    			}
    
    		case 'Z': // Z070000, Z07:00:00, Z0700, Z07:00,
    			if len(layout) >= i+7 && layout[i:i+7] == "Z070000" {
    				return layout[0:i], stdISO8601SecondsTZ, layout[i+7:]
    			}
    			if len(layout) >= i+9 && layout[i:i+9] == "Z07:00:00" {
    				return layout[0:i], stdISO8601ColonSecondsTZ, layout[i+9:]
    			}
    			if len(layout) >= i+5 && layout[i:i+5] == "Z0700" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K 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 (0)
  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