Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 758 for somme (0.08 sec)

  1. docs/en/docs/deployment/concepts.md

    In this case, it would be better to get **one extra server** and run some processes on it so that they all have **enough RAM and CPU time**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

                contextualLabel == "Task 'someTest' not found in root project 'test' and its subprojects. Some candidates are: 'someTask', 'someTaskA', 'someTaskB'."
                additionalData.asMap == ['requestedPath' : 'someTest']
            }
            failure.assertHasDescription("Task 'someTest' not found in root project 'test' and its subprojects. Some candidates are: 'someTask', 'someTaskA', 'someTaskB'.")
            failure.assertHasResolutions(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. pkg/volume/util/util_test.go

    			goos:         "windows",
    			path:         "some\\path",
    			expectedPath: "c:\\some\\path",
    			name:         "basic windows",
    		},
    		{
    			goos:         "windows",
    			path:         "/some/path",
    			expectedPath: "c:/some/path",
    			name:         "linux path on windows",
    		},
    		{
    			goos:         "windows",
    			path:         "\\some\\path",
    			expectedPath: "c:\\some\\path",
    			name:         "windows path no drive",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

        }
    
        def "outputs context in javadocs"() {
            def context = "some plugin"
            def innerContext = "some inner plugin"
            when:
            generate {
                description.set("Some description for tests")
                withContext(context) {
                    library("some-alias", 'g:a:v')
                    bundle("b0Bundle", ["some-alias"])
                    withContext(innerContext) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	  extraVolumes:
    //	  - name: "some-volume"
    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	scheduler:
    //	  extraArgs:
    //	    address: "10.100.0.1"
    //	  extraVolumes:
    //	  - name: "some-volume"
    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            project.mainComponent.baseName == 'some-app'
            project.mainComponent.binaries.size() == 2
    
            def debugBinary = project.mainComponent.binaries[0]
            debugBinary instanceof CppExecutable
            debugBinary.name == 'mainDebug'
            debugBinary.variantName == 'debug'
            debugBinary.baseName == 'some-app'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar_test.go

    			{"http://www.host.test/some", ""},
    			{"http://www.host.test/some/", ""},
    			{"http://www.host.test/some/path", "A=a"},
    			{"http://www.host.test/some/paths", ""},
    			{"http://www.host.test/some/path/foo", "A=a"},
    			{"http://www.host.test/some/path/foo/", "A=a"},
    		},
    	},
    	{
    		"Implicit path #1: path is a directory.",
    		"http://www.host.test/some/path/",
    		[]string{"A=a"},
    		"A=a",
    		[]query{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        File jarFile = new File("base/some.jar");
        Manifest manifest = manifestClasspath("file:the^file.jar");
        assertThat(ClassPath.getClassPathFromManifest(jarFile, manifest))
            .containsExactly(fullpath("base/the^file.jar"));
      }
    
      public void testGetClassPathFromManifest_relativeDirectory() throws IOException {
        File jarFile = new File("base/some.jar");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    	var tests = []struct {
    		u        []string
    		g        []string
    		f        *field.Path
    		expected bool
    	}{
    		{[]string{"some usage"}, []string{"some group"}, nil, false},                       // groups doesn't makes sense if usage authentication
    		{[]string{"authentication"}, []string{"some group"}, nil, false},                   // group not supported
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_body/test_tutorial001.py

        response = client.post(
            "/items/", json={"name": "Foo", "price": "50.5", "description": "Some Foo"}
        )
        assert response.status_code == 200
        assert response.json() == {
            "name": "Foo",
            "price": 50.5,
            "description": "Some Foo",
            "tax": None,
        }
    
    
    def test_post_with_str_float_description_tax(client: TestClient):
        response = client.post(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top