Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 181 for concDo (0.04 seconds)

  1. android/guava/src/com/google/common/io/MoreFiles.java

          SecureDirectoryStream<Path> dir) {
        Collection<IOException> exceptions = null;
        try {
          for (Path path : dir) {
            exceptions = concat(exceptions, deleteRecursivelySecure(dir, path.getFileName()));
          }
    
          return exceptions;
        } catch (DirectoryIteratorException e) {
          return addException(exceptions, e.getCause());
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Apr 14 16:07:06 GMT 2025
    - 34.6K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/primitives/Floats.java

            lenientFormat("min (%s) must be less than or equal to max (%s)", min, max));
      }
    
      /**
       * Returns the values from each provided array combined into a single array. For example, {@code
       * concat(new float[] {a, b}, new float[] {}, new float[] {c}} returns the array {@code {a, b,
       * c}}.
       *
       * @param arrays zero or more {@code float} arrays
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 16:38:16 GMT 2026
    - 25.6K bytes
    - Click Count (0)
  3. cmd/os_unix.go

    			}
    
    			typ = fi.Mode() & os.ModeType
    		}
    
    		var nameStr string
    		if typ.IsRegular() {
    			nameStr = string(name)
    		} else if typ.IsDir() {
    			// Use temp buffer to append a slash to avoid string concat.
    			tmp = tmp[:len(name)+1]
    			copy(tmp, name)
    			tmp[len(tmp)-1] = '/' // SlashSeparator
    			nameStr = string(tmp)
    		}
    
    		count--
    		entries = append(entries, nameStr)
    	}
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 9.3K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

                entity.setUpdatedBy(username);
                entity.setUpdatedTime(currentTime);
                BeanUtil.copyBeanToBean(form, entity,
                        op -> op.exclude(Stream.concat(Stream.of(Constants.COMMON_CONVERSION_RULE), Stream.of(Constants.PERMISSIONS))
                                .toArray(n -> new String[n])));
                final PermissionHelper permissionHelper = ComponentUtil.getPermissionHelper();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 23 23:57:26 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  5. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                                }
    
                                @Override
                                public Stream<Phase> allPhases() {
                                    return Stream.concat(
                                            Stream.of(this), phases().stream().flatMap(Lifecycle.Phase::allPhases));
                                }
    
                                @Override
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Sep 29 14:45:25 GMT 2025
    - 20.1K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/BwcVersions.java

                .filter(each -> unreleased.contains(each) == false)
                .collect(Collectors.toList());
        }
    
        public List<Version> getIndexCompatible() {
            var indexCompatibles = Stream.concat(
                groupByMajor.get(currentVersion.getMajor() - 1).stream(),
                groupByMajor.get(currentVersion.getMajor()).stream()
            ).collect(Collectors.toList());
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 16.8K bytes
    - Click Count (0)
  7. docs/fr/docs/tutorial/security/first-steps.md

    Revenons un peu en arrière et comprenons de quoi il s'agit.
    
    Le « flux » `password` est l'une des manières (« flows ») définies dans OAuth2 pour gérer la sécurité et l'authentification.
    
    OAuth2 a été conçu pour que le backend ou l'API puisse être indépendant du serveur qui authentifie l'utilisateur.
    
    Mais dans ce cas, la même application **FastAPI** gérera l'API et l'authentification.
    
    Voyons cela selon ce point de vue simplifié :
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 9.3K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ThirdPartyAuditTask.java

            }
    
            Set<String> jdkJarHellClasses = runJdkJarHellCheck();
    
            if (missingClassExcludes != null) {
                long bogousExcludesCount = Stream.concat(missingClassExcludes.stream(), violationsExcludes.stream())
                    .filter(each -> missingClasses.contains(each) == false)
                    .filter(each -> violationsClasses.contains(each) == false)
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 17 08:59:22 GMT 2021
    - 16.2K bytes
    - Click Count (0)
  9. docs/fr/docs/deployment/manually.md

    * [Hypercorn](https://hypercorn.readthedocs.io/) : un serveur ASGI compatible avec HTTP/2 et Trio entre autres fonctionnalités.
    * [Daphne](https://github.com/django/daphne) : le serveur ASGI conçu pour Django Channels.
    * [Granian](https://github.com/emmett-framework/granian) : un serveur HTTP Rust pour les applications Python.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 7.4K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/primitives/Doubles.java

            lenientFormat("min (%s) must be less than or equal to max (%s)", min, max));
      }
    
      /**
       * Returns the values from each provided array combined into a single array. For example, {@code
       * concat(new double[] {a, b}, new double[] {}, new double[] {c}} returns the array {@code {a, b,
       * c}}.
       *
       * @param arrays zero or more {@code double} arrays
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 16:38:16 GMT 2026
    - 27.8K bytes
    - Click Count (0)
Back to Top