Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for isActive (0.11 sec)

  1. settings.gradle.kts

    // Internal utility and verification projects
    unassigned {
        subproject("internal-build-reports")
    }
    
    rootProject.name = "gradle"
    
    FeaturePreviews.Feature.values().forEach { feature ->
        if (feature.isActive) {
            enableFeaturePreview(feature.name)
        }
    }
    
    fun remoteBuildCacheEnabled(settings: Settings) = settings.buildCache.remote?.isEnabled == true
    
    fun getBuildJavaHome() = System.getProperty("java.home")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	"path/filepath"
    	"strings"
    	"time"
    
    	"golang.org/x/telemetry/internal/config"
    	"golang.org/x/telemetry/internal/counter"
    	"golang.org/x/telemetry/internal/telemetry"
    )
    
    // reports generates reports from inactive count files
    func (u *uploader) reports(todo *work) ([]string, error) {
    	if mode, _ := u.dir.Mode(); mode == "off" {
    		return nil, nil // no reports
    	}
    	thisInstant := u.startTime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/inline.go

    look for link or image:
    
    	find topmost [ or ![
    	if none, emit literal ]
    	if its inactive, remove and emit literal ]
    	parse ahead to look for rest of link; if none, remove and emit literal ]
    	run process emphasis on the interior,
    	remove opener
    	if this was a link (not an image), set all [ before opener to inactive, to avoid links inside links
    
    process emphasis
    
    	walk forward in list to find a closer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    		}
    	}
    
    	// Assume we removed the containers so that we're not too aggressive.
    	return containers[:numToKeep]
    }
    
    // removeOldestNSandboxes removes the oldest inactive toRemove sandboxes and
    // returns the resulting slice.
    func (cgc *containerGC) removeOldestNSandboxes(ctx context.Context, sandboxes []sandboxGCInfo, toRemove int) {
    	numToKeep := len(sandboxes) - toRemove
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. pkg/kubelet/pleg/generic.go

    func (g *GenericPLEG) updateCache(ctx context.Context, pod *kubecontainer.Pod, pid types.UID) (error, bool) {
    	if pod == nil {
    		// The pod is missing in the current relist. This means that
    		// the pod has no visible (active or inactive) containers.
    		klog.V(4).InfoS("PLEG: Delete status for pod", "podUID", string(pid))
    		g.cache.Delete(pid)
    		return nil, true
    	}
    
    	g.podCacheMutex.Lock()
    	defer g.podCacheMutex.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. cmd/bucket-lifecycle.go

    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/s3select"
    	xnet "github.com/minio/pkg/v3/net"
    	"github.com/zeebo/xxh3"
    )
    
    const (
    	// Disabled means the lifecycle rule is inactive
    	Disabled = "Disabled"
    	// TransitionStatus status of transition
    	TransitionStatus = "transition-status"
    	// TransitionedObjectName name of transitioned object
    	TransitionedObjectName = "transitioned-object"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top