Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 776 for content_es (0.23 sec)

  1. 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)
  2. 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)
  3. src/embed/embed.go

    //
    // Go source files that import "embed" can use the //go:embed directive
    // to initialize a variable of type string, []byte, or [FS] with the contents of
    // files read from the package directory or subdirectories at compile time.
    //
    // For example, here are three ways to embed a file named hello.txt
    // and then print its contents at run time.
    //
    // Embedding one file into a string:
    //
    //	import _ "embed"
    //
    //	//go:embed hello.txt
    //	var s string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. 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)
  5. .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)
  6. 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)
  7. 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)
  8. okhttp-logging-interceptor/README.md

      }
    });
    ```
    
    **Warning**: The logs generated by this interceptor when using the `HEADERS` or `BODY` levels have
    the potential to leak sensitive information such as "Authorization" or "Cookie" headers and the
    contents of request and response bodies. This data should only be logged in a controlled way or in
    a non-production environment.
    
    You can redact headers that may contain sensitive information by calling `redactHeader()`.
    ```java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildConverter.java

    /**
     * Converts some existing build to a Gradle build.
     */
    public interface BuildConverter extends BuildInitializer {
        /**
         * Can this converter be applied to the contents of the current directory?
         */
        boolean canApplyToCurrentDirectory(Directory current);
    
        String getSourceBuildDescription();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/RootTrackingFileSystemSnapshotHierarchyVisitor.java

    package org.gradle.internal.snapshot;
    
    public abstract class RootTrackingFileSystemSnapshotHierarchyVisitor implements FileSystemSnapshotHierarchyVisitor {
        private int treeDepth;
    
        /**
         * Called before visiting the contents of a directory.
         */
        public void enterDirectory(DirectorySnapshot directorySnapshot, boolean isRoot) {}
    
        /**
         * Called for each regular file/directory/missing/unavailable file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top