Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 112 for Conventions (0.74 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/HasConvention.java

    /**
     * Demarcates objects that expose a convention.
     *
     * Convention objects aren't going to be around forever, so this is a temporary interface.
     *
     * @deprecated Use extensions instead. This interface is scheduled for removal in Gradle 9.
     * @see org.gradle.api.plugins.ExtensionAware
     */
    @Deprecated
    public interface HasConvention {
        org.gradle.api.plugins.Convention getConvention();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionPropertyInternal.java

        /**
         * Adds an element to the property value.
         *
         * <p>
         * When invoked on a property with no value, this method first sets the value
         * of the property to its current convention value, if set, or an empty collection.
         * </p>
         *
         * @param element The element
         */
        @Incubating
        void append(T element);
    
        /**
         * Adds an element to the property value.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/CaseFormat.java

        }
      },
    
      /** Java variable naming convention, e.g., "lowerCamel". */
      LOWER_CAMEL(CharMatcher.inRange('A', 'Z'), "") {
        @Override
        String normalizeWord(String word) {
          return firstCharOnlyToUpper(word);
        }
    
        @Override
        String normalizeFirstWord(String word) {
          return Ascii.toLowerCase(word);
        }
      },
    
      /** Java and C++ class naming convention, e.g., "UpperCamel". */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 19 20:20:14 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/FileCollectionConventionMappingIntegrationTest.groovy

     */
    
    package org.gradle.api.provider
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class FileCollectionConventionMappingIntegrationTest extends AbstractIntegrationSpec {
        def "convention mapping can be used with Configurable File Collection and an actual value"() {
            buildFile << """
                abstract class MyTask extends DefaultTask {
                    @Internal abstract ConfigurableFileCollection getFoo()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 20:10:55 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapPropertyInternal.java

        /**
         * Adds a map entry to the property value.
         *
         * <p>
         * When invoked on a property with no value, this method first sets the value
         * of the property to its current convention value, if set, or an empty map.
         * </p>
         *
         * @param key the key
         * @param value the value
         */
        @Incubating
        void insert(K key, V value);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/syms.go

    // must follow the internal calling convention.
    func LookupRuntimeFunc(name string) *obj.LSym {
    	return LookupRuntimeABI(name, obj.ABIInternal)
    }
    
    // LookupRuntimeVar looks up a variable (or assembly function) name in package
    // runtime. If this is a function, it may have a special calling
    // convention.
    func LookupRuntimeVar(name string) *obj.LSym {
    	return LookupRuntimeABI(name, obj.ABI0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:13 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/CaseFormat.java

        }
      },
    
      /** Java variable naming convention, e.g., "lowerCamel". */
      LOWER_CAMEL(CharMatcher.inRange('A', 'Z'), "") {
        @Override
        String normalizeWord(String word) {
          return firstCharOnlyToUpper(word);
        }
    
        @Override
        String normalizeFirstWord(String word) {
          return Ascii.toLowerCase(word);
        }
      },
    
      /** Java and C++ class naming convention, e.g., "UpperCamel". */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 19 20:20:14 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProperty.java

        }
    
        @Override
        public Property<T> convention(@Nullable T value) {
            if (value == null) {
                setConvention(Providers.notDefined());
            } else {
                setConvention(Providers.fixedValue(getValidationDisplayName(), value, type, sanitizer));
            }
            return this;
        }
    
        @Override
        public Property<T> convention(Provider<? extends T> provider) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java

                task.into(extension.getDocumentationRenderedRoot());
            });
    
            extension.getSourceRoot().convention(layout.getProjectDirectory().dir("src/docs"));
            extension.getDocumentationRenderedRoot().convention(layout.getBuildDirectory().dir("docs"));
            extension.getStagingRoot().convention(layout.getBuildDirectory().dir("working"));
    
            ConfigurableFileTree css = objects.fileTree();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 20:04:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-configuration/src/main/java/org/gradle/internal/buildconfiguration/DaemonJvmPropertiesConfigurator.java

                    task.setDescription("Generates or updates the Gradle Daemon JVM criteria.");
                    task.getPropertiesFile().convention(project.getLayout().getProjectDirectory().file(DaemonJvmPropertiesDefaults.DAEMON_JVM_PROPERTIES_FILE));
                    task.getJvmVersion().convention(DaemonJvmPropertiesDefaults.TOOLCHAIN_VERSION);
                });
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top