Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 650 for necessarily (0.18 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceWriteResult.java

        public ExternalResourceWriteResult(long bytesWritten) {
            this.bytesWritten = bytesWritten;
        }
    
        /**
         * The number of content bytes written. This is not necessarily the same as the number of bytes transferred.
         */
        long getBytesWritten() {
            return bytesWritten;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/ComponentWithLinkFile.java

     *
     * @since 4.5
     */
    public interface ComponentWithLinkFile extends ComponentWithNativeRuntime {
        /**
         * Returns the task that should be run to produce the link file of this component. This isn't necessarily the link task for the component.
         *
         * @since 5.1
         */
        Provider<? extends Task> getLinkFileProducer();
    
        /**
         * Returns the link file of this component.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeProjectAccessorsCompositeBuildsIntegrationTest.groovy

    import org.gradle.util.internal.ToBeImplemented
    
    class TypeSafeProjectAccessorsCompositeBuildsIntegrationTest extends AbstractTypeSafeProjectAccessorsIntegrationTest {
    
        // not necessarily planned to be implemented, but capturing the existing behavior
        @ToBeImplemented
        def "included builds participate in type-safe accessors generation"() {
            settingsFile << """
                rootProject.name = 'test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 15:31:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_import_meta.txt

    ! go list -deps ./importstd
    ! stderr 'internal error'
    stderr '^importstd[/\\]x.go:3:8: "std" is not an importable package; see ''go help packages''$'
    
    
    # Not even if such a path is theoretically provided by a (necessarily replaced) module.
    
    go mod edit -replace std@v0.1.0=./modstd
    go mod edit -require std@v0.1.0
    
    ! go list -deps ./importstd
    stderr '^importstd[/\\]x.go:3:8: "std" is not an importable package; see ''go help packages''$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 20:45:27 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/sync/PATENTS

    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    implementation.  If you or your agent or exclusive licensee institute or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 24 21:38:56 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/term/PATENTS

    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    implementation.  If you or your agent or exclusive licensee institute or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top