Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for consuming (0.27 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                            'propertyName': 'output',
                        ]
                    }
                }
        }
    
        def "scheduled transformation is invoked before consuming task is executed"() {
            given:
            buildFile << declareAttributes() << multiProjectWithJarSizeTransform() << withJarTasks()
    
            when:
            succeeds ":util:resolve"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    	pods[6].Status.Phase = v1.PodRunning
    	kubelet.podWorkers.(*fakePodWorkers).terminated = map[types.UID]bool{
    		pods[6].UID: true,
    	}
    
    	// pod that is failed but still terminating is included (it may still be consuming
    	// resources)
    	pods[7].Status.Phase = v1.PodFailed
    	kubelet.podWorkers.(*fakePodWorkers).terminationRequested = map[types.UID]bool{
    		pods[7].UID: true,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    			return true
    		}
    	}
    	return false
    }
    
    // PodIsFinished returns true if SyncTerminatedPod is finished, ie.
    // all required node-level resources that a pod was consuming have
    // been reclaimed by the kubelet.
    func (kl *Kubelet) PodIsFinished(pod *v1.Pod) bool {
    	return kl.podWorkers.ShouldPodBeFinished(pod.UID)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	// if disableMemoryProfiling is set, update MemProfileRate to 0 to turn off memprofile.
    	// Note: parsedebugvars may update MemProfileRate, but when disableMemoryProfiling is
    	// set to true by the linker, it means that nothing is consuming the profile, it is
    	// safe to set MemProfileRate to 0.
    	if disableMemoryProfiling {
    		MemProfileRate = 0
    	}
    
    	// mcommoninit runs before parsedebugvars, so init profstacks again.
    	mProfStackInit(gp.m)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    		// previous mtime updates that happened more often.
    		// This is still not perfect - we ignore the error result, and if the file was
    		// unwritable for some reason then pretending to have written it is also
    		// confusing - but it's probably better than not doing the mtime update.
    		//
    		// But don't do that for the special case where building an executable
    		// with -linkshared implicitly installs all its dependent libraries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	}
    	host, _, err := net.SplitHostPort(h)
    	if err != nil {
    		return h // on error, return unchanged
    	}
    	return host
    }
    
    // Handler returns the handler to use for the given request,
    // consulting r.Method, r.Host, and r.URL.Path. It always returns
    // a non-nil handler. If the path is not in its canonical form, the
    // handler will be an internally-generated handler that redirects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    // not the vendored copy of an import "" (the empty import path).
    // This will allow people to have packages or commands named vendor.
    // This may help reduce breakage, or it may just be confusing. We'll see.
    func FindVendor(path string) (index int, ok bool) {
    	// Two cases, depending on internal at start of string or not.
    	// The order matters: we must return the index of the final element,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // request is made at the prefix to verify the <meta> tags match.
    //
    // The meta tag should appear as early in the file as possible.
    // In particular, it should appear before any raw JavaScript or CSS,
    // to avoid confusing the go command's restricted parser.
    //
    // The vcs is one of "bzr", "fossil", "git", "hg", "svn".
    //
    // The repo-root is the root of the version control system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top