Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 776 for content_es (0.24 sec)

  1. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesGroovyCustomizedLayoutIntegrationTest.groovy

            then:
            // Check tests have run
            def result = new DefaultTestExecutionResult(groovyProjectDir)
            result.assertTestClassesExecuted('org.gradle.PersonTest')
    
            and:
            // Check contents of jar
            TestFile tmpDir = file('jarContents')
            groovyProjectDir.file('build/libs/customized-layout.jar').unzipTo(tmpDir)
            tmpDir.assertHasDescendants(
                'META-INF/MANIFEST.MF',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetTestSuiteBuilder.java

            for (int i = 0; i < entry.getCount(); i++) {
              contents.add(entry.getElement());
            }
          }
          return ((Multiset<E>) gen.create(contents.toArray())).entrySet();
        }
    
        @SuppressWarnings("unchecked")
        @Override
        public Multiset.Entry<E>[] createArray(int length) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesWebQuickstartIntegrationTest.groovy

        }
    
        def "can build a war"() {
            given:
            super.sample sample
    
            when:
            executer.withTasks('clean', 'build').run()
    
            then:
            // Check contents of War
            TestFile warContents = file('war-tmp')
            sample.dir.file("build/libs/quickstart.war").unzipTo(warContents)
            warContents.assertHasDescendants(
                    'META-INF/MANIFEST.MF',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java

       * ImmutableSortedSet) creates an empty sortedDelegate, which, in a vacuum, sets this object's
       * contents to empty. By contrast, the non-GWT constructor with the same signature uses the
       * comparator only as a comparator. It does NOT assume empty contents. (It requires an
       * implementation of iterator() to define its contents, and methods like contains() are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. subprojects/core/src/testFixtures/groovy/org/gradle/util/JarUtils.groovy

    import java.util.jar.Manifest
    import java.util.zip.ZipEntry
    
    class JarUtils {
        static def jarWithContents(Map<String, String> contents) {
            def out = new ByteArrayOutputStream()
            def jarOut = new JarOutputStream(out)
            try {
                contents.each { file, fileContents ->
                    def zipEntry = new ZipEntry(file)
                    zipEntry.setTime(0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 07 19:17:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/FingerprintCompareStrategy.java

     *
     * The strategy first tries to do a trivial comparison and delegates the more complex cases to a separate implementation.
     */
    public interface FingerprintCompareStrategy {
        /**
         * Visits the changes to file contents since the given fingerprint, subject to the given filters.
         *
         * @return Whether the {@link ChangeVisitor} is looking for further changes. See {@link ChangeVisitor#visitChange(Change)}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/MinimalFileTree.java

             */
            void visitFileTree(File root, PatternSet patterns, FileTreeInternal fileTree);
    
            /**
             * Visits a file tree whose content is generated from the contents of a file.
             */
            void visitFileTreeBackedByFile(File file, FileTreeInternal fileTree, FileSystemMirroringFileTree sourceTree);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/sets/byte.go

    func (s1 Byte) Equal(s2 Byte) bool {
    	return cast(s1).Equal(cast(s2))
    }
    
    // List returns the contents as a sorted byte slice.
    func (s Byte) List() []byte {
    	return List(cast(s))
    }
    
    // UnsortedList returns the slice with contents in random order.
    func (s Byte) UnsortedList() []byte {
    	return cast(s).UnsortedList()
    }
    
    // PopAny returns a single element from the set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/sets/int64.go

    func (s1 Int64) Equal(s2 Int64) bool {
    	return cast(s1).Equal(cast(s2))
    }
    
    // List returns the contents as a sorted int64 slice.
    func (s Int64) List() []int64 {
    	return List(cast(s))
    }
    
    // UnsortedList returns the slice with contents in random order.
    func (s Int64) UnsortedList() []int64 {
    	return cast(s).UnsortedList()
    }
    
    // PopAny returns a single element from the set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/sets/string.go

    func (s1 String) Equal(s2 String) bool {
    	return cast(s1).Equal(cast(s2))
    }
    
    // List returns the contents as a sorted string slice.
    func (s String) List() []string {
    	return List(cast(s))
    }
    
    // UnsortedList returns the slice with contents in random order.
    func (s String) UnsortedList() []string {
    	return cast(s).UnsortedList()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top