Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 232 for normalization (0.28 sec)

  1. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/EnumAnnotationValue.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.normalization.java.impl;
    
    public class EnumAnnotationValue extends SimpleAnnotationValue {
    
        private final String typeDesc;
    
        public EnumAnnotationValue(String name, String value, String typeDesc) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 986 bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/normalization/PropertiesFileNormalization.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.normalization;
    
    /**
     * Specifies how properties files should be normalized.
     *
     * @since 6.8
     */
    public interface PropertiesFileNormalization {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 19 12:43:32 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/ClassMember.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.normalization.java.impl;
    
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    
    public class ClassMember extends AnnotatableMember {
    
        private final int version;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

            delegate.resources
    
        override fun setDefaultTasks(defaultTasks: MutableList<String>) {
            delegate.defaultTasks = defaultTasks
        }
    
        override fun normalization(configuration: Action<in InputNormalizationHandler>) =
            delegate.normalization(configuration)
    
        override fun project(path: String): Project =
            delegate.project(path)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputFilePropertyBuilder.java

         *
         * <p>
         * Line ending normalization is only supported with ASCII encoding and its supersets (i.e.
         * UTF-8, ISO-8859-1, etc). Other encodings (e.g. UTF-16) will be treated as binary files
         * and will not be subject to line ending normalization.
         * </p>
         *
         * @since 7.2
         */
        TaskInputFilePropertyBuilder normalizeLineEndings();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/ParameterAnnotationMember.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.normalization.java.impl;
    
    public class ParameterAnnotationMember extends AnnotationMember {
    
        private final int parameter;
    
        public ParameterAnnotationMember(String name, boolean visible, int parameter) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/AnnotationMember.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.normalization.java.impl;
    
    import com.google.common.collect.ComparisonChain;
    import com.google.common.collect.ImmutableSortedSet;
    
    import java.util.Collection;
    import java.util.SortedSet;
    import java.util.TreeSet;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. okhttp/build.gradle.kts

        "org.graalvm.nativeimage.hosted;resolution:=optional," +
        "sun.security.ssl;resolution:=optional,*",
      "Automatic-Module-Name: okhttp3",
      "Bundle-SymbolicName: com.squareup.okhttp3"
    )
    
    normalization {
      runtimeClasspath {
        /*
           - The below two ignored files are generated during test execution
           by the test: okhttp/src/test/java/okhttp3/osgi/OsgiTest.java
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 04 05:32:07 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/AnnotatableMember.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.normalization.java.impl;
    
    import com.google.common.collect.ComparisonChain;
    import com.google.common.collect.ImmutableSortedSet;
    
    import java.util.SortedSet;
    import java.util.TreeSet;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorTestSupportTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.normalization.java
    
    
    class ApiClassExtractorTestSupportTest extends ApiClassExtractorTestSupport {
    
        def "should create implementation class for #fqn"() {
            given:
            def clazz = toClass(fqn, src).clazz
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top