Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,438 for Updatef (0.3 sec)

  1. releasenotes/notes/kiali-update-v1.79.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 16:56:53 UTC 2024
    - 131 bytes
    - Viewed (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-versions.gradle.kts

            ReleasedVersion(versionInfo.version, versionInfo.buildTime)
        }
    }
    
    tasks.register<UpdateAgpVersions>("updateAgpVersions") {
        comment = " Generated - Update by running `./gradlew updateAgpVersions`"
        minimumSupportedMinor = "7.3"
        propertiesFile = layout.projectDirectory.file("gradle/dependency-management/agp-versions.properties")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:17:36 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. releasenotes/notes/kiali-update-v1.55.1.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
     - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 31 16:50:39 UTC 2022
    - 140 bytes
    - Viewed (0)
  4. releasenotes/notes/kiali-update-v1.55.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
     - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 22 18:52:47 UTC 2022
    - 138 bytes
    - Viewed (0)
  5. pilot/pkg/xds/eds.go

    	kind.KubernetesGateway,
    	kind.HTTPRoute,
    	kind.TCPRoute,
    	kind.TLSRoute,
    	kind.GRPCRoute,
    )
    
    func edsNeedsPush(updates model.XdsUpdates) bool {
    	// If none set, we will always push
    	if len(updates) == 0 {
    		return true
    	}
    	for config := range updates {
    		if !skippedEdsConfigs.Contains(config.Kind) {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/configuration/mutating_webhook_manager_test.go

    		finalNumberOfWebhookAccessors int
    	}{
    		{
    			name: "no creations and no updates",
    			args: args{
    				nil,
    				nil,
    			},
    			numberOfCreations:             0,
    			numberOfRefreshes:             0,
    			finalNumberOfWebhookAccessors: 0,
    		},
    		{
    			name: "create configurations and no updates",
    			args: args{
    				[]*v1.MutatingWebhookConfiguration{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 15:20:14 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. pkg/registry/apps/replicaset/storage/storage_test.go

    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		// continuously submits a patch that updates a label and verifies the label update was effective
    		labelName := "timestamp"
    		for i := 0; ; i++ {
    			select {
    			case <-stopCh:
    				return
    			default:
    				expectedLabelValue := fmt.Sprint(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  8. hack/update-vendor-licenses.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Update the LICENSES directory.
    # Generates a table of Go dependencies and their licenses.
    #
    # Usage:
    #    $0 [--create-missing] [/path/to/licenses]
    #
    #    --create-missing will write the files that only exist upstream, locally.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. hack/update-openapi-spec.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Script to fetch latest openapi spec.
    # Puts the updated spec at api/openapi-spec/
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    DISCOVERY_ROOT_DIR="${KUBE_ROOT}/api/discovery"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. pkg/controller/nodeipam/ipam/sync/sync.go

    		logger.Error(err, "Could not update node NetworkUnavailable status to false")
    		return err
    	}
    
    	logger.V(2).Info("Updated node cloud alias with node spec", "node", klog.KObj(node), "podCIDR", node.Spec.PodCIDR)
    
    	return nil
    }
    
    // allocateRange allocates a new range and updates both the cloud
    // platform and the node allocation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top