Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1361 - 1370 of 1,540 for PUT (0.09 seconds)

  1. src/main/java/org/codelibs/core/collection/Maps.java

         * @param value the value to be added to the <code>Map</code>
         * @return this instance
         */
        public Maps<K, V> $(final K key, final V value) {
            map.put(key, value);
            return this;
        }
    
        /**
         * Returns the <code>Map</code>.
         *
         * @return the <code>Map</code> with the added keys and values
         */
        public Map<K, V> $() {
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jun 19 09:12:22 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  2. internal/event/target/redis.go

    func (target *RedisTarget) Save(eventData event.Event) error {
    	if target.store != nil {
    		_, err := target.store.Put(eventData)
    		return err
    	}
    	if err := target.init(); err != nil {
    		return err
    	}
    	_, err := target.isActive()
    	if err != nil {
    		return err
    	}
    	return target.send(eventData)
    }
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Mar 30 00:56:02 GMT 2025
    - 9.1K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/test/AntFixture.groovy

         * will have toString() called at execution time.
         */
        private final Map<String, Object> environment = new HashMap<>()
    
        void env(String key, Object value) {
            environment.put(key, value)
        }
    
        /** A flag to indicate whether the command should be executed from a shell. */
        @Internal
        boolean useShell = false
    
        @Internal
        int maxWaitInSeconds = 30
    
        /**
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 10.1K bytes
    - Click Count (0)
  4. android/guava-testlib/test/com/google/common/testing/GcFinalizationTest.java

        return new WeakReference<>(new Object());
      }
    
      public void testAwaitDone_finalizationPredicate() {
        WeakHashMap<Object, Object> map = new WeakHashMap<>();
        map.put(new Object(), Boolean.TRUE);
        GcFinalization.awaitDone(map::isEmpty);
        assertTrue(map.isEmpty());
      }
    
      // ----------------------------------------------------------------
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 8.8K bytes
    - Click Count (0)
  5. docs/fr/docs/tutorial/cors.md

    Vous pouvez également spécifier si votre backend autorise :
    
    * Les informations d’identification (en-têtes Authorization, cookies, etc.).
    * Des méthodes HTTP spécifiques (`POST`, `PUT`) ou toutes avec le caractère générique « * ».
    * Des en-têtes HTTP spécifiques ou tous avec le caractère générique « * ».
    
    {* ../../docs_src/cors/tutorial001_py310.py hl[2,6:11,13:19] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  6. docs/tr/docs/tutorial/body.md

    Bir **request** body tanımlamak için, tüm gücü ve avantajlarıyla [Pydantic](https://docs.pydantic.dev/) modellerini kullanırsınız.
    
    /// info | Bilgi
    
    Veri göndermek için şunlardan birini kullanmalısınız: `POST` (en yaygını), `PUT`, `DELETE` veya `PATCH`.
    
    `GET` request'i ile body göndermek, spesifikasyonlarda tanımsız bir davranıştır; yine de FastAPI bunu yalnızca çok karmaşık/uç kullanım senaryoları için destekler.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 6.9K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

            }
    
            final Map<String, Object> safeParamMap = paramMap != null ? paramMap : Collections.emptyMap();
    
            final Map<String, Object> bindingMap = new HashMap<>(safeParamMap);
            bindingMap.put("container", SingletonLaContainerFactory.getContainer());
    
            try {
                final CachedScript cached = getOrCompile(template);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

            Reference<ClassMap> ref = CLASS_MAPS.get(clazz);
            ClassMap classMap = ref != null ? ref.get() : null;
    
            if (classMap == null) {
                classMap = new ClassMap(clazz);
    
                CLASS_MAPS.put(clazz, new WeakReference<>(classMap));
            }
    
            return classMap;
        }
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 10.8K bytes
    - Click Count (0)
  9. docs/ko/docs/tutorial/cors.md

    * `CORSMiddleware`를 임포트합니다.
    * 허용된 출처(문자열)의 리스트를 생성합니다.
    * **FastAPI** 애플리케이션에 "미들웨어(middleware)"로 추가합니다.
    
    또한 백엔드가 다음을 허용할지 여부도 지정할 수 있습니다:
    
    * 자격 증명(Authorization 헤더, 쿠키 등).
    * 특정 HTTP 메서드(`POST`, `PUT`) 또는 와일드카드 `"*"`를 사용한 모든 메서드.
    * 특정 HTTP 헤더 또는 와일드카드 `"*"`를 사용한 모든 헤더.
    
    {* ../../docs_src/cors/tutorial001_py310.py hl[2,6:11,13:19] *}
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  10. docs/pt/docs/tutorial/body.md

    /// info | Informação
    
    Para enviar dados, você deveria usar um dos: `POST` (o mais comum), `PUT`, `DELETE` ou `PATCH`.
    
    Enviar um corpo em uma requisição `GET` não tem um comportamento definido nas especificações, porém é suportado pelo FastAPI, apenas para casos de uso bem complexos/extremos.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 7.2K bytes
    - Click Count (0)
Back to Top