Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,952 for createId (0.2 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/DefaultLoggingManagerFactory.java

            rootManager = newManager();
        }
    
        public LoggingManagerInternal getRoot() {
            return rootManager;
        }
    
        @Override
        public LoggingManagerInternal create() {
            if (!created) {
                created = true;
                return getRoot();
            }
            return newManager();
        }
    
        private DefaultLoggingManager newManager() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/TestCharacterListGenerator.java

      }
    
      @Override
      public List<Character> create(Object... elements) {
        Character[] array = new Character[elements.length];
        int i = 0;
        for (Object e : elements) {
          array[i++] = (Character) e;
        }
        return create(array);
      }
    
      /**
       * Creates a new collection containing the given elements; implement this method instead of {@link
       * #create(Object...)}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/kotlin/build.gradle.kts

    repositories {
        mavenCentral()
    }
    
    val codec = configurations.create("codec") {
        attributes {
            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
        }
        isVisible = false
        isCanBeConsumed = false
    }
    
    dependencies {
        codec("commons-codec:commons-codec:1.10")
    }
    
    tasks.register<CreateMD5>("md5") {
        codecClasspath.from(codec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 514 bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherProbeRegistry.java

     *
     * When the hierarchy is first registered via {@link #registerProbe(File)}, we don't yet create the probe.
     * That only happens when the hierarchy is actually read or written by Gradle, in which case
     * {@link #armWatchProbe(File)} is called.
     *
     * When the probe is armed, a probe file is created (or re-created) under the hierarchy.
     * This should cause a file system event to be produced by the operating system.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinCompositeProviderFactory.kt

        private val emptyProvider: P,
        private val composeProviders: (List<P>) -> P,
    ) {
        public fun create(providers: List<P>): P = when (providers.size) {
            0 -> emptyProvider
            1 -> providers.single()
            else -> composeProviders(providers)
        }
    
        public fun createFlattened(providers: List<P>): P =
            create(if (providers.size > 1) flatten(providers) else providers)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/ProblemFactory.kt

        /**
         * Creates a problem with the given message and exception.
         *
         * Problem has no documentation, and a default location is inferred from the calling thread's state.
         */
        fun problem(message: StructuredMessage, exception: Throwable? = null, documentationSection: DocumentationSection? = null): PropertyProblem
    
        /**
         * Creates a problem with the given message.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

         *     or the link is removed and a new directory is created (if {@code followSymlinks}
         *     is {@code false}),</li>
         *     <li>a file, or a symlink to an existing file, it is deleted and a directory is created in its place,</li>
         *     <li>non-existent, then a directory is created in its place.</li>
         * </ul>
         *
         * Follows symlinks pointing to directories when instructed to.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtDestructuringDeclarationSymbol.kt

    import org.jetbrains.kotlin.analysis.api.symbols.markers.KaSymbolWithKind
    import org.jetbrains.kotlin.analysis.api.symbols.pointers.KaSymbolPointer
    
    /**
     *  A [KaSymbol] created from a [destructuring declaration][org.jetbrains.kotlin.psi.KtDestructuringDeclaration] (possibly from a lambda parameter).
     *
     * Examples:
     * - `val (a, _) = Pair(1, 2)` leads to `KaDestructuringDeclarationSymbol(entries = [a, _])`
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

        /**
         * Loads a cached intermediate model, if available, or else runs the given function to create it and then writes the result to the cache.
         *
         * @param identityPath The project for which the model should be created, or null for a build scoped model.
         */
        fun <T> loadOrCreateIntermediateModel(identityPath: Path?, modelName: String, parameter: ToolingModelParameterCarrier?, creator: () -> T?): T?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/BuildScopeModelBuilder.java

    import org.gradle.internal.build.BuildState;
    
    public interface BuildScopeModelBuilder {
        /**
         * Creates the model for the given target. The target build will not necessarily have been configured.
         * This method is responsible for transitioning the target into the appropriate state required to create the model.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 14 21:39:26 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top