Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 777 for content_es (0.11 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/JavaClassUtil.java

        }
    
        /**
         * Get the class file major version from the provided {@code javaClass}
         *
         * @throws IOException If there is an error reading the class file contents.
         */
        public static int getClassMajorVersion(Class<?> javaClass) throws IOException {
            return getClassMajorVersion(javaClass.getName(), javaClass.getClassLoader());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableList.java

        }
    
        private void getReadyToExpandTo(int minCapacity) {
          if (contents.length < minCapacity) {
            this.contents = Arrays.copyOf(contents, expandedCapacity(contents.length, minCapacity));
            forceCopy = false;
          } else if (forceCopy) {
            contents = Arrays.copyOf(contents, contents.length);
            forceCopy = false;
          }
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/Input.java

     * This annotation cannot be used on a {@link java.io.File} object. If you want to refer to the file path,
     * independently of its contents, return a {@link java.lang.String String} instead which returns the absolute
     * path.
     * If, instead, you want to refer to the contents and path of a file or a directory, use
     * {@link org.gradle.api.tasks.InputFile} or {@link org.gradle.api.tasks.InputDirectory} respectively.
     */
    @Documented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

        /**
         * Allows lazy access to the contents of the given file.
         *
         * When the file contents are read at configuration time the file is automatically considered
         * as an input to the configuration model.
         *
         * @param file the file whose contents to read.
         * @return an interface that allows lazy access to the contents of the given file.
         *
         * @see FileContents#getAsText()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableMapEntry.java

      }
    
      ImmutableMapEntry(K key, V value) {
        super(key, value);
        checkEntryNotNull(key, value);
      }
    
      ImmutableMapEntry(ImmutableMapEntry<K, V> contents) {
        super(contents.getKey(), contents.getValue());
        // null check would be redundant
      }
    
      @CheckForNull
      ImmutableMapEntry<K, V> getNextInKeyBucket() {
        return null;
      }
    
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. pkg/volume/util/fsquota/quota_linux_test.go

    	for key, val := range podDirCountMap {
    		fmt.Printf("        %v -> %v\n", key, val)
    	}
    	fmt.Printf("    Map quotaSizeMap contents:\n")
    	for key, val := range quotaSizeMap {
    		fmt.Printf("        %v -> %v\n", key, val)
    	}
    	fmt.Printf("    Map supportsQuotasMap contents:\n")
    	for key, val := range supportsQuotasMap {
    		fmt.Printf("        %v -> %v\n", key, val)
    	}
    	fmt.Printf("    Map backingDevMap contents:\n")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/AbstractBuildScriptBuilderTest.groovy

                    _ * getAsFile() >> tmpDir.file(path)
                }
            }
        }
    
        abstract TestFile getOutputFile()
    
        void assertOutputFile(String contents) {
            assert outputFile.file
            assert outputFile.text == toPlatformLineSeparators(contents)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ProgramParserTest.kt

                    ),
                    Program.Script(expectedScriptSource)
                )
            )
        }
    
        private
        fun assertEmptyProgram(contents: String, programTarget: ProgramTarget = ProgramTarget.Project) {
            assertProgramOf(programSourceWith(contents), Program.Empty, programTarget = programTarget)
        }
    }
    
    
    internal
    fun assertProgramOf(
        source: ProgramSource,
        expected: Program,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/valueProviders/fileContentsDont/groovy/settings.gradle

    rootProject.name = 'file-contents-dont'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40 bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/CleanArchiveIntegrationTest.groovy

    import spock.lang.Issue
    
    @Issue("https://github.com/gradle/gradle/issues/25752")
    class CleanArchiveIntegrationTest extends AbstractIntegrationSpec {
    
        def setup() {
            file("contents/hello.txt") << "hello"
            file("contents").zipTo(file("hello.zip"))
        }
    
        def "clean after unzipping file to cache in task"() {
            buildFile << """
                plugins {
                    id 'lifecycle-base'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top