Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1441 - 1450 of 1,540 for PUT (0.02 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

                                && ((parameterForImplementation != null) && !parameterForImplementation.isEmpty())) {
                            attributes.put("implementation", parameter.getImplementation());
                        }
    
                        parameterConfiguration = XmlNode.newInstance(
                                parameter.getName(),
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Mar 25 09:45:07 GMT 2025
    - 26.7K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

          checkNotNull(executor);
          if (closeable == null) {
            return;
          }
          synchronized (this) {
            if (!closed) {
              put(closeable, executor);
              return;
            }
          }
          closeQuietly(closeable, executor);
        }
    
        /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 101.7K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/chat/ChatSessionManager.java

         * @return the created session
         */
        public ChatSession createSession(final String userId) {
            final ChatSession session = new ChatSession(userId);
            sessionCache.put(session.getSessionId(), session);
            if (logger.isDebugEnabled()) {
                logger.debug("Created chat session: sessionId={}, userId={}", session.getSessionId(), userId);
            }
            enforceMaxSize();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/ldap/LdapUserTest.java

        private Hashtable<String, String> testEnv;
    
        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
            testEnv = new Hashtable<>();
            testEnv.put("test.key", "test.value");
            ldapUser = new LdapUser(testEnv, "testuser");
    
            ComponentUtil.register(new SystemHelper(), "systemHelper");
    
            // Register a mock LdapManager to avoid NPE
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.9K bytes
    - Click Count (0)
  5. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

                }
    
                lifecycleMappings = new HashMap<>();
    
                for (Lifecycle lifecycle : lifecycleConfiguration.getLifecycles()) {
                    lifecycleMappings.put(lifecycle.getId(), lifecycle);
                }
            }
            return lifecycleMappings;
        }
    
        private InputStream getDescriptorStream(String descriptor) throws IOException {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 16.2K bytes
    - Click Count (0)
  6. docs/es/docs/features.md

    * [**OpenAPI**](https://github.com/OAI/OpenAPI-Specification) para la creación de APIs, incluyendo declaraciones de <dfn title="también conocido como: endpoints, rutas">path</dfn> <dfn title="también conocido como métodos HTTP, como POST, GET, PUT, DELETE">operations</dfn>, parámetros, request bodies, seguridad, etc.
    * Documentación automática de modelos de datos con [**JSON Schema**](https://json-schema.org/) (ya que OpenAPI en sí mismo está basado en JSON Schema).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/SplitPackagesAuditTask.java

            Map<File, String> buildDirs = new HashMap<>();
            for (Project project : getProject().getRootProject().getAllprojects()) {
                buildDirs.put(project.getBuildDir(), project.getPath());
            }
            return buildDirs;
        }
    
        @CompileClasspath
        public FileCollection getClasspath() {
            return classpath.filter(File::exists);
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 08 22:04:23 GMT 2021
    - 14.2K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

                converters.add(converter);
            } else {
                for (final CharSequence name : propertyNames) {
                    assertArgumentNotEmpty("element of propertyNames", name);
                    converterMap.put(name.toString(), converter);
                }
            }
            return this;
        }
    
        /**
         * Sets a converter for dates.
         *
         * @param pattern
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat Jul 05 00:11:05 GMT 2025
    - 17.5K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/BwcVersions.java

            assertNoOlderThanTwoMajors();
    
            Map<Version, UnreleasedVersionInfo> unreleased = new HashMap<>();
            for (Version unreleasedVersion : getUnreleased()) {
                unreleased.put(
                    unreleasedVersion,
                    new UnreleasedVersionInfo(unreleasedVersion, getBranchFor(unreleasedVersion), getGradleProjectPathFor(unreleasedVersion))
                );
            }
    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)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ConnectPlan.kt

        // 3 different lookups in the connection pool!
        val pooled3 = routePlanner.planReusePooledConnection(this, routes)
        if (pooled3 != null) return pooled3.connection
    
        connection.withLock {
          connectionPool.put(connection)
          call.acquireConnectionNoEvents(connection)
        }
    
        call.eventListener.connectionAcquired(call, connection)
        connection.connectionListener.connectionAcquired(connection, call)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 19.3K bytes
    - Click Count (2)
Back to Top