Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 192 for Everything (0.6 sec)

  1. pkg/kube/kclient/client_test.go

    		assert.Equal(t, len(wasm.List("", klabels.Everything())), 0)
    
    		// Now we add the CRD
    		clienttest.MakeCRD(t, c, gvr.WasmPlugin)
    
    		// Start everything up
    		c.RunAndWait(stop)
    		wt.Create(&istioclient.WasmPlugin{
    			ObjectMeta: metav1.ObjectMeta{Name: "name", Namespace: "default"},
    		})
    		assert.EventuallyEqual(t, func() int {
    			return len(wasm.List("", klabels.Everything()))
    		}, 1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            result.assertTasksExecuted(":compileJava", ":processResources", ":classes", ":jar", ":compileTestJava", ":processTestResources", ":testClasses", ":test", ":assemble", ":check", ":build")
            result.assertTasksNotSkipped() // everything is up-to-date
            new ZipTestFixture(jarFile).hasDescendants("META-INF/MANIFEST.MF")
    
            when:
            configurationCacheRun "clean"
    
            then:
            assertStateStored()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    		}
    		time.Sleep(100 * time.Millisecond)
    		nodeList, err = informerFactory.Core().V1().Nodes().Lister().List(labels.Everything())
    		i++
    	}
    	i = 0
    	podList, err := informerFactory.Core().V1().Pods().Lister().List(labels.Everything())
    	for len(podList) < podsNum {
    		if err != nil {
    			t.Fatalf("Error getting list of nodes %v", err)
    		}
    		if i > 100 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    	defer cancel()
    	requestOpts := storage.ListOptions{
    		SendInitialEvents: ptr.To(true),
    		Recursive:         true,
    		Predicate: storage.SelectionPredicate{
    			Field:               fields.Everything(),
    			Label:               labels.Everything(),
    			AllowWatchBookmarks: true,
    		},
    	}
    	var expectedErr *apierrors.StatusError
    	if !errors.As(storage.NewTooLargeResourceVersionError(uint64(102), 1, 0), &expectedErr) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

            "no conventions, top-level property is set"        | ""                                 | setId("test")         | """id = test\nbar = bar"""
            "everything has convention and nothing set"        | setAll("convention", "convention") | ""                    | """id = convention\nbar = convention"""
            "everything has convention and is set"             | setAll("convention", "convention") | setAll("test", "baz") | """id = test\nbar = baz"""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    // IndexerFuncs is a mapping from `<index name>` to function that
    // for a given object computes `<value for that index>`.
    type IndexerFuncs map[string]IndexerFunc
    
    // Everything accepts all objects.
    var Everything = SelectionPredicate{
    	Label: labels.Everything(),
    	Field: fields.Everything(),
    }
    
    // MatchValue defines a pair (`<index name>`, `<value for that index>`).
    type MatchValue struct {
    	IndexName string
    	Value     string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. pkg/kube/kclient/client.go

    				// Fortunately, missing a namespace delete event usually doesn't matter since everything in the namespace gets torn down.
    			} else {
    				for ns := range added {
    					for _, item := range ic.ListUnfiltered(ns, klabels.Everything()) {
    						for _, c := range ic.registeredHandlers {
    							c.handler.OnAdd(item, false)
    						}
    					}
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    	c.crdMutationCache.Mutation(updatedObj)
    
    	// we updated our status, so we may be releasing a name.  When this happens, we need to rekick everything in our group
    	// if we fail to rekick, just return as normal.  We'll get everything on a resync
    	if err := c.requeueAllOtherGroupCRDs(key); err != nil {
    		return err
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. pkg/kube/multicluster/secretcontroller_test.go

    		sets.New("initial", "common"))
    
    	tt.WaitUnordered("add/common", "add/initial")
    
    	// Update the cluster
    	c.AddSecret("s0", "c0")
    	var fatal error
    	retry.UntilOrFail(t, func() bool {
    		have := clienttest.Names((*component.ForCluster("c0")).client.List(metav1.NamespaceAll, klabels.Everything()))
    		if have.Equals(sets.New("later", "common")) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. build/root/Makefile

    # Build code.
    #
    # Args:
    #   WHAT: Directory or Go package names to build.  If any of these directories
    #   has a 'main' package, the build will produce executable files under
    #   $(OUT_DIR)/bin.  If not specified, "everything" will be built.
    #     "vendor/<module>/<path>" is accepted as alias for "<module>/<path>".
    #     "ginkgo" is an alias for the ginkgo CLI.
    #   GOFLAGS: Extra flags to pass to 'go' when building.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top