Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,317 for nothings (0.14 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

            1 * selectedChild.store(searchedPath.pathFromChild(selectedChildPath), CASE_SENSITIVE, snapshot, diffListener) >> updatedChild
        }
    
        def "querying the snapshot for non-existing child #vfsSpec.searchedPath finds nothings (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            def resultRoot = initialRoot.getSnapshot(searchedPath, CASE_SENSITIVE)
            then:
            !resultRoot.present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/expressionInfoProvider/whenMissingCases/nothing.kt

    fun test(n: Nothing) {
        <caret>when (n) {
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Nov 17 19:55:08 UTC 2021
    - 53 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/expressionInfoProvider/whenMissingCases/nothing.txt

    Ilya Kirillov <******@****.***> 1637170955 +0100
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Nov 17 19:55:08 UTC 2021
    - 15 bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r54/RunEclipseAutoBuildTasksCrossVersionSpec.groovy

                    .setStandardOutput(out)
                    .forTasks()
                    .run()
            }
    
            then:
            !taskExecuted(out, ":nothing")
            !taskExecuted(out, ":nothing_")
            taskExecuted(out, ":nothing__")
        }
    
        private def taskExecuted(ByteArrayOutputStream out, String taskPath) {
            out.toString().contains("> Task $taskPath ")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r54/RunEclipseSynchronizationTasksCrossVersionSpec.groovy

                    .setStandardOutput(out)
                    .forTasks()
                    .run()
            }
    
            then:
            !taskExecuted(out, ":nothing")
            !taskExecuted(out, ":nothing_")
            taskExecuted(out, ":nothing__")
        }
    
        private def taskExecuted(ByteArrayOutputStream out, String taskPath) {
            out.toString().contains("> Task $taskPath ")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. test/typeswitch3.go

    // Issue 2700, among other things.
    // Does not compile.
    
    package main
    
    import (
    	"io"
    )
    
    type I interface {
    	M()
    }
    
    func main() {
    	var x I
    	switch x.(type) {
    	case string: // ERROR "impossible"
    		println("FAIL")
    	}
    
    	// Issue 2700: if the case type is an interface, nothing is impossible
    
    	var r io.Reader
    
    	_, _ = r.(io.Writer)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 12 22:20:51 UTC 2021
    - 999 bytes
    - Viewed (0)
  7. cmd/import-boss/README.md

    match that regex.
    
    Note: an empty list (`[]`) matches nothing, and an empty string (`""`) is a
    prefix of everything.
    
    ### What are InverseRules?
    
    In contrast to rules, which are defined in terms of "things this package
    depends on", inverse rules are defined in terms of "things which import this
    package".  This allows for fine-grained import restrictions for "semi-private
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3ConnectorFactory.java

            for (Authentication authentication : authentications) {
                // We get only the first element here, nothing else. But Collection
                // forces us to use an iterator.
                if (authentication instanceof AllSchemesAuthentication) {
                    // First things first, retro compatibility
                    AwsCredentials awsCredentials = connectionDetails.getCredentials(AwsCredentials.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingServiceRegistry.java

         * </ul>
         *
         * <p>Does nothing until started.</p>
         */
        public static LoggingServiceRegistry newEmbeddableLogging() {
            return new CommandLineLogging();
        }
    
        /**
         * Creates a set of logging services to set up a new logging scope that does nothing by default. The methods on {@link LoggingManagerInternal} can be used to configure the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/AbstractExecutionListener.java

        }
    
        public void projectSucceeded(ExecutionEvent event) {
            // default does nothing
        }
    
        public void projectFailed(ExecutionEvent event) {
            // default does nothing
        }
    
        public void forkStarted(ExecutionEvent event) {
            // default does nothing
        }
    
        public void forkSucceeded(ExecutionEvent event) {
            // default does nothing
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top