Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 169 for Discovered (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	// JWT compliant tokens. The authenticator will attempt to parse a raw ID token,
    	// verify it's been signed by the configured issuer. The public key to verify the
    	// signature is discovered from the issuer's public endpoint using OIDC discovery.
    	// For an incoming token, each JWT authenticator will be attempted in
    	// the order in which it is specified in this list.  Note however that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	// JWT compliant tokens. The authenticator will attempt to parse a raw ID token,
    	// verify it's been signed by the configured issuer. The public key to verify the
    	// signature is discovered from the issuer's public endpoint using OIDC discovery.
    	// For an incoming token, each JWT authenticator will be attempted in
    	// the order in which it is specified in this list.  Note however that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. docs/en/docs/alternatives.md

        Although in FastAPI it's optional, and is used mainly to set headers, cookies, and alternative status codes.
    
    ### <a href="https://moltenframework.com/" class="external-link" target="_blank">Molten</a>
    
    I discovered Molten in the first stages of building **FastAPI**. And it has quite similar ideas:
    
    * Based on Python type hints.
    * Validation and documentation from these types.
    * Dependency Injection system.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    // reachable objects have been marked (that is, there are no grey
    // objects and can be no more in the future). Otherwise, it flushes
    // all local work to the global queues where it can be discovered by
    // other workers.
    //
    // This should be called when all local mark work has been drained and
    // there are no remaining workers. Specifically, when
    //
    //	work.nwait == work.nproc && !gcMarkWorkAvailable(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	// containing more information about the attached volume.
    	attachedVolumes map[v1.UniqueVolumeName]attachedVolume
    	// foundDuringReconstruction is a map of volumes which were discovered
    	// from kubelet root directory when kubelet was restarted.
    	foundDuringReconstruction map[v1.UniqueVolumeName]map[volumetypes.UniquePodName]types.UID
    
    	// volumePluginMgr is the volume plugin manager used to create volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

            }
            0 * conflictResolver._
    
            and:
            result.components == ids(root, selected, b, c)
        }
    
        def "restarts conflict resolution when later conflict on same module discovered"() {
            given:
            def selectedA = revision('a', '1.2')
            def evictedA1 = revision('a', '1.1')
            def evictedA2 = revision('a', '1.0')
            def selectedB = revision('b', '2.2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    One example *all* pom-based libraries already have are the _runtime_ and _compile_ variants, where Gradle can choose only one depending on the task at hand.
    Another of such alternatives discovered often in the Java ecosystems are jars targeting different Java versions.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. src/internal/fuzz/fuzz.go

    	minimizationAllowed bool
    
    	// inputQueue is a queue of inputs that workers should try fuzzing. This is
    	// initially populated from the seed corpus and cached inputs. More inputs
    	// may be added as new coverage is discovered.
    	inputQueue queue
    
    	// minimizeQueue is a queue of inputs that caused errors or exposed new
    	// coverage. Workers should attempt to find smaller inputs that do the
    	// same thing.
    	minimizeQueue queue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    cached per class loader. The Default LogFactory Implementation The Logging Package APIs include a default LogFactory implementation class ( org.apache.commons.logging.impl.LogFactoryImpl) that is selected if no other implementation class name can be discovered. Its primary purpose is to create (as necessary) and return Log instances in response to calls to the getInstance() method. The default implementation uses the following rules: At most one Log instance of the same name will be created. Subsequent...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  10. src/internal/poll/fd_windows.go

    	if len(b) > 0 {
    		fd.lastbits = make([]byte, len(b))
    		copy(fd.lastbits, b)
    	}
    	// syscall.WriteConsole seems to fail, if given large buffer.
    	// So limit the buffer to 16000 characters. This number was
    	// discovered by experimenting with syscall.WriteConsole.
    	const maxWrite = 16000
    	for len(runes) > 0 {
    		m := len(runes)
    		if m > maxWrite {
    			m = maxWrite
    		}
    		chunk := runes[:m]
    		runes = runes[m:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top