Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 199 for addRow (0.23 sec)

  1. pkg/kubelet/prober/prober_manager_test.go

    	defer cleanup(t, m)
    	if err := expectProbes(m, nil); err != nil {
    		t.Error(err)
    	}
    
    	// Adding a pod with no probes should be a no-op.
    	m.AddPod(&noProbePod)
    	if err := expectProbes(m, nil); err != nil {
    		t.Error(err)
    	}
    
    	// Adding a pod with probes.
    	m.AddPod(&probePod)
    	probePaths := []probeKey{
    		{"probe_pod", "readiness", readiness},
    		{"probe_pod", "liveness", liveness},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. cluster/addons/README.md

    Kubernetes clusters.
    
    There are currently two classes of add-ons:
    - Add-ons that will be reconciled.
    - Add-ons that will be created if they don't exist.
    
    More details could be found in [addon-manager/README.md](addon-manager/README.md).
    
    ## Cooperating Horizontal / Vertical Auto-Scaling with "reconcile class addons"
    
    "Reconcile" class addons will be periodically reconciled to the original state given
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    				fakePodManager.AddPod(existingPod)
    				dswp.findAndAddNewPods()
    			}
    
    			newContainer := container
    			newContainer.SecurityContext.SELinuxOptions = tc.newContainerSELinuxOpts
    			newPod := createPodWithVolume("dswp-test-pod", "dswp-test-volume-name", "file-bound", []v1.Container{newContainer})
    
    			// Act - add the new Pod
    			fakePodManager.AddPod(newPod)
    			dswp.findAndAddNewPods()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. pkg/kubelet/prober/prober_manager.go

    // probe (AddPod). The worker periodically probes its assigned container and caches the results. The
    // manager use the cached probe results to set the appropriate Ready state in the PodStatus when
    // requested (UpdatePodStatus). Updating probe parameters is not currently supported.
    type Manager interface {
    	// AddPod creates new probe workers for every container probe. This should be called for every
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. releasenotes/notes/kiali-update-v1.60.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 30 03:23:10 UTC 2022
    - 131 bytes
    - Viewed (0)
  6. releasenotes/notes/kiali-update-v1.29.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 30438
    
    releaseNotes:
     - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 155 bytes
    - Viewed (0)
  7. operator/pkg/helm/fs_renderer_test.go

    				componentName: "foo-component",
    				dir:           "testdata/render",
    				files:         os.DirFS("."),
    			},
    			wantResult: `apiVersion: v1
    description: test
    name: addon
    version: 1.1.0
    appVersion: 1.1.0
    tillerVersion: ">=2.7.2"
    keywords:
      - istio-addon
    
    ---
    `,
    			wantErr: nil,
    		},
    		{
    			desc:        "bad-file-path",
    			inValues:    "",
    			inPath:      "foo/bar/Chart.yaml",
    			startRender: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 24 21:09:19 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  8. releasenotes/notes/kiali-update-v1.72.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 15:48:12 UTC 2023
    - 131 bytes
    - Viewed (0)
  9. releasenotes/notes/kiali-update-v1.76.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:06:34 UTC 2023
    - 131 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/collections/kotlin/build.gradle.kts

        // Define a container for animals
        private val animals: ExtensiblePolymorphicDomainObjectContainer<Animal> = objectFactory.polymorphicDomainObjectContainer(Animal::class)
    
        // Add a dog to the container
        fun addDog(name: String, breed: String) {
            var dog : Dog = Dog(name, breed)
            animals.add(dog)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top