Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 444 for sometimes (0.19 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedNodeFixture.java

        }
    
        /**
         * Given a list of lines, assert that the output of this fixture contains each of them and reports failures in the given diff format.
         * <p>
         * It's sometimes easier to see what the difference between the expected and actual output is in another diff format.
         *
         * @param assertionFailureFormat the format to use for the failure message, if lines are not found
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unmarshal/unmarshal.go

    }
    
    func run(pass *analysis.Pass) (interface{}, error) {
    	switch pass.Pkg.Path() {
    	case "encoding/gob", "encoding/json", "encoding/xml", "encoding/asn1":
    		// These packages know how to use their own APIs.
    		// Sometimes they are testing what happens to incorrect programs.
    		return nil, nil
    	}
    
    	// Note: (*"encoding/json".Decoder).Decode, (* "encoding/gob".Decoder).Decode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestTestFrameworkIntegrationTest.groovy

    import org.gradle.testing.AbstractTestFrameworkIntegrationTest
    
    import static org.junit.Assume.assumeTrue
    
    @Requires(UnitTestPreconditions.NotMacOsM1)
    @DoesNotSupportNonAsciiPaths(reason = "Swift sometimes fails when executed from non-ASCII directory")
    class XCTestTestFrameworkIntegrationTest extends AbstractTestFrameworkIntegrationTest {
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/errorsas/errorsas.go

    	Run:      run,
    }
    
    func run(pass *analysis.Pass) (interface{}, error) {
    	switch pass.Pkg.Path() {
    	case "errors", "errors_test":
    		// These packages know how to use their own APIs.
    		// Sometimes they are testing what happens to incorrect programs.
    		return nil, nil
    	}
    
    	if !analysisutil.Imports(pass.Pkg, "errors") {
    		return nil, nil // doesn't directly import errors
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedWorkOutputFixture.java

        }
    
        /**
         * Given a list of lines, assert that the output of this fixture contains each of them and reports failures in the given diff format.
         * <p>
         * It's sometimes easier to see what the difference between the expected and actual output is in another diff format.
         *
         * @param assertionFailureFormat the format to use for the failure message, if lines are not found
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestCppInteroperabilityIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.SwiftLibWithCppDepXCTest
    import org.gradle.test.fixtures.file.DoesNotSupportNonAsciiPaths
    
    @DoesNotSupportNonAsciiPaths(reason = "Swift sometimes fails when executed from non-ASCII directory")
    class SwiftXCTestCppInteroperabilityIntegrationTest extends AbstractSwiftMixedLanguageIntegrationTest implements XCTestExecutionResult, SwiftTaskNames {
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/declaring_dependencies_between_subprojects.adoc

    If you execute `./gradlew :api:compile`, first the `shared` project is built, and then the `api` project is built.
    
    [[sec:depending_on_output_of_another_project]]
    == Depending on artifacts produced by another project
    
    Sometimes, you might want to depend on the output of a specific task within another project rather than the entire project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 21:54:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableMapEntry.java

       * a bucket in another map.
       */
      boolean isReusable() {
        return true;
      }
    
      static class NonTerminalImmutableMapEntry<K, V> extends ImmutableMapEntry<K, V> {
        /*
         * Yes, we sometimes set nextInKeyBucket to null, even for this "non-terminal" entry. We don't
         * do that with a plain NonTerminalImmutableMapEntry, but we do it with the BiMap-specific
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/NullnessCasts.java

        return t;
      }
    
      /**
       * Returns {@code null} cast to any type.
       *
       * <p>This method is intended to help with usages of type parameters that have {@linkplain
       * ParametricNullness parametric nullness}. Sometimes, code may receive a null {@code T} but store
       * a "null sentinel" to take its place. When the time comes to convert it back to a {@code T} to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 10 20:36:34 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  10. tensorflow/cc/training/coordinator.h

    };
    
    /// Coordinator class manages the termination of a collection of QueueRunners.
    /// Without a coordinator, QueueRunners have to be joined in a specific order;
    /// otherwise the QueueRunner::Join() could sometimes hang. The
    /// Coordinator::RequestStop() plays the key role which notifies all running
    /// threads under a coordinator to stop. This function could be called by any
    /// thread or any client.
    /// Usage, in the client:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top