Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Truly (0.04 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            // should (we expose the Map). We should provide a better API for ExcludeRule (I don't want to use unmodifiable Map).
            // As soon as DefaultExcludeRule is truly immutable, we don't need to create a new instance of DefaultExcludeRule.
            for (ExcludeRule excludeRule : getAllExcludeRules()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    === Example: Reconfigure tool arguments
    
    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    	//
    	// When called from the goroutine coordinating the profile, we still have
    	// set gp1.goroutineProfiled to goroutineProfileInProgress and so are still
    	// preventing it from being truly _Grunnable. So we'll use the system stack
    	// to avoid schedule delays.
    	systemstack(func() { saveg(^uintptr(0), ^uintptr(0), gp1, &goroutineProfile.records[offset], pcbuf) })
    
    	if goroutineProfile.labels != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/html/template/exec_test.go

    }
    
    const testTemplates = `{{define "one"}}one{{end}}{{define "two"}}two{{end}}`
    
    func TestMessageForExecuteEmpty(t *testing.T) {
    	// Test a truly empty template.
    	tmpl := New("empty")
    	var b bytes.Buffer
    	err := tmpl.Execute(&b, 0)
    	if err == nil {
    		t.Fatal("expected initial error")
    	}
    	got := err.Error()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		// details.
    		return nil, true, true, out, lastExisting
    	case errDeleteNow:
    		// we've updated the object to have a zero grace period, or it's already at 0, so
    		// we should fall through and truly delete the object.
    		return nil, false, true, out, lastExisting
    	case errAlreadyDeleting:
    		out, err = e.finalizeDelete(ctx, in, true, options)
    		return err, false, false, out, lastExisting
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue.go

    func isPodResourcesResizedDown(pod *v1.Pod) bool {
    	if utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    		// TODO(vinaykul,wangchen615,InPlacePodVerticalScaling): Fix this to determine when a
    		// pod is truly resized down (might need oldPod if we cannot determine from Status alone)
    		if pod.Status.Resize == v1.PodResizeStatusInProgress {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. src/text/template/exec_test.go

    }
    
    const testTemplates = `{{define "one"}}one{{end}}{{define "two"}}two{{end}}`
    
    func TestMessageForExecuteEmpty(t *testing.T) {
    	// Test a truly empty template.
    	tmpl := New("empty")
    	var b bytes.Buffer
    	err := tmpl.Execute(&b, 0)
    	if err == nil {
    		t.Fatal("expected initial error")
    	}
    	got := err.Error()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    // which means an orphaned pod (no config) is terminated and we can exit. Since orphaned
    // pods have no API representation, we want to exit the loop at this point and ensure no
    // status is present afterwards - the running pod is truly terminated when this is invoked.
    func (p *podWorkers) completeTerminatingRuntimePod(podUID types.UID) {
    	p.podLock.Lock()
    	defer p.podLock.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top