Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 427 for necessarily (0.28 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLockReleasedSignal.java

    public interface FileLockReleasedSignal {
    
        /**
         * Triggers this signal to notify the lock requesters that the file
         * lock has been released.
         *
         * <p>Returns once the signal has been emitted but not necessarily
         * received by the lock requesters.
         */
        void trigger();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteWorkBuildOperationType.java

             * That is, it was not UP_TO_DATE due to Gradle's core input/output incremental build mechanism.
             * This is not necessarily ideal behaviour, but it is the current.
             */
            @Nullable
            String getOriginBuildInvocationId();
    
            /**
             * The build cache key of the work in the origin build invocation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/streams/ValueStore.java

    public interface ValueStore<T> {
        /**
         * Writes the given value and returns an address for the written block.
         * The current thread performs the encoding. The implementation may perform some buffering and this may not necessarily be
         * flushed to the filesystem on completion of this method.
         */
        BlockAddress write(T value);
    
        /**
         * Reads the contents of the given block.
         * The current thread performs the decoding.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingOutputInternal.java

         *
         * @param outputStream Receives formatted output.
         * @param errorStream Receives formatted error output. Note that this steam may not necessarily be used, depending on the console mode requested.
         * @param consoleOutput The output format.
         */
        void attachConsole(OutputStream outputStream, OutputStream errorStream, ConsoleOutput consoleOutput);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/ComponentWithExecutable.java

         */
        FileCollection getLinkLibraries();
    
        /**
         * Returns the task that should be run to produce the executable file of this component. This isn't necessarily the link task for the component.
         *
         * @since 5.1
         */
        Provider<? extends Task> getExecutableFileProducer();
    
        /**
         * Returns the executable file to produce.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/internal/alias/alias.go

    //go:build !purego
    
    // Package alias implements memory aliasing tests.
    package alias
    
    import "unsafe"
    
    // AnyOverlap reports whether x and y share memory at any (not necessarily
    // corresponding) index. The memory beyond the slice length is ignored.
    func AnyOverlap(x, y []byte) bool {
    	return len(x) > 0 && len(y) > 0 &&
    		uintptr(unsafe.Pointer(&x[0])) <= uintptr(unsafe.Pointer(&y[len(y)-1])) &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationType.java

             * That is, it was not UP_TO_DATE due to Gradle's core input/output incremental build mechanism.
             * This is not necessarily ideal behaviour, but it is the current.
             */
            @Nullable
            String getOriginBuildInvocationId();
    
            /**
             * The build cache key of the task in the origin build invocation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Callback.kt

       * body on another thread.
       *
       * Note that transport-layer success (receiving a HTTP response code, headers and body) does not
       * necessarily indicate application-layer success: `response` may still indicate an unhappy HTTP
       * response code like 404 or 500.
       */
      @Throws(IOException::class)
      fun onResponse(
        call: Call,
        response: Response,
      )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProviderWithValue.java

     */
    
    package org.gradle.api.internal.provider;
    
    import org.gradle.api.provider.Provider;
    
    /**
     * A {@link org.gradle.api.provider.Provider} that always has a value defined. The value may not necessarily be final.
     */
    public abstract class AbstractProviderWithValue<T> extends AbstractMinimalProvider<T> {
        @Override
        public boolean isPresent() {
            return true;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/BitString.kt

     * limitations under the License.
     */
    package okhttp3.tls.internal.der
    
    import okio.ByteString
    
    /**
     * Like a [ByteString], but whose bits are not necessarily a strict multiple of 8.
     */
    internal data class BitString(
      val byteString: ByteString,
      /** 0-7 unused bits in the last byte. */
      val unusedBitsCount: Int,
    ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top