Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,378 for somme (0.05 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInKotlinIntegrationTest.groovy

            "System.getProperties().get(\"some.property\")"            | _
            "System.getProperty(\"some.property\")"                    | _
            "System.getProperty(\"some.property\", \"default.value\")" | _
            "System.setProperty(\"some.property\", \"new.value\")"     | _
            "System.clearProperty(\"some.property\")"                  | _
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/RemovePreviousOutputsStepTest.groovy

            0 * _
    
            !outputs.file.exists()
            outputs.dir.assertHasDescendants("some/notOutput1.txt", "some/notOutput2")
            !outputs.dir.file("some/dir").exists()
            !outputs.dir.file("some/lonelyDir").exists()
            !outputs.dir.file("some/another").exists()
            outputs.dir.file("some/notOutput2").isDirectory()
        }
    
        def "does not clean prepared directories"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/code/UserCodeApplicationContext.java

    import javax.annotation.Nullable;
    import java.util.function.Supplier;
    
    /**
     * Assigns and stores an ID for the application of some user code (e.g. scripts and plugins).
     */
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface UserCodeApplicationContext {
        /**
         * Applies some user code, assigning an ID for this particular application.
         *
         * @param source The source of the code being applied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsGroovyDSLIntegrationTest.groovy

            when:
            plugin.allowAll()
            succeeds taskName
    
            then:
            outputContains message
    
            where:
            alias << ['greeter', 'some.greeter', 'some-greeter']
        }
    
        def "can apply a plugin declared in a catalog in a TOML file"() {
            String taskName = 'greet'
            String message = 'Hello from plugin!'
            String pluginId = 'com.acme.greeter'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/arguments_test.go

    				{Name: "token-auth-file", Value: "/token"},
    				{Name: "tls-sni-cert-key", Value: "/some/path/"},
    			},
    			overrides: []kubeadmapi.Arg{
    				{Name: "tls-sni-cert-key", Value: "/some/new/path"},
    				{Name: "tls-sni-cert-key", Value: "/some/new/path/subpath"},
    			},
    			expected: []string{
    				"--tls-sni-cert-key=/some/new/path",
    				"--tls-sni-cert-key=/some/new/path/subpath",
    				"--token-auth-file=/token",
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/ByteArrayDataInput.java

      @CanIgnoreReturnValue // to skip some bytes
      @Override
      short readShort();
    
      @CanIgnoreReturnValue // to skip some bytes
      @Override
      int readUnsignedShort();
    
      @CanIgnoreReturnValue // to skip some bytes
      @Override
      char readChar();
    
      @CanIgnoreReturnValue // to skip some bytes
      @Override
      int readInt();
    
      @CanIgnoreReturnValue // to skip some bytes
      @Override
      long readLong();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top