Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 141 for 404s (0.06 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

      }) {dimensions = dense<2> : tensor<1xi64>} : (tensor<4x32x256xf32>, tensor<4x32x256xi32>, tensor<f32>, tensor<i32>) -> (tensor<4x32xf32>, tensor<4x32xi32>)
      func.return %4#0, %4#1 : tensor<4x32xf32>, tensor<4x32xi32>
    }
    
    // CHECK-LABEL: func @convert_argmax_constant(
    // CHECK-SAME:                                        %[[VAL_0:.*]]: tensor<2x2x4xf32>) -> (tensor<2x2xf32>, tensor<2x2xi32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway.go

    		log.Warnf("constructed http route config for route %s on port %d with no vhosts; Setting up a default 404 vhost", routeName, port)
    		virtualHosts = []*route.VirtualHost{{
    			Name:    util.DomainName("blackhole", port),
    			Domains: []string{"*"},
    			// Empty route list will cause Envoy to 404 NR any requests
    			Routes: []*route.Route{},
    		}}
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/bigger-applications.md

    ```
    
    !!! tip "Tipp"
        Diese letzte Pfadoperation wird eine Kombination von Tags haben: `["items", "custom"]`.
    
        Und sie wird auch beide Responses in der Dokumentation haben, eine für `404` und eine für `403`.
    
    ## Das Haupt-`FastAPI`.
    
    Sehen wir uns nun das Modul unter `app/main.py` an.
    
    Hier importieren und verwenden Sie die Klasse `FastAPI`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. pkg/controller/deployment/deployment_controller.go

    	// With the current rate-limiter in use (5ms*2^(maxRetries-1)) the following numbers represent the times
    	// a deployment is going to be requeued:
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms, 160ms, 320ms, 640ms, 1.3s, 2.6s, 5.1s, 10.2s, 20.4s, 41s, 82s
    	maxRetries = 15
    )
    
    // controllerKind contains the schema.GroupVersionKind for this controller type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. pkg/kubelet/server/server_test.go

    		if err != nil {
    			t.Errorf("Got error POSTing: %v", err)
    		}
    		assert.Equal(t, resp.StatusCode, 200)
    	})
    
    	// Now test for 404 if checkpointing support is explicitly disabled.
    	fw.testHTTPServer.Close()
    	fw = setupTest(false)
    	defer fw.testHTTPServer.Close()
    	setPodByNameFunc(fw, podNamespace, podName, expectedContainerName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. test/fixedbugs/issue30116.out

                                   slice[4:0:0] runtime error: slice bounds out of range [4:0:]
                                   slice[4:0:3] runtime error: slice bounds out of range [4:0:]
                                   slice[4:0:4] runtime error: slice bounds out of range [::4] with capacity 3
                          slice[4:0:9876543210] runtime error: slice bounds out of range [::9876543210] with capacity 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:33:38 UTC 2019
    - 53.8K bytes
    - Viewed (0)
  7. cmd/object-api-listobjects_test.go

    		},
    		// ListObjectsResult-39 list with prefix match 1 level deep
    		39: {
    			IsTruncated: false,
    			Objects: []ObjectInfo{
    				{Name: "201910/foo/bar/xl.meta/1.txt"},
    			},
    		},
    		// ListObjectsResult-40
    		40: {
    			IsTruncated: false,
    			Objects: []ObjectInfo{
    				{Name: "aaa"},
    				{Name: "ccc"},
    			},
    			Prefixes: []string{"bbb_"},
    		},
    	}
    
    	testCases := []struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  8. src/net/http/clientserver_test.go

    			if ae := r.Header.Get("Accept-Encoding"); ae != "" {
    				t.Errorf("%s Accept-Encoding = %q; want empty", r.Proto, ae)
    			}
    		},
    	}.run(t)
    }
    
    // Test304Responses verifies that 304s don't declare that they're
    // chunking in their response headers and aren't allowed to produce
    // output.
    func Test304Responses(t *testing.T) { run(t, test304Responses) }
    func test304Responses(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_KSEM_WAIT                = 402 // { int ksem_wait(semid_t id); }
    	SYS_KSEM_TRYWAIT             = 403 // { int ksem_trywait(semid_t id); }
    	SYS_KSEM_INIT                = 404 // { int ksem_init(semid_t *idp, unsigned int value); }
    	SYS_KSEM_OPEN                = 405 // { int ksem_open(semid_t *idp, const char *name, int oflag, mode_t mode, unsigned int value); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_KSEM_WAIT                = 402 // { int ksem_wait(semid_t id); }
    	SYS_KSEM_TRYWAIT             = 403 // { int ksem_trywait(semid_t id); }
    	SYS_KSEM_INIT                = 404 // { int ksem_init(semid_t *idp, unsigned int value); }
    	SYS_KSEM_OPEN                = 405 // { int ksem_open(semid_t *idp, const char *name, int oflag, mode_t mode, unsigned int value); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top