Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,615 for listOps (0.2 sec)

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

            downloadOps[3].result.bytesRead == m.artifact.file.length()
    
            def listOps = buildOperations.all(ExternalResourceListBuildOperationType)
            listOps.size() == 2
            listOps[0].details.location == missingDir.uri.toString()
            listOps[1].details.location == dir.uri.toString()
    
            def artifactsOps = buildOperations.all(ResolveArtifactsBuildOperationType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/listers.go

    	// IsPVCUsedByPods returns true/false on whether the PVC is used by one or more scheduled pods,
    	// keyed in the format "namespace/name".
    	IsPVCUsedByPods(key string) bool
    }
    
    // SharedLister groups scheduler-specific listers.
    type SharedLister interface {
    	NodeInfos() NodeInfoLister
    	StorageInfos() StorageInfoLister
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 01:00:41 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Lists.java

       * list of size {@code m x n x p}, its actual memory consumption is much smaller. When the
       * cartesian product is constructed, the input lists are merely copied. Only as the resulting list
       * is iterated are the individual lists created, and these are not retained after iteration.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Lists.java

       * list of size {@code m x n x p}, its actual memory consumption is much smaller. When the
       * cartesian product is constructed, the input lists are merely copied. Only as the resulting list
       * is iterated are the individual lists created, and these are not retained after iteration.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    //	['a', 'b', 'b', 'c'].lastIndexOf('b') // returns 2
    //	[1.0].indexOf(1.1) // returns -1
    //	[].indexOf('string') // returns -1
    func Lists() cel.EnvOption {
    	return cel.Lib(listsLib)
    }
    
    var listsLib = &lists{}
    
    type lists struct{}
    
    func (*lists) LibraryName() string {
    	return "k8s.lists"
    }
    
    var paramA = cel.TypeParamType("A")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/listers/cr/v1/example.go

    	ExampleListerExpansion
    }
    
    // exampleLister implements the ExampleLister interface.
    type exampleLister struct {
    	listers.ResourceIndexer[*v1.Example]
    }
    
    // NewExampleLister returns a new ExampleLister.
    func NewExampleLister(indexer cache.Indexer) ExampleLister {
    	return &exampleLister{listers.New[*v1.Example](indexer, v1.Resource("example"))}
    }
    
    // Examples returns an object that can list and get Examples.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 11:15:04 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1/customresourcedefinition.go

    type customResourceDefinitionLister struct {
    	listers.ResourceIndexer[*v1.CustomResourceDefinition]
    }
    
    // NewCustomResourceDefinitionLister returns a new CustomResourceDefinitionLister.
    func NewCustomResourceDefinitionLister(indexer cache.Indexer) CustomResourceDefinitionLister {
    	return &customResourceDefinitionLister{listers.New[*v1.CustomResourceDefinition](indexer, v1.Resource("customresourcedefinition"))}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 11:15:04 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1beta1/customresourcedefinition.go

    type customResourceDefinitionLister struct {
    	listers.ResourceIndexer[*v1beta1.CustomResourceDefinition]
    }
    
    // NewCustomResourceDefinitionLister returns a new CustomResourceDefinitionLister.
    func NewCustomResourceDefinitionLister(indexer cache.Indexer) CustomResourceDefinitionLister {
    	return &customResourceDefinitionLister{listers.New[*v1beta1.CustomResourceDefinition](indexer, v1beta1.Resource("customresourcedefinition"))}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 11:15:04 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. pkg/scheduler/testing/framework/fake_listers.go

    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	appslisters "k8s.io/client-go/listers/apps/v1"
    	corelisters "k8s.io/client-go/listers/core/v1"
    	storagelisters "k8s.io/client-go/listers/storage/v1"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    var _ corelisters.ServiceLister = &ServiceLister{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/list/list.go

    		work.AddCoverFlags(CmdList, nil)
    	}
    	CmdList.Flag.Var(&listJsonFields, "json", "")
    }
    
    var (
    	listCompiled   = CmdList.Flag.Bool("compiled", false, "")
    	listDeps       = CmdList.Flag.Bool("deps", false, "")
    	listE          = CmdList.Flag.Bool("e", false, "")
    	listExport     = CmdList.Flag.Bool("export", false, "")
    	listFmt        = CmdList.Flag.String("f", "", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top