Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for WIPE (0.03 sec)

  1. docs/yo/docs/index.md

    ---
    
    "_Ti ẹnikẹni ba n wa láti kọ iṣelọpọ API pẹ̀lú Python, èmi yóò ṣe'dúró fún **FastAPI**. Ó jẹ́ ohun tí **àgbékalẹ̀ rẹ̀ lẹ́wà**, **ó rọrùn láti lò** àti wipe ó ni **ìwọ̀n gíga**, o tí dí **bọtini paati** nínú alakọkọ API ìdàgbàsókè kikọ fún wa, àti pe o ni ipa lori adaṣiṣẹ àti àwọn iṣẹ gẹ́gẹ́ bíi Onímọ̀-ẹ̀rọ TAC tí órí Íńtánẹ́ẹ̀tì_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
Back to top