Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,844 for asset0 (0.1 sec)

  1. test/string_lit.go

    			`\000\123\x00\xca\xFE\u0123\ubabe\U0000babe` +
    			`\x\u\U\`
    
    	assert("", ``, "empty")
    	assert(" ", " ", "blank")
    	assert("\x61", "a", "lowercase a")
    	assert("\x61", `a`, "lowercase a (backquote)")
    	assert("\u00e4", "ä", "a umlaut")
    	assert("\u00e4", `ä`, "a umlaut (backquote)")
    	assert("\u672c", "本", "nihon")
    	assert("\u672c", `本`, "nihon (backquote)")
    	assert("\x07\x08\x0c\x0a\x0d\x09\x0b\x5c\x22",
    		"\a\b\f\n\r\t\v\\\"",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 13 01:17:02 UTC 2013
    - 3.6K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cri_stats_provider_test.go

    	assert.Nil(c0.Rootfs)
    	assert.Nil(c0.Logs)
    	assert.Nil(c0.Accelerators)
    	assert.Nil(c0.UserDefinedMetrics)
    	c1 := containerStatsMap[cName1]
    	assert.Equal(container1.CreatedAt, c1.StartTime.UnixNano())
    	checkCRICPUAndMemoryStats(assert, c1, infos[container1.ContainerStatus.Id].Stats[0])
    	assert.Nil(c1.Rootfs)
    	assert.Nil(c1.Logs)
    	assert.Nil(c1.Accelerators)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentIntegrationTest.groovy

                            assert components*.name == ["sampleLib"]
                            assert components.withType(ModelElement)*.name == ["sampleLib"]
                            assert components.withType(ComponentSpec)*.name == ["sampleLib"]
                            assert components.withType($componentSpecType)*.name == ["sampleLib"]
                            assert components.withType(SampleComponentSpec)*.name == ["sampleLib"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_security/test_tutorial005_an.py

        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "Incorrect username or password"}
    
    
    def test_no_token():
        response = client.get("/users/me")
        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Not authenticated"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_security/test_tutorial005_an_py39.py

        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "Incorrect username or password"}
    
    
    @needs_py39
    def test_no_token(client: TestClient):
        response = client.get("/users/me")
        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Not authenticated"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/loader_util.cc

                            std::vector<AssetFileDef>* asset_file_defs) {
      // With SavedModel v2, we write asset file def into metagraph instead of
      // collection, so read from metagraph first.
      if (meta_graph_def.asset_file_def_size() > 0) {
        for (const auto& asset : meta_graph_def.asset_file_def()) {
          asset_file_defs->push_back(asset);
        }
        return absl::OkStatus();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 10 10:25:28 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationBridgeTest.groovy

            then:
            1 * listener.finished(_) >> { BuildOperationFinishedNotification n ->
                assert n.notificationOperationId == d1.id
                assert n.notificationOperationResult == 10
                assert n.notificationOperationFailure == null
                assert n.notificationOperationDetails.is(d1.details)
                assert n.notificationOperationFinishedTimestamp == 10
            }
    
            // operation with no details
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_security/test_tutorial005_py310.py

        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "Incorrect username or password"}
    
    
    @needs_py310
    def test_no_token(client: TestClient):
        response = client.get("/users/me")
        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Not authenticated"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_security/test_tutorial005_py39.py

        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "Incorrect username or password"}
    
    
    @needs_py39
    def test_no_token(client: TestClient):
        response = client.get("/users/me")
        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Not authenticated"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildLookupIntegrationTest.groovy

            includeBuild(buildC)
            buildA.buildFile << """
                assert gradle.includedBuild("buildB").name == "buildB"
                assert gradle.includedBuild("buildB").projectDir == file('${buildB.toURI()}')
                assert gradle.includedBuild("buildC").name == "buildC"
                assert gradle.includedBuild("buildC").projectDir == file('${buildC.toURI()}')
                assert gradle.includedBuilds.name == ["buildB", "buildC"]
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top