Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,953 for createId (0.17 sec)

  1. android/guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java

        this.nameFormat = nameFormat;
        return this;
      }
    
      /**
       * Sets daemon or not for new threads created with this ThreadFactory.
       *
       * @param daemon whether or not new Threads created with this ThreadFactory will be daemon threads
       * @return this for the builder pattern
       */
      @CanIgnoreReturnValue
      public ThreadFactoryBuilder setDaemon(boolean daemon) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 10 21:56:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ClassGenerator.java

            List<GeneratedConstructor<T>> getConstructors();
    
            /**
             * Creates a serialization constructor. Note: this can be expensive and does not perform any caching.
             */
            SerializationConstructor<T> getSerializationConstructor(Class<? super T> baseClass);
        }
    
        interface SerializationConstructor<T> {
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/jansi/JansiLibraryFactoryTest.groovy

        def resolver = Mock(JansiRuntimeResolver)
    
        def setup() {
            factory.jansiRuntimeResolver = resolver
        }
    
        def "jansi library can be created for MacOSX"() {
            when:
            JansiLibrary jansiLibrary = factory.create()
    
            then:
            1 * resolver.operatingSystem >> JansiOperatingSystemSupport.MAC_OS_X.identifier
            0 * resolver.platform
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/ChmodBenchmark.java

        }
    
        @Benchmark
        public void createFileJava6(Blackhole blackhole) throws IOException {
            File file = new File(tempDirFile, "file-" + counter.incrementAndGet());
            boolean created = file.createNewFile();
            blackhole.consume(created);
        }
    
        @Benchmark
        public void createFileJava7(Blackhole blackhole) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/toolingApi-operation.puml

    LazyConsumer -> ToolingImplLoader: createConnection
    create Connection
    ToolingImplLoader -> Connection: new
    Connection --> LazyConsumer: connection
    note left
    uses DistributionFactory to create classloader and instantiate DefaultConnection (provider side) using services lookup
    then creates ConsumerConnection matching to capability of this DefaultConnection (DefaultToolingImplementationLoader.create())
    ConnectionVersion4BackedConsumerConnection.java: pre 1.0m8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. architecture/build-state-model.md

    The build session state is managed by the `BuildSessionState` class.
    An instance is created at the start of a Gradle invocation and discarded at the end of that invocation.
    
    The build session state also includes "cross session" state that is shared with any "nested" sessions that need to be created.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmManager.java

         *
         * @return The class realm exposing the Maven API, never {@code null}.
         */
        ClassRealm getMavenApiRealm();
    
        /**
         * Creates a new class realm for the specified project and its build extensions.
         *
         * @param model The model of the project for which to create a realm, must not be {@code null}.
         * @param artifacts The artifacts to add to the class realm, may be {@code null}. Unresolved artifacts (i.e. with a
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/api/PropertiesFileContentMerger.java

         * The {@link Properties} are passed to the closure as a parameter.
         * The closure can modify the Properties before they are written to the output file.
         * <p>
         * For examples see docs for {@link org.gradle.plugins.ide.eclipse.model.EclipseJdt} and others.
         *
         * @param closure The closure to execute when the Properties have been created.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/api/XmlFileContentMerger.java

         */
        public void withXml(@DelegatesTo(XmlProvider.class) Closure closure) {
            xmlTransformer.addAction(closure);
        }
    
        /**
         * Adds an action to be called when the file has been created.
         * <p>
         * See {@link #withXml(Closure)}
         *
         * @param action The action to execute when the XML has been created.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsbhv/BsElevateWordBhv.java

        public int selectCount(CBCall<ElevateWordCB> cbLambda) {
            return facadeSelectCount(createCB(cbLambda));
        }
    
        public OptionalEntity<ElevateWord> selectEntity(CBCall<ElevateWordCB> cbLambda) {
            return facadeSelectEntity(createCB(cbLambda));
        }
    
        protected OptionalEntity<ElevateWord> facadeSelectEntity(ElevateWordCB cb) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top