Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 147 for getDirs (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServices.java

        DefaultGlobalScopedCacheBuilderFactory createGlobalScopedCache(GlobalCacheDir globalCacheDir, UnscopedCacheBuilderFactory unscopedCacheBuilderFactory) {
            return new DefaultGlobalScopedCacheBuilderFactory(globalCacheDir.getDir(), unscopedCacheBuilderFactory);
        }
    
        @Provides
        ScopedListenerManager createListenerManager(ScopedListenerManager parent) {
            return parent.createChild(Scope.UserHome.class);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/collection/SLinkedList.java

         */
        public SLinkedList() {
            header.next = header;
            header.previous = header;
        }
    
        /**
         * 最初の要素を返します。
         *
         * @return 最初の要素
         */
        public E getFirst() {
            if (isEmpty()) {
                throw new NoSuchElementException();
            }
            return getFirstEntry().element;
        }
    
        /**
         * 最後の要素を返します。
         *
         * @return 最後の要素
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

            final String value = clientConfigMap.get(CRAWLER_CLIENTS);
            final CrawlerClient client = getClientRuleList(value).stream().map(e -> {
                if (e.getSecond().matcher(url).matches()) {
                    return e.getFirst();
                }
                return null;
            }).filter(StringUtil::isNotBlank).findFirst()//
                    .map(s -> clientFactory.getClient(s + ":" + url))//
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    * Many other types extend `Provider` and can be used wherever a `Provider` is required.
    
    [[managed_properties]]
    == Using Gradle Managed Properties
    
    Gradle's managed properties allow you to declare properties as abstract getters (Java, Groovy) or abstract properties (Kotlin).
    
    Gradle then automatically provides the implementation for these properties, managing their state.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      //  3. block_size of for the space to depth transform for these convolutions
      //     are larger than 1.
      for (auto argnum_and_convolution : argnum_and_convolutions) {
        auto arg_num = argnum_and_convolution.getFirst();
        auto conv2d_and_block_sizes = argnum_and_convolution.getSecond();
        // Continue if number of users of the block argment doesn't equal to number
        // of transformable convolutions and there is no qualified convolution
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            final Pair<String, String>[] designJspFileNames = systemHelper.getDesignJspFileNames();
            assertEquals(1, designJspFileNames.length);
            assertEquals("xxx", designJspFileNames[0].getFirst());
            assertEquals("yyy", designJspFileNames[0].getSecond());
        }
    
        public void test_setForceStop() {
            assertFalse(systemHelper.isForceStop());
            systemHelper.setForceStop(true);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

                }
            """
    
            when:
            succeeds 'taskWithInputs'
    
            then:
            skipped(':taskWithInputs')
        }
    
        @ToBeImplemented("Private getters should be ignored")
        def "private inputs can be overridden in subclass"() {
            given:
            buildFile << '''
                abstract class MyBaseTask extends DefaultTask {
    
                    @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ResolveState.java

            });
            selectorState.update(dependencyState);
            return selectorState;
        }
    
        @Nullable
        public NodeState peek() {
            return queue.isEmpty() ? null : queue.getFirst();
        }
    
        public NodeState pop() {
            NodeState next = queue.removeFirst();
            return next.dequeue();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                final List<String> roles = new ArrayList<>();
    
                for (final Pair<String, String> searchFieldLog : searchLog.getSearchFieldLogList()) {
                    final String name = searchFieldLog.getFirst();
                    if (contentFieldNameSet.contains(name)) {
                        if (sb.length() > 0) {
                            sb.append(TEXT_SEP);
                        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

            private static final int PUBLIC_STATIC_FINAL = Opcodes.ACC_PUBLIC | Opcodes.ACC_STATIC | Opcodes.ACC_FINAL;
            private String className;
            /**
             * We only add getters for `public static final String` constants. This is because in
             * the converted classes only contain these kinds of constants.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top