Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 339 for content_es (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/FinalizedExecutionPlan.java

            }
        };
    
        /**
         * Returns this plan as a {@link WorkSource} ready for execution.
         */
        WorkSource<Node> asWorkSource();
    
        /**
         * Returns the immutable contents of this plan.
         */
        QueryableExecutionPlan getContents();
    
        /**
         * Overridden to remove IOException.
         */
        @Override
        void close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/resources/FileCollectionBackedZipArchiveTextResourceTest.groovy

        def setup() {
            def archive = project.file("archive.zip")
            def archiveEntry = project.file("archive/path/to/text")
            archiveEntry.parentFile.mkdirs()
            archiveEntry.text = "contents"
            project.ant.zip(basedir: project.file("archive"), destfile: archive)
            resource = new FileCollectionBackedArchiveTextResource(project.services.get(FileOperations), project.services.get(TaskDependencyFactory),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. .github/workflows/go-fips.yml

          - master
    
    # This ensures that previous jobs for the PR are canceled when the PR is
    # updated.
    concurrency:
      group: ${{ github.workflow }}-${{ github.head_ref }}
      cancel-in-progress: true
    
    permissions:
      contents: read
    
    jobs:
      build:
        name: Go BoringCrypto ${{ matrix.go-version }} on ${{ matrix.os }}
        runs-on: ${{ matrix.os }}
        strategy:
          matrix:
            go-version: [1.22.x]
            os: [ubuntu-latest]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/ASN1Util.java

            return as(type, stream.readObject());
        }
    
    
        /**
         *
         * @param type
         * @param tagged
         * @return tagged object contents cast to type
         * @throws PACDecodingException
         */
        public static <T extends ASN1Primitive> T as ( Class<T> type, ASN1TaggedObject tagged ) throws PACDecodingException {
            return as(type, tagged.getBaseObject());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetRemoveTester.java

      @CollectionFeature.Require(SUPPORTS_REMOVE)
      public void testRetainAllIgnoresCount() {
        initThreeCopies();
        List<E> contents = Helpers.copyToList(getMultiset());
        assertFalse(getMultiset().retainAll(Collections.singleton(e0())));
        expectContents(contents);
      }
    
      /**
       * Returns {@link Method} instances for the remove tests that assume multisets support duplicates
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/google/MultisetRemoveTester.java

      @CollectionFeature.Require(SUPPORTS_REMOVE)
      public void testRetainAllIgnoresCount() {
        initThreeCopies();
        List<E> contents = Helpers.copyToList(getMultiset());
        assertFalse(getMultiset().retainAll(Collections.singleton(e0())));
        expectContents(contents);
      }
    
      /**
       * Returns {@link Method} instances for the remove tests that assume multisets support duplicates
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/tasks/OutputFile.java

     *
     * <p>The parent directory will be created before the task is executed if it does not exist
     * already.</p>
     *
     * <p>This will cause the task to be considered out-of-date when the file path or contents
     * are different to when the task was last run.</p>
     */
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.FIELD})
    public @interface OutputFile {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 12:53:53 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. .github/workflows/pylint-presubmit.yml

    # limitations under the License.
    # ==============================================================================
    
    name: PyLint
    on:
      pull_request:
        paths:
          - '**.py'
    
    permissions:
      contents: read
    
    jobs:
      build:
        name: PyLint
        runs-on: ubuntu-latest
        steps:
        - name: Checkout code
          uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 16:40:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/files/inputFiles/kotlin/build.gradle.kts

        source = fileTree("src/main/java").matching { include("org/gradle/api/**") }
    
        // Using a closure to specify the source files.
        setSource({
            // Use the contents of each zip file in the src dir
            file("src").listFiles().filter { it.name.endsWith(".zip") }.map { zipTree(it) }
        })
    }
    // end::set-input-files[]
    
    // tag::add-input-files[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/PublicationArtifact.java

    import java.io.File;
    
    /**
     * An artifact published as part of a {@link Publication}.
     *
     * @since 4.8
     */
    public interface PublicationArtifact extends Buildable {
        /**
         * The actual file contents to publish.
         */
        File getFile();
    
        /**
         * Registers some tasks which build this artifact.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top