Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 141 for 404s (0.03 sec)

  1. src/cmd/go/testdata/script/mod_proxy_list.txt

    env GO111MODULE=on
    env proxy=$GOPROXY
    
    # Proxy that can't serve should fail.
    env GOPROXY=$proxy/404
    ! go get rsc.io/quote@v1.0.0
    stderr '404 Not Found'
    
    # get should walk down the proxy list past 404 and 410 responses.
    env GOPROXY=$proxy/404,$proxy/410,$proxy
    go get rsc.io/quote@v1.1.0
    
    # get should not walk past other 4xx errors if proxies are separated with ','.
    env GOPROXY=$proxy/403,$proxy
    ! go get rsc.io/quote@v1.2.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/orig/view/searchOptions.jsp

    				<la:message key="labels.search_result_select_num" />
    			</option>
    			<la:option value="10">10</la:option>
    			<la:option value="20">20</la:option>
    			<la:option value="30">30</la:option>
    			<la:option value="40">40</la:option>
    			<la:option value="50">50</la:option>
    			<la:option value="100">100</la:option>
    		</la:select>
    	</fieldset>
    	<fieldset class="form-group">
    		<legend><la:message key="labels.index_sort" /></legend>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Jul 17 08:19:53 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/searchOptions.jsp

    				<la:message key="labels.search_result_select_num" />
    			</option>
    			<la:option value="10">10</la:option>
    			<la:option value="20">20</la:option>
    			<la:option value="30">30</la:option>
    			<la:option value="40">40</la:option>
    			<la:option value="50">50</la:option>
    			<la:option value="100">100</la:option>
    		</la:select>
    	</fieldset>
    	<fieldset class="form-group">
    		<legend><la:message key="labels.index_sort" /></legend>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Jul 17 08:19:53 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/lift_tflite_flex_ops.mlir

        tensor<1x!tf_type.string>, tensor<1x!tf_type.string>, tensor<1x!tf_type.string>
      ) -> (tensor<1x1x!tf_type.string>, tensor<1x1x!tf_type.string>)
      func.return %4#0, %4#1 : tensor<1x1x!tf_type.string>, tensor<1x1x!tf_type.string>
    // CHECK: "tf.ParseExample"(
    // CHECK-SAME: operandSegmentSizes = array<i32: 1, 1, 0, 2, 2>, resultSegmentSizes = array<i32: 0, 0, 0, 2>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. docs_src/additional_responses/tutorial001.py

    class Message(BaseModel):
        message: str
    
    
    app = FastAPI()
    
    
    @app.get("/items/{item_id}", response_model=Item, responses={404: {"model": Message}})
    async def read_item(item_id: str):
        if item_id == "foo":
            return {"id": "foo", "value": "there goes my hero"}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 26 13:32:30 UTC 2022
    - 506 bytes
    - Viewed (0)
  6. src/runtime/sigtab_linux_mipsx.go

    	/*  36 */ {_SigNotify, "signal 36"},
    	/*  37 */ {_SigNotify, "signal 37"},
    	/*  38 */ {_SigNotify, "signal 38"},
    	/*  39 */ {_SigNotify, "signal 39"},
    	/*  40 */ {_SigNotify, "signal 40"},
    	/*  41 */ {_SigNotify, "signal 41"},
    	/*  42 */ {_SigNotify, "signal 42"},
    	/*  43 */ {_SigNotify, "signal 43"},
    	/*  44 */ {_SigNotify, "signal 44"},
    	/*  45 */ {_SigNotify, "signal 45"},
    	/*  46 */ {_SigNotify, "signal 46"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6K bytes
    - Viewed (0)
  7. docs_src/bigger_applications/app_an/routers/items.py

        responses={404: {"description": "Not found"}},
    )
    
    
    fake_items_db = {"plumbus": {"name": "Plumbus"}, "gun": {"name": "Portal Gun"}}
    
    
    @router.get("/")
    async def read_items():
        return fake_items_db
    
    
    @router.get("/{item_id}")
    async def read_item(item_id: str):
        if item_id not in fake_items_db:
            raise HTTPException(status_code=404, detail="Item not found")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 1011 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/prettify.css

    or:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 673 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/tests/tfl_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:  %0 = mhlo.constant dense<0xFF800000> : tensor<f32>
      // CHECK-DAG:  %1 = mhlo.constant dense<0> : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands_legacy.mlir

            tf_device.return %5 : tensor<i1>
          }, {
            %5 = "tf.opC"(%1#0) : (tensor<i1>) -> tensor<i32>
            tf_device.return %5 : tensor<i32>
          }) {} : () -> (tensor<i1>, tensor<i32>)
          tf_executor.yield %4#0, %4#1 : tensor<i1>, tensor<i32>
        }
        tf_executor.fetch %3#0, %3#1 : tensor<i1>, tensor<i32>
      }
      func.return
    }
    
    // CHECK:      [[INPUT_A:%.+]], {{%.+}} = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top