Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 521 - 530 of 654 for manage (0.05 seconds)

  1. guava-gwt/pom.xml

              <sourcepath>doesnotexist</sourcepath>
              <!-- Note that we do need to build Javadoc for *some* class. Otherwise, we get an empty Javadoc jar, which the Sonatype repository manager rejects. To avoid that, we've introduced a dummy class. But we made it package-private so that no one can depend on it. That in turn forced us to configure Javadoc to show package-private APIs. -->
              <show>package</show>
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jan 12 15:19:17 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  2. docs/es/docs/_llm-test.md

    * el kit de desarrollo de software
    
    * el `APIRouter`
    * el `requirements.txt`
    * el Bearer Token
    * el cambio incompatible
    * el bug
    * el botón
    * el invocable
    * el código
    * el commit
    * el context manager
    * la corrutina
    * la sesión de base de datos
    * el disco
    * el dominio
    * el motor
    * el X falso
    * el método HTTP GET
    * el ítem
    * el paquete
    * el lifespan
    * el lock
    * el middleware
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 12.2K bytes
    - Click Count (0)
  3. docs/ko/docs/advanced/events.md

    {* ../../docs_src/events/tutorial003_py310.py hl[14:19] *}
    
    함수의 첫 번째 부분, 즉 `yield` 이전의 코드는 애플리케이션이 시작되기 **전에** 실행됩니다.
    
    그리고 `yield` 이후의 부분은 애플리케이션이 종료된 **후에** 실행됩니다.
    
    ### 비동기 컨텍스트 매니저 { #async-context-manager }
    
    확인해 보면, 함수는 `@asynccontextmanager`로 데코레이션되어 있습니다.
    
    이는 함수를 "**비동기 컨텍스트 매니저**"라고 불리는 것으로 변환합니다.
    
    {* ../../docs_src/events/tutorial003_py310.py hl[1,13] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 9.1K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/job/CrawlJob.java

     * and data sources based on the configured crawling settings.
     *
     * <p>The job supports selective crawling by specifying configuration IDs for different
     * types of crawlers (web, file, data). It manages the crawler process lifecycle,
     * handles timeout scenarios, and ensures proper cleanup of resources.</p>
     *
     * <p>Key features:</p>
     * <ul>
     *   <li>Concurrent crawler process management with configurable limits</li>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 19.6K bytes
    - Click Count (0)
  5. docs/de/docs/tutorial/dependencies/dependencies-with-yield.md

    ## Kontextmanager { #context-managers }
    
    ### Was sind „Kontextmanager“ { #what-are-context-managers }
    
    „Kontextmanager“ (Englisch „Context Manager“) sind bestimmte Python-Objekte, die Sie in einer `with`-Anweisung verwenden können.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 14.4K bytes
    - Click Count (0)
  6. docs/ko/docs/_llm-test.md

    * deploy하다
    
    * SDK
    * software development kit
    
    * `APIRouter`
    * `requirements.txt`
    * Bearer Token
    * breaking change
    * bug
    * button
    * callable
    * code
    * commit
    * context manager
    * coroutine
    * database session
    * disk
    * domain
    * engine
    * fake X
    * HTTP GET method
    * item
    * library
    * lifespan
    * lock
    * middleware
    * mobile application
    * module
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  7. helm-releases/minio-1.0.2.tgz

    indent 4 }} {{- end }} {{- with .Values.consoleIngress.annotations }} annotations: {{ toYaml . | indent 4 }} {{- end }} spec: {{- if .Values.consoleIngress.tls }} tls: {{- range .Values.consoleIngress.tls }} - hosts: {{- range .hosts }} - {{ . | quote }} {{- end }} secretName: {{ .secretName }} {{- end }} {{- end }} rules: {{- range .Values.consoleIngress.hosts }} - http: paths: - path: {{ $ingressPath }} backend: serviceName: {{ $fullName }} servicePort: {{ $servicePort }} {{- if . }} host: {{ . |...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 24 18:58:05 GMT 2021
    - 13.6K bytes
    - Click Count (0)
  8. cmd/bucket-lifecycle.go

    func (j jentry) OpHash() uint64 {
    	return xxh3.HashString(j.TierName + j.ObjName)
    }
    
    func (e expiryTask) OpHash() uint64 {
    	return xxh3.HashString(e.objInfo.Bucket + e.objInfo.Name)
    }
    
    // expiryState manages all ILM related expiration activities.
    type expiryState struct {
    	mu      sync.RWMutex
    	workers atomic.Pointer[[]chan expiryOp]
    
    	ctx    context.Context
    	objAPI ObjectLayer
    
    	stats expiryStats
    }
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 33.7K bytes
    - Click Count (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt

        assertThat(parse(url, "ab=c\u0080d")).isNull()
        assertThat(parse(url, "a\u00ffb=cd")).isNull()
        assertThat(parse(url, "ab=c\u00ffd")).isNull()
      }
    
      @Test fun maxAge() {
        assertThat(parseCookie(50000L, url, "a=b; Max-Age=1")!!.expiresAt).isEqualTo(51000L)
        assertThat(parseCookie(50000L, url, "a=b; Max-Age=9223372036854724")!!.expiresAt)
          .isEqualTo(MAX_DATE)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Nov 01 12:18:11 GMT 2025
    - 24.4K bytes
    - Click Count (0)
  10. cmd/server-main.go

    				haddrs, err := globalDNSCache.LookupHost(ctx, host)
    				if err == nil {
    					ip = haddrs[0]
    				}
    			}
    		}
    		ifs, _ := net.Interfaces()
    		for _, interf := range ifs {
    			addrs, err := interf.Addrs()
    			if err == nil {
    				for _, addr := range addrs {
    					if strings.SplitN(addr.String(), "/", 2)[0] == ip {
    						globalInternodeInterface = interf.Name
    					}
    				}
    			}
    		}
    	})
    }
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue May 27 15:18:36 GMT 2025
    - 35.9K bytes
    - Click Count (4)
Back to Top