Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,724 for asset0 (0.1 sec)

  1. pom.xml

    				<configuration>
    					<header>https://www.codelibs.org/assets/license/header.txt</header>
    					<properties>
    						<year>2024</year>
    					</properties>
    					<includes>
    						<include>src/**/*.java</include>
    					</includes>
    					<encoding>UTF-8</encoding>
    					<headerDefinitions>
    						<headerDefinition>https://www.codelibs.org/assets/license/header-definition-2.xml</headerDefinition>
    					</headerDefinitions>
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. pkg/ctrlz/topics/signals.go

    // limitations under the License.
    
    package topics
    
    import (
    	"net/http"
    	"os"
    	"syscall"
    
    	"istio.io/istio/pkg/ctrlz/fw"
    	"istio.io/istio/pkg/ctrlz/topics/assets"
    )
    
    type signalsTopic struct{}
    
    // SignalsTopic returns a ControlZ topic that sends command signals to the process
    func SignalsTopic() fw.Topic {
    	return signalsTopic{}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:12:24 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/decl.go

    		for i := 0; i < base.NumMethods(); i++ {
    			m := base.Method(i)
    			assert(m.name != "_")
    			assert(mset.insert(m) == nil)
    		}
    	}
    
    	// add valid methods
    	for _, m := range methods {
    		// spec: "For a base type, the non-blank names of methods bound
    		// to it must be unique."
    		assert(m.name != "_")
    		if alt := mset.insert(m); alt != nil {
    			if alt.Pos().IsKnown() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

            assertPublished()
        }
    
        void assertPublished() {
            assert ivyFile.assertIsFile()
            assert parsedIvy.organisation == organisation
            assert parsedIvy.module == module
            assert parsedIvy.revision == revision
        }
    
        void assertPublishedAsJavaModule() {
            assertPublished()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. tests/test_dependency_contextmanager.py

        assert data["context_b"] == "started b"
        assert data["context_a"] == "started a"
        assert state["context_b"] == "finished b with a: started a"
        assert state["context_a"] == "finished a"
    
    
    def test_context_b_raise():
        with pytest.raises(OtherDependencyError):
            client.get("/context_b_raise")
        assert state["context_b"] == "finished b with a: started a"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

            assert configureProjectOps.size() == 2
            with(configureProjectOps[0]) {
                assert details.buildPath == ':lib'
                assert details.projectPath == ':'
                assert parentId == configureChildBuild.id
            }
            with(configureProjectOps[1]) {
                assert details.buildPath == ':'
                assert details.projectPath == ':'
                assert parentId == configureRootBuild.id
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. src/go/types/decl.go

    		for i := 0; i < base.NumMethods(); i++ {
    			m := base.Method(i)
    			assert(m.name != "_")
    			assert(mset.insert(m) == nil)
    		}
    	}
    
    	// add valid methods
    	for _, m := range methods {
    		// spec: "For a base type, the non-blank names of methods bound
    		// to it must be unique."
    		assert(m.name != "_")
    		if alt := mset.insert(m); alt != nil {
    			if alt.Pos().IsValid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. tests/test_path.py

        response = client.get("/path/str/foobar")
        assert response.status_code == 200
        assert response.json() == "foobar"
    
    
    def test_path_str_42():
        response = client.get("/path/str/42")
        assert response.status_code == 200
        assert response.json() == "42"
    
    
    def test_path_str_True():
        response = client.get("/path/str/True")
        assert response.status_code == 200
        assert response.json() == "True"
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. tests/test_jsonable_encoder.py

    def test_encode_dict():
        pet = {"name": "Firulais", "owner": {"name": "Foo"}}
        assert jsonable_encoder(pet) == {"name": "Firulais", "owner": {"name": "Foo"}}
        assert jsonable_encoder(pet, include={"name"}) == {"name": "Firulais"}
        assert jsonable_encoder(pet, exclude={"owner"}) == {"name": "Firulais"}
        assert jsonable_encoder(pet, include={}) == {}
        assert jsonable_encoder(pet, exclude={}) == {
            "name": "Firulais",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                }
    
                assert p1 == 1
                assert properties.p1 == 1
                assert ext.p1 == 1
                assert hasProperty("p1")
                assert property("p1") == 1
                assert getProperty("p1") == 1
                assert ext.getProperty("p1") == 1
    
                p1 = 2
                assert p1 == 2
                assert ext.p1 == 2
    
                task run {
                    doLast { task ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top