Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 444 for sometimes (0.34 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftStaticLibraryLinkageWithXCTestProjectIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.SwiftSourceElement
    import org.gradle.test.fixtures.file.DoesNotSupportNonAsciiPaths
    
    @DoesNotSupportNonAsciiPaths(reason = "Swift sometimes fails when executed from non-ASCII directory")
    class XcodeSwiftStaticLibraryLinkageWithXCTestProjectIntegrationTest  extends AbstractXcodeSwiftWithXCTestProjectIntegrationTest {
        @Override
        void makeSingleProject() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseProject.xml

                    </tr>
                </thead>
                <tr>
                    <td>name</td>
                    <td><literal><replaceable>${project.name}</replaceable> (sometimes prefixed with parts of <replaceable>${project.path}</replaceable> to guarantee uniqueness)</literal></td>
                </tr>
                <tr>
                    <td>comment</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. docs/contribute/concurrency.md

    #### Shared reader thread
    
    We can't rely on application threads to read data from the socket. Application threads are transient: sometimes they're reading and writing and sometimes they're off doing application-layer things. But the socket is permanent, and it needs constant attention: we dispatch all incoming frames so the connection is good-to-go when the application layer needs it.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  4. tensorflow/c/eager/tfe_op_attrs_internal.h

    #include "tensorflow/c/eager/abstract_op_attrs.h"
    #include "tensorflow/c/tf_status.h"
    #include "tensorflow/core/framework/attr_value.pb.h"
    
    // An equivalent of a tensorflow::NameAttrList protocol buffer, but used in ways
    // that sometimes do not require serialization.
    typedef struct TFE_OpAttrs TFE_OpAttrs;
    
    typedef struct TFE_Context TFE_Context;
    typedef struct TFE_Op TFE_Op;
    
    namespace tensorflow {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 10 05:41:19 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. releasenotes/notes/fix-concurrency.yaml

        and otherwise set concurrency based on the CPU limit allocated to the container
        For example, a limit of 2500m would set concurrency to 3.
        
        Prior to this release, sidecars followed this logic, but sometimes incorrectly determined the CPU limit.
        Gateways would never automatically adapt based on concurrency settings.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 11:53:23 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Contains the Java plugin, and its supporting classes.  This plugin is used as the basis for building a Java library or application by more specific plugins, and is sometimes applied by other JVM language projects."
    
    dependencies {
        api(project(":core"))
        api(project(":core-api"))
        api(project(":language-java"))
        api(project(":plugins-jvm-test-suite"))
        api(project(":publish"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginVersionIntegrationTest.groovy

                rulesMinimumPriority = 11
            }
    """
            expect:
            // Use --continue so that when executing in parallel mode a deterministic set of tests run
            // without --continue, sometimes both pmd tasks are run and sometimes only the only one task is run
            fails("check", "--continue")
            failure.assertHasCause("Invalid rulesMinimumPriority '11'.  Valid range 1 (highest) to 5 (lowest).")
            // pmdMain and pmdTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. .github/CONTRIBUTING.md

    `checkstyle-result.xml` file.
    
    Some general advice
    
    - Don’t change public API lightly, avoid if possible, and include your reasoning in the PR if essential.  It causes pain for developers who use OkHttp and sometimes runtime errors.
    - Favour a working external library if appropriate.  There are many examples of OkHttp libraries that can sit on top or hook in via existing APIs.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 17 04:16:26 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  9. src/mime/type_windows.go

    		if err != nil {
    			continue
    		}
    		v, _, err := k.GetStringValue("Content Type")
    		k.Close()
    		if err != nil {
    			continue
    		}
    
    		// There is a long-standing problem on Windows: the
    		// registry sometimes records that the ".js" extension
    		// should be "text/plain". See issue #32350. While
    		// normally local configuration should override
    		// defaults, this problem is common enough that we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 28 20:07:28 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftApplicationWithXCTestProjectIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.SwiftSourceElement
    import org.gradle.test.fixtures.file.DoesNotSupportNonAsciiPaths
    
    @DoesNotSupportNonAsciiPaths(reason = "Swift sometimes fails when executed from non-ASCII directory")
    class XcodeSwiftApplicationWithXCTestProjectIntegrationTest extends AbstractXcodeSwiftWithXCTestProjectIntegrationTest {
        @Override
        void makeSingleProject() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top