Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for Discovered (0.13 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21325")
        def "finalizer can have dependencies that are not reachable from first discovered finalized task and reachable from second discovered finalized task"() {
            buildFile '''
                task classes(type: BreakingTask) {
                }
    
                task jar(type: BreakingTask) {
                    dependsOn classes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector.go

    			logger.V(4).Info("reset restmapper")
    
    			// Perform the monitor resync and wait for controllers to report cache sync.
    			//
    			// NOTE: It's possible that newResources will diverge from the resources
    			// discovered by restMapper during the call to Reset, since they are
    			// distinct discovery clients invalidated at different times. For example,
    			// newResources may contain resources not returned in the restMapper's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

        }
    
        private void assertHasRecreateReason(HasBuildActions details, HasInvalidationReason invalidationDetails) {
            // Inputs can be discovered in parallel, so require that any one of the changed inputs is reported
    
            def reasons = []
            invalidationDetails.changedFiles.each { file ->
                reasons.add("file '${file.replace('/', File.separator)}'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

        var i = 0
        while (i < references.size) {
          val reference = references[i]
    
          if (reference.get() != null) {
            i++
            continue
          }
    
          // We've discovered a leaked call. This is an application bug.
          val callReference = reference as CallReference
          val message =
            "A connection to ${connection.route().address.url} was leaked. " +
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. architecture/ambient/ztunnel.md

    Ztunnel will request certificates for all identities on the node.
    It determines this based on the Workload xDS configuration it receives.
    When a new identity is discovered on the node, it will be enqueued for fetching at a low priority, as an optimization.
    However, if a request needs a certain identity that we have not fetched yet, it will be immediately requested.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

      return clusters;
    }
    
    // -------------------------------------------------------------------------- //
    // Create `tf_device.cluster` operation from the discovered ops cluster.
    // -------------------------------------------------------------------------- //
    
    tf_device::ClusterOp CreateClusterOp(Cluster &cluster, StringAttr policy) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top