Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 276 for recurse (0.18 sec)

  1. .idea/inspectionProfiles/Gradle.xml

          <replaceConfiguration name="Join combined with collect" suppressId="join_with_collect" problemDescriptor="Use a `join` method overload" text="$callJoin$($sep$, $callCollect$($src$, $transform$))" recursive="false" caseInsensitive="false" type="JAVA" pattern_context="default" reformatAccordingToStyle="true" shortenFQN="true" useStaticImport="true" replacement="org.gradle.util.internal.CollectionUtils.join($sep$, $src$, $transform$)">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. src/go/types/infer.go

    // than type parameters, and params and args must match in number (incl. zero).
    // If reverse is set, an error message's contents are reversed for a better error message for some
    // errors related to reverse type inference (where the function call is synthetic).
    // If successful, infer returns the complete list of given and inferred type arguments, one for each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. .idea/inspectionProfiles/idea_default.xml

            <constraint name="__context__" within="" contains="" />
            <constraint name="runnable" within="" contains="" />
          </searchConfiguration>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 09 20:59:03 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

                throw new UncheckedIOException(e);
            }
        }
    
        public static Collection<File> listFiles(File directory, String[] extensions, boolean recursive) {
            logDeprecation();
            return FileUtils.listFiles(directory, extensions, recursive);
        }
    
        public static List<String> toPaths(Collection<File> files) {
            logDeprecation();
            List<String> paths = new ArrayList<String>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Converter.java

    /**
     * A function from {@code A} to {@code B} with an associated <i>reverse</i> function from {@code B}
     * to {@code A}; used for converting back and forth between <i>different representations of the same
     * information</i>.
     *
     * <h3>Invertibility</h3>
     *
     * <p>The reverse operation <b>may</b> be a strict <i>inverse</i> (meaning that {@code
     * converter.reverse().convert(converter.convert(a)).equals(a)} is always true). However, it is very
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

            final Object recursive = dataMap.remove(getParamValue(paramMap, "field.recursive", "recursive"));
            if (recursive == null || Constants.FALSE.equalsIgnoreCase(recursive.toString())) {
                return 1L;
            }
            if (Constants.TRUE.equalsIgnoreCase(recursive.toString())) {
                return -1L;
            }
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    	return wc, nil
    }
    
    func (w *watcher) createWatchChan(ctx context.Context, key string, rev int64, recursive, progressNotify bool, pred storage.SelectionPredicate) *watchChan {
    	wc := &watchChan{
    		watcher:           w,
    		key:               key,
    		initialRev:        rev,
    		recursive:         recursive,
    		progressNotify:    progressNotify,
    		internalPred:      pred,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

        if (!parentBuilder.getFeatures().contains(NoRecurse.DESCENDING)) {
          derivedSuites.add(createDescendingSuite(parentBuilder));
        }
    
        if (parentBuilder.getFeatures().contains(SERIALIZABLE)) {
          derivedSuites.add(createReserializedSuite(parentBuilder));
        }
    
        if (!parentBuilder.getFeatures().contains(NoRecurse.SUBMULTISET)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. cmd/metacache-set_gen.go

    			}
    		case "InclDeleted":
    			z.InclDeleted, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "InclDeleted")
    				return
    			}
    		case "Recursive":
    			z.Recursive, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Recursive")
    				return
    			}
    		case "Separator":
    			z.Separator, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "Separator")
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 20:23:12 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        void "allows non-recursive resource filter"() {
            given:
            buildScript """
    apply plugin: 'java'
    apply plugin: 'eclipse'
    
    eclipse {
      project {
        resourceFilter {
          appliesTo = 'FOLDERS'
          type = 'INCLUDE_ONLY'
          recursive = false
          matcher {
            id = 'org.eclipse.some.custom.matcher'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top