Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for WIPE (0.06 sec)

  1. pkg/config/mesh/mesh.go

    	// Note: if we want to add more structure in the future, we will likely need to revisit this idea.
    
    	// Store the current set proxy config so we don't wipe it out, we will configure this later
    	prevProxyConfig := defaultConfig.DefaultConfig
    	prevDefaultProvider := defaultConfig.DefaultProviders
    	prevExtensionProviders := defaultConfig.ExtensionProviders
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. tests/integration/ambient/waypoint_test.go

    				}
    				if cond.ObservedGeneration != gwc.Generation {
    					return fmt.Errorf("stale GWC generation: %+v", cond)
    				}
    				return nil
    			}
    			retry.UntilSuccessOrFail(t, check)
    
    			// Wipe out the status
    			gwc, _ := client.Get(context.Background(), constants.WaypointGatewayClassName, metav1.GetOptions{})
    			gwc.Status.Conditions = nil
    			client.Update(context.Background(), gwc, metav1.UpdateOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/prune.go

    		{Group: "rbac.authorization.k8s.io", Version: "v1", Kind: name.ClusterRoleStr},
    		{Group: "rbac.authorization.k8s.io", Version: "v1", Kind: name.ClusterRoleBindingStr},
    		// Cannot currently prune CRDs because this will also wipe out user config.
    		// {Group: "apiextensions.k8s.io", Version: "v1beta1", Kind: name.CRDStr},
    	}
    	// ClusterCPResources lists cluster scope resources types which should be deleted during uninstall command.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. src/runtime/mgcwork.go

    	lock(&work.wbufSpans.lock)
    	if work.full != 0 {
    		throw("cannot free workbufs when work.full != 0")
    	}
    	// Since all workbufs are on the empty list, we don't care
    	// which ones are in which spans. We can wipe the entire empty
    	// list and move all workbuf spans to the free list.
    	work.empty = 0
    	work.wbufSpans.free.takeAll(&work.wbufSpans.busy)
    	unlock(&work.wbufSpans.lock)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    	// but we would still want those policies evaluated
    	// (for instance to return error on failaction). Or if there was an error
    	// listing all policies at all, we would want to wipe the list.
    	s.policies.Store(&policies)
    
    	if err != nil {
    		// An error was generated while syncing policies. Mark it as dirty again
    		// so we can retry later
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. tests/integration/pilot/gateway_test.go

    		}
    		if cond.ObservedGeneration != gwc.Generation {
    			return fmt.Errorf("stale GWC generation: %+v", cond)
    		}
    		return nil
    	}
    	retry.UntilSuccessOrFail(t, check)
    
    	// Wipe out the status
    	gwc, _ := client.Get(context.Background(), "istio", metav1.GetOptions{})
    	gwc.Status.Conditions = nil
    	client.Update(context.Background(), gwc, metav1.UpdateOptions{})
    	// It should be added back
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_traffic_policy.go

    		applyRoundRobinLoadBalancer(c, lb)
    	case networking.LoadBalancerSettings_PASSTHROUGH:
    		c.LbPolicy = cluster.Cluster_CLUSTER_PROVIDED
    		c.ClusterDiscoveryType = &cluster.Cluster_Type{Type: cluster.Cluster_ORIGINAL_DST}
    		// Wipe out any LoadAssignment, if set. This can occur when we have a STATIC Service but PASSTHROUGH traffic policy
    		c.LoadAssignment = nil
    	default:
    		applySimpleDefaultLoadBalancer(c, lb)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_waypoint.go

    			// Ideally, if the weighted cluster overwrites authority, it has precedence. This mirrors behavior of headers,
    			// because for headers we append the weighted last which allows it to Set and wipe out previous Adds.
    			// However, Envoy behavior is different when we set at both cluster level and route level, and we want
    			// behavior to be consistent with a single cluster and multiple clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	if node == nil || !ok {
    		return
    	}
    	nodeName := types.NodeName(node.Name)
    	adc.nodeUpdate(logger, nil, obj)
    	// kubernetes/kubernetes/issues/37586
    	// This is to workaround the case when a node add causes to wipe out
    	// the attached volumes field. This function ensures that we sync with
    	// the actual status.
    	adc.actualStateOfWorld.SetNodeStatusUpdateNeeded(logger, nodeName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler_test.go

    	masked := initialDocument.DeepCopy()
    	masked.Items[0].Versions[0].Freshness = apidiscoveryv2.DiscoveryFreshnessStale
    
    	require.Equal(t, masked.Items, maskedDocument.Items)
    
    	// Wipe out default group. The other versions from the other group should now
    	// appear since the group is not being overridden by defaults ource
    	defaultManager.RemoveGroup(apis.Items[0].Name)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top