Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 949 for discovered (0.25 sec)

  1. cluster/addons/calico-policy-controller/felixconfigurations-crd.yaml

                      number and cluster size to projectcalico.org. Logs warnings returned
                      by the usage server. For example, if a significant security vulnerability
                      has been discovered in the version of Calico being used. [Default:
                      true]'
                    type: boolean
                  usageReportingInitialDelay:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 29.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

            bindings.nodeCreated(node)
        }
    
        private void addProjections(TestNode node, ModelProjection... projections) {
            projections.each { node.addProjection it }
            node.setState(ModelNode.State.Discovered)
            bindings.nodeDiscovered(node)
        }
    
        void removeNode(TestNode node) {
            bindings.remove(node)
        }
    
        TestNode node(String path, Class type = Object) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K 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. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    instances for this application. This is normally accomplished by calling the static getFactory() method. This method implements the following discovery algorithm to select the name of the LogFactory implementation class this application wants to use: Check for a system property named org.apache.commons.logging.LogFactory. Use the JDK 1.3 JAR Services Discovery mechanism (see http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html for more information) to look for a resource named META-INF/services/or...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 37.1K 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

    Another of such alternatives discovered often in the Java ecosystems are jars targeting different Java versions.
    
    As example, we look at version 0.7.9 of the asynchronous programming library Quasar published on link:https://repo1.maven.org/maven2/co/paralleluniverse/quasar-core/0.7.9[Maven central].
    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. 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)
  9. cmd/kubeadm/app/discovery/discovery.go

    	switch {
    	case cfg.Discovery.File != nil:
    		kubeConfigPath := cfg.Discovery.File.KubeConfigPath
    		if isHTTPSURL(kubeConfigPath) {
    			return https.RetrieveValidatedConfigInfo(kubeConfigPath, timeout)
    		}
    		return file.RetrieveValidatedConfigInfo(kubeConfigPath, timeout)
    	case cfg.Discovery.BootstrapToken != nil:
    		return token.RetrieveValidatedConfigInfo(&cfg.Discovery, timeout)
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. 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)
Back to top