Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 216 for strnames (0.13 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    // The symbol "fail" here expands to something into which a message
    // can be streamed.
    
    // This macro is for implementing ASSERT/EXPECT_DEBUG_DEATH when compiled in
    // NDEBUG mode. In this case we need the statements to be executed, the regex is
    // ignored, and the macro must accept a streamed message even though the message
    // is never printed.
    # define GTEST_EXECUTE_STATEMENT_(statement, regex) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

       */
      internal var routeFailureCount = 0
    
      private var successCount = 0
      private var refusedStreamCount = 0
    
      /**
       * The maximum number of concurrent streams that can be carried by this connection. If
       * `allocations.size() < allocationLimit` then new streams can be created on this connection.
       */
      internal var allocationLimit = 1
        private set
    
      /** Current calls carried by this connection. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/HandleStaleOutputsStep.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    import com.google.common.annotations.VisibleForTesting;
    import com.google.common.collect.Streams;
    import org.gradle.internal.execution.BuildOutputCleanupRegistry;
    import org.gradle.internal.execution.OutputChangeListener;
    import org.gradle.internal.execution.UnitOfWork;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/LineEndingNormalizingInputStreamHasherTest.groovy

            where:
            eol     | description
            '\r'    | 'CR'
            '\r\n'  | 'CR-LF'
            '\n'    | 'LF'
        }
    
        def "can normalize line endings in input streams (eol = '#description')"() {
            def unnormalized = inputStream(content.textWithLineEndings(eol))
            def normalized = inputStream(content.textWithLineEndings('\n'))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/BuildTreeModelSideEffectStore.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.models
    
    import org.gradle.cache.internal.streams.BlockAddress
    import org.gradle.cache.internal.streams.ValueStore
    import org.gradle.internal.cc.impl.ConfigurationCacheIO
    import org.gradle.internal.cc.impl.ConfigurationCacheStateStore
    import org.gradle.internal.cc.impl.DefaultConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r86/StreamingBuildActionCrossVersionTest.groovy

            eclipseModel.gradleProject.name == "hello-world"
        }
    
        @Flaky(because = "https://github.com/gradle/gradle-private/issues/4145")
        def "client application receives streamed value before build action completes"() {
            when:
            server.start()
            def request = server.expectAndBlock("action")
            def models = new CopyOnWriteArrayList<Object>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 03:20:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/BufferProvider.java

     */
    
    package org.gradle.internal.file;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Providers a byte buffer to be used in processing streams.
     */
    @ServiceScope(Scope.Global.class)
    public interface BufferProvider {
        byte[] getBuffer();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 921 bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/IoActions.java

    /**
     * Various utilities for dealing with IO actions.
     */
    public abstract class IoActions {
    
        /**
         * Gives a writer for the given file/encoding to the given write action, managing the streams.
         *
         * @param output The file to write to
         * @param encoding The character encoding to write with
         * @param action The action to write the actual content
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/streams/BlockAddressSerializer.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.cache.internal.streams;
    
    import org.gradle.internal.serialize.Decoder;
    import org.gradle.internal.serialize.Encoder;
    import org.gradle.internal.serialize.Serializer;
    
    public class BlockAddressSerializer implements Serializer<BlockAddress> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http2/Settings.kt

        for (i in 0 until COUNT) {
          if (!other.isSet(i)) continue
          set(i, other[i])
        }
      }
    
      companion object {
        /**
         * From the HTTP/2 specs, the default initial window size for all streams is 64 KiB. (Chrome 25
         * uses 10 MiB).
         */
        const val DEFAULT_INITIAL_WINDOW_SIZE = 65535
    
        /** HTTP/2: Size in bytes of the table used to decode the sender's header blocks. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top