Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,077 for patching (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    [[sec:java_testing_modular_patching]]
    === Whitebox test execution with module patching
    
    Another approach for whitebox testing is to stay in the module world by _patching_ the tests into the module under test.
    This way, module boundaries stay in place, but the tests themselves become part of the module under test and can then access the module's internals.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/config.go

    	DumpKubernetesManifests bool
    
    	// IstiodlessRemotes makes remote clusters run without istiod, using webhooks/ca from the primary cluster.
    	// TODO we could set this per-cluster if istiod was smarter about patching remotes.
    	IstiodlessRemotes bool
    
    	// OperatorOptions overrides default operator configuration.
    	OperatorOptions map[string]string
    
    	// EnableCNI indicates the test should have CNI enabled.
    	EnableCNI bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/apiclient/idempotency.go

    			*lastError = errors.Wrapf(err, "error patching Node %q", n.Name)
    			if apierrors.IsTimeout(err) || apierrors.IsConflict(err) || apierrors.IsServerTimeout(err) || apierrors.IsServiceUnavailable(err) {
    				return false, nil
    			}
    			return false, *lastError
    		}
    
    		return true, nil
    	}
    }
    
    // PatchNode tries to patch a node using patchFn for the actual mutating logic.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set.go

    	// client interface
    	kubeClient clientset.Interface
    	// control returns an interface capable of syncing a stateful set.
    	// Abstracted out for testing.
    	control StatefulSetControlInterface
    	// podControl is used for patching pods.
    	podControl controller.PodControlInterface
    	// podLister is able to list/get pods from a shared informer's store
    	podLister corelisters.PodLister
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                /**
                 * IR for code fragment is not fully correct until `patchCodeFragmentIr` is over.
                 * Because of that we run IR plugins manually after patching and don't pass any extension to fir2ir conversion in `runFir2Ir` method
                 */
                irGeneratorExtensions = emptyList()
            )
    
            patchCodeFragmentIr(targetFir2IrResult)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  6. pilot/pkg/model/gateway.go

    			server.Port.Name + "." + cfg.Name + "." + cfg.Namespace + bind // Format: https.%d.%s.%s.%s.%s
    	}
    
    	return ""
    }
    
    // ParseGatewayRDSRouteName is used by the EnvoyFilter patching logic to match
    // a specific route configuration to patch.
    func ParseGatewayRDSRouteName(name string) (portNumber int, portName, gatewayName string) {
    	if strings.HasPrefix(name, "http.") {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/deployment.go

    		for k, v := range subset.Annotations {
    			if k == "proxy.istio.io/config" {
    				if err := patchProxyConfigFile(path.Join(subsetDir, "mesh.yaml"), v); err != nil {
    					return fmt.Errorf("failed patching proxyconfig: %v", err)
    				}
    			}
    		}
    
    		if err := customizeVMEnvironment(ctx, cfg, path.Join(subsetDir, "cluster.env"), istiodAddr); err != nil {
    			return fmt.Errorf("failed customizing cluster.env: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. architecture/networking/pilot.md

    #### Caching
    
    Config translation typically takes the overwhelming majority of Istiod's resource usage. In particular, protobuf encoding. As a result, caching has been introduced, storing the already encoded `protobuf.Any` for a given resource.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. pkg/registry/core/service/storage/storage.go

    			// if clusterIPs are the same, then clear on their behalf
    			if sameClusterIPs(oldSvc, newSvc) {
    				newSvc.Spec.ClusterIPs = nil
    			}
    
    			// if they provided nil, then we are fine (handled by patching case above)
    			// if they changed it then validation will catch it
    		} else {
    			// ClusterIP has changed but not cleared *and* ClusterIPs are the same
    			// then we set ClusterIPs based on ClusterIP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	updatePod *example.Pod
    
    	// expectedPod is the pod that you expect to get back after the patch is complete
    	expectedPod   *example.Pod
    	expectedError string
    	// if set, indicates the number of times patching was expected to be attempted
    	expectedTries int
    }
    
    func (tc *patchTestCase) Run(t *testing.T) {
    	t.Logf("Starting test %s", tc.name)
    
    	namespace := tc.startingPod.Namespace
    	name := tc.startingPod.Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top