Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 119 for Everything (0.15 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. build/common.sh

      # Everything before "--" is an arg to docker
      until [ -z "${1-}" ] ; do
        if [[ "$1" == "--" ]]; then
          shift
          break
        fi
        docker_run_opts+=("$1")
        if [[ "$1" == "-d" || "$1" == "--detach" ]] ; then
          detach=true
        fi
        shift
      done
    
      # Everything after "--" is the command to run
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller.go

    // for all service's the pod is a part of and push an update.
    func (c *Controller) recomputeServiceForPod(pod *v1.Pod) {
    	allServices := c.services.List(pod.Namespace, klabels.Everything())
    	cu := sets.New[model.ConfigKey]()
    	services := getPodServices(allServices, pod)
    	for _, svc := range services {
    		hostname := kube.ServiceHostname(svc.Name, svc.Namespace, c.opts.DomainSuffix)
    		c.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/informers.go

    // This is only used for building the initial snapshot ATM.
    func (s *InformerHandlers) GetActiveAmbientPodSnapshot() []*corev1.Pod {
    	var pods []*corev1.Pod
    	for _, pod := range s.pods.List(metav1.NamespaceAll, klabels.Everything()) {
    		ns := s.namespaces.Get(pod.Namespace, "")
    		if ns == nil {
    			log.Warnf("failed to find namespace %s for pod %s", pod.Namespace, pod.Name)
    		}
    
    		// Exclude ztunnels, and terminated daemonset pods
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    		for _, gw := range dc.gateways.List(o.GetName(), klabels.Everything()) {
    			dc.queue.AddObject(gw)
    		}
    	}))
    
    	gateways.AddEventHandler(controllers.ObjectHandler(dc.queue.AddObject))
    	gatewayClasses.AddEventHandler(controllers.ObjectHandler(func(o controllers.Object) {
    		for _, g := range dc.gateways.List(metav1.NamespaceAll, klabels.Everything()) {
    			if string(g.Spec.GatewayClassName) == o.GetName() {
    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