Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 444 for sometimes (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    ====
    
    ====
    include::sample[dir="snippets/ant/dependsOnTask/groovy",files="build.xml"]
    ====
    
    ----
    $ gradle hello
    include::{snippetsPath}/ant/dependsOnTask/tests/dependsOnTask.out[]
    ----
    
    Sometimes, it may be necessary to “rename” the task generated for an Ant target to avoid a naming collision with existing Gradle tasks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdmethods/stdmethods.go

    // that are checked using dynamic interface checks. Because the
    // checks are dynamic, such methods would not cause a compile error
    // if they have the wrong signature: instead the dynamic check would
    // fail, sometimes mysteriously. If a method is found with a name listed
    // here but not the input/output types listed here, vet complains.
    //
    // A few of the canonical methods have very common names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationCppInteroperabilityIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.SwiftMainWithCppDep
    import org.gradle.nativeplatform.fixtures.app.SwiftSum
    import org.gradle.test.fixtures.file.DoesNotSupportNonAsciiPaths
    
    @DoesNotSupportNonAsciiPaths(reason = "Swift sometimes fails when executed from non-ASCII directory")
    class SwiftApplicationCppInteroperabilityIntegrationTest extends AbstractSwiftMixedLanguageIntegrationTest {
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. tensorflow/api_template_v1.__init__.py

    """
    contrib = _LazyLoader("contrib", globals(), "tensorflow.contrib",
                          _CONTRIB_WARNING)
    # The templated code that replaces the placeholder above sometimes
    # sets the __all__ variable. If it does, we have to be sure to add
    # "contrib".
    if "__all__" in vars():
      vars()["__all__"].append("contrib")
    
    from tensorflow.python.platform import flags
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    The following profile report shows the different categories available:
    
    image::performance/gradle-profile-report.png[title="An example profile report", alt="Sample Gradle profile report"]
    
    == Low level profiling
    
    Sometimes your build can be slow even though your build scripts do everything right.
    This often comes down to inefficiencies in plugins and custom tasks or constrained resources.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // respect to t is
    //
    //	1 / NEQ(t) .
    //
    // To generalize from transmitting one packet at a time to executing C
    // requests at a time, that derivative becomes
    //
    //	C / NEQ(t) .
    //
    // However, sometimes there are fewer than C requests available to
    // execute.  For a given queue "q", let us also write "reqs(q, t)" for
    // the number of requests of that queue that are executing at that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftExternalSourceDependenciesIntegrationTest.groovy

    import org.gradle.vcs.internal.SourceDependencies
    import org.junit.Rule
    
    import static org.gradle.ide.xcode.internal.XcodeUtils.toSpaceSeparatedList
    
    @DoesNotSupportNonAsciiPaths(reason = "Swift sometimes fails when executed from non-ASCII directory")
    class XcodeSwiftExternalSourceDependenciesIntegrationTest extends AbstractXcodeIntegrationSpec implements SourceDependencies {
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

                }
    
                def requestedGradleVersion = project.findProperty("gradleVersion")
                def requestedTargetJdk = project.findProperty("targetJdk")
    
                // Earlier versions of Gradle can sometimes fail to connect to the just started Gradle daemon.
                // The failure will be the "tried to connect to 100 daemons" error
                // If we're testing against a version that has this problem, we can ignore it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. src/runtime/traceback_system_test.go

    			break
    		}
    
    		// Expect a pair of lines:
    		//   SYMBOL(ARGS)
    		//   \tFILE:LINE +0xRELPC sp=0x%x fp=0x%x pc=0x%x
    		// Note: SYMBOL may contain parens "pkg.(*T).method"
    		// The RELPC is sometimes missing.
    
    		// Skip the symbol(args) line.
    		i++
    		if i == len(lines) {
    			break
    		}
    		line = lines[i]
    
    		// Parse the PC, and correct for the parent and child's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. fastapi/dependencies/utils.py

            if is_path_param:
                # We might check here that `default_value is Required`, but the fact is that the same
                # parameter might sometimes be a path parameter and sometimes not. See
                # `tests/test_infer_param_optionality.py` for an example.
                field_info = params.Path(annotation=use_annotation)
            elif is_uploadfile_or_nonable_uploadfile_annotation(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:52:56 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top