Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,583 for somme (0.06 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/PluginAwareExtensionsTest.kt

            }
        }
        newPluginAwareMock<T>().run {
            target.apply(plugin = "some-id")
            verify(configurationAction).plugin("some-id")
        }
        newPluginAwareMock<T>().run {
            target.apply(plugin = "some-id", to = arbitraryTarget)
            inOrder(configurationAction) {
                verify(configurationAction).plugin("some-id")
                verify(configurationAction).to(arbitraryTarget)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/RelativePathParserTest.groovy

        def "can work when empty"() {
            def parser = new RelativePathParser("tree-some/")
    
            expect:
            parser.root
    
            when:
            parser.exitToRoot(exitHandler)
            then:
            0 * _
        }
    
        def "can exit when moved to different root"() {
            def parser = new RelativePathParser("tree-some/")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemNodeWithChildrenTest.groovy

            ['name', 'name1', 'name12', 'name2', 'name21'],
            ['name/some'],
            ['name/some/other'],
            ['name/some', 'name2'],
            ['name/some', 'name2/other'],
            ['name/some', 'name2/other'],
            ['name', 'name1/some', 'name2/other/third'],
            ['aa/b1', 'ab/a1', 'name', 'name1/some', 'name2/other/third'],
            ("a".."z").toList(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_websockets/test_tutorial002_an.py

        with pytest.raises(WebSocketDisconnect):
            with client.websocket_connect("/items/bar/ws?token=some-token") as websocket:
                message = "Message one"
                websocket.send_text(message)
                data = websocket.receive_text()
                assert data == "Session cookie or query token value is: some-token"
                data = websocket.receive_text()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithStaticLinkagePublishingIntegrationTest.groovy

            mainMetadata.variant("debugRuntime").availableAt.coords == "some.group:test_debug:1.2"
            mainMetadata.variant("releaseLink").availableAt.coords == "some.group:test_release:1.2"
            mainMetadata.variant("releaseRuntime").availableAt.coords == "some.group:test_release:1.2"
    
            def debug = repo.module('some.group', 'test_debug', '1.2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/DownloadedUriTextResourceTest.groovy

            then:
            underTest.getText() == "Some content"
        }
    
        def "should return reader from downloaded file"() {
            when:
            downloadedFile.text = "Some content"
            underTest = new DownloadedUriTextResource("Test description", sourceUri, "", downloadedFile, resolver)
    
            then:
            underTest.getAsReader().text == "Some content"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternMatcherFactoryTest.java

                manyPatterns.add("some/package/Some" + i + "ClassName.class");
                manyPatterns.add("some/package/Some" + i + "ClassName.java");
                manyPatterns.add("some/package/Some" + i + "ClassName.h");
                manyPatterns.add("some/package/Some" + i + "ClassName$*.class");
                manyPatterns.add("some/package/Some" + i + "ClassName$*.java");
                manyPatterns.add("some/package/Some" + i + "ClassName$*.h");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

      - devicePath: /dev/disk/by-id/some-random-clusterb9772-pvc-c2435a06-14d7-11e7-9baf-42010a800049
        name: kubernetes.io/pd/some-random-clusterb9772-pvc-c2435a06-14d7-11e7-9baf-42010a800049
      - devicePath: /dev/disk/by-id/some-random-clusterb9772-pvc-8bf50554-fd42-11e6-94d4-42010a800049
        name: kubernetes.io/pd/some-random-clusterb9772-pvc-8bf50554-fd42-11e6-94d4-42010a800049
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/plugin/authn/util_test.go

    			meshConfig: &meshconfig.MeshConfig{
    				TrustDomain:        "cluster.local",
    				TrustDomainAliases: []string{"alias-1.domain", "some-other-alias-1.domain", "alias-2.domain"},
    			},
    			want: []string{"cluster.local", "alias-1.domain", "some-other-alias-1.domain", "alias-2.domain"},
    		},
    		{
    			name:       "Empty mesh config",
    			meshConfig: &meshconfig.MeshConfig{},
    			want:       []string{},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/DefaultBuildControllerTest.groovy

            def failure = new UnknownModelException("not found")
    
            given:
            _ * workerThreadRegistry.workerThread >> true
            1 * modelController.locateBuilderForDefaultTarget('some.model', false) >> modelScope
            1 * modelScope.getModel("some.model", null) >> { throw failure }
    
            when:
            controller.getModel(null, modelId)
    
            then:
            InternalUnsupportedModelException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:30 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top