Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 228 for Informer (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

            }
            // This is a performance optimization to short-cut the search for a dependency if there is a direct dependency.
            // We use `getDependencySuccessors()` instead of `getAllDependencySuccessors()`, since the former is a Set while the latter is only an Iterable.
            if (consumer.getDependencySuccessors().contains(producer)) {
                return false;
            }
            // Do a breadth first search for any dependency
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/daemon/DaemonGroovyCompiler.java

            /*
             * This shouldn't be necessary, but currently is because the worker API handles return types differently
             * depending on whether you use process isolation or classpath isolation. In the former case, the return
             * value is serialized and deserialized, so the correct class is returned. In the latter case, the result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/testers/CollectionRetainAllTester.java

       * collection is empty, but we'd still like to test retainAll(null) when we
       * can. We split the test into empty and non-empty cases. This allows us to
       * suppress only the former.
       */
    
      @CollectionFeature.Require(SUPPORTS_REMOVE)
      @CollectionSize.Require(ZERO)
      public void testRetainAll_nullCollectionReferenceEmptySubject() {
        try {
          collection.retainAll(null);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/authorization.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	authzconfig "k8s.io/apiserver/pkg/apis/apiserver"
    	genericoptions "k8s.io/apiserver/pkg/server/options"
    	versionedinformers "k8s.io/client-go/informers"
    
    	"k8s.io/kubernetes/pkg/kubeapiserver/authorizer"
    	authzmodes "k8s.io/kubernetes/pkg/kubeapiserver/authorizer/modes"
    )
    
    const (
    	defaultWebhookName                      = "default"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller_test.go

    	"k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"
    	"k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/fake"
    	"k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/endpoints/discovery"
    	"k8s.io/apiserver/pkg/endpoints/discovery/aggregated"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/framework_test.go

    }
    
    func alwaysReady() bool { return true }
    
    func newTestController(ctx context.Context, kubeClient clientset.Interface, informerFactory informers.SharedInformerFactory, enableDynamicProvisioning bool) (*PersistentVolumeController, error) {
    	if informerFactory == nil {
    		informerFactory = informers.NewSharedInformerFactory(kubeClient, controller.NoResyncPeriodFunc())
    	}
    	params := ControllerParameters{
    		KubeClient:                kubeClient,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    	openapinamer "k8s.io/apiserver/pkg/endpoints/openapi"
    	"k8s.io/apiserver/pkg/registry/rest"
    	genericfilters "k8s.io/apiserver/pkg/server/filters"
    	"k8s.io/apiserver/pkg/warning"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    	restclient "k8s.io/client-go/rest"
    	"k8s.io/klog/v2/ktesting"
    	kubeopenapi "k8s.io/kube-openapi/pkg/common"
    	"k8s.io/kube-openapi/pkg/validation/spec"
    	netutils "k8s.io/utils/net"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/import_quant_stats_pass.cc

      }
    
      // A method to retrieve the name for the given op.
      OperationToName op_to_name_;
    
      // We split the normal names and regex names, since the former can use hash
      // map to lookup and the latter needs to iterate all the regex to find the
      // match.
      // The `int` in the following two containers are to specify the result index
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/join.go

    )
    
    var (
    	joinWorkerNodeDoneMsg = dedent.Dedent(`
    		This node has joined the cluster:
    		* Certificate signing request was sent to apiserver and a response was received.
    		* The Kubelet was informed of the new secure connection details.
    
    		Run 'kubectl get nodes' on the control-plane to see this node join the cluster.
    
    		`)
    
    	joinControPlaneDoneTemp = template.Must(template.New("join").Parse(dedent.Dedent(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    //
    // controller-runtime has a number of constraints that make it inappropriate for usage here, despite this
    // seeming to be the bread and butter of the library:
    // * It is not readily possible to bring existing Informers, which would require extra watches (#1668)
    // * Goroutine leaks (#1655)
    // * Excessive API-server calls at startup which have no benefit to us (#1603)
    // * Hard to use with SSA (#1669)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top