Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 450 for eventual (0.11 sec)

  1. pkg/controller/bootstrap/tokencleaner_test.go

    	err = wait.Poll(100*time.Millisecond, wait.ForeverTestTimeout, conditionFunc)
    	if err != nil {
    		t.Fatalf("secret is put back into the queue, the queue length should be 1, error: %v\n", err)
    	}
    
    	// secret was eventually deleted
    	expected = []core.Action{
    		core.NewDeleteActionWithOptions(
    			schema.GroupVersionResource{Version: "v1", Resource: "secrets"},
    			api.NamespaceSystem,
    			secret.ObjectMeta.Name,
    			metav1.DeleteOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	testService = "test"
    )
    
    // eventually polls cond until it completes (returns true) or times out (resulting in a test failure).
    func eventually(t test.Failer, cond func() bool) {
    	t.Helper()
    	retry.UntilSuccessOrFail(t, func() error {
    		if !cond() {
    			return fmt.Errorf("failed to get positive condition")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. testing/architecture-test/src/test/java/org/gradle/architecture/test/ConfigurationCreationTest.java

         * This test ensures that <strong>ONLY</strong> the role-based API is used to create configurations in Gradle core plugins.
         * <p>
         * It is important to maintain this condition, because the role-based API will allow us to (eventually) split
         * the implementation of configurations into separate classes per role.  If new configurations are created using
         * the existing public API, they may be used in non-idiomatic ways that will make this difficult.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/TestFramework.java

         * and placed on the test worker implementation/application classpath/modulepath.
         * <p>
         * This functionality is legacy and will eventually be deprecated and removed. Test framework dependencies
         * should be managed externally from the Gradle distribution, as is done by test suites.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. docs/site-replication/README.md

    identical. This is no longer necessary because STS tokens are now signed with the site replicator service account credentials, thus allowing flexibility in the independent management of root accounts across sites and the ability to disable root accounts eventually.
    
    However, this means that STS tokens signed previously by root credentials will no longer be valid upon upgrading to the latest version with this change. Please re-generate them as you usually do. Additionally, if site replication is ever...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 21:30:28 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildTreeLocalComponentProvider.java

        }
    
        /**
         * Copes the component identified by {@code projectIdentifier}, except with its identifier replaced with the foreign counterpart.
         *
         * <p>Eventually, in Gradle 9.0, when {@link BuildIdentifier#isCurrentBuild()} is removed, all this logic can disappear.</p>
         */
        private LocalComponentGraphResolveState copyComponentWithForeignId(ProjectComponentIdentifier projectIdentifier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. pkg/registry/rbac/clusterrole/policybased/storage.go

    		clusterRole := obj.(*rbac.ClusterRole)
    		oldClusterRole := oldObj.(*rbac.ClusterRole)
    
    		// if we're only mutating fields needed for the GC to eventually delete this obj, return
    		if rbacregistry.IsOnlyMutatingGCFields(obj, oldObj, kapihelper.Semantic) {
    			return obj, nil
    		}
    
    		rules := clusterRole.Rules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 10:11:16 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/internal/analysisutil/util.go

    // within file f, or NoPos if there is no line of that number.
    func LineStart(f *token.File, line int) token.Pos {
    	// Use binary search to find the start offset of this line.
    	//
    	// TODO(adonovan): eventually replace this function with the
    	// simpler and more efficient (*go/token.File).LineStart, added
    	// in go1.12.
    
    	min := 0        // inclusive
    	max := f.Size() // exclusive
    	for {
    		offset := (min + max) / 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

        URLClassLoader sepLoader = new URLClassLoader(getClassPathUrls(), myLoader.getParent());
        // sepLoader is the loader that we will use to load the parallel FinalizableReferenceQueue (FRQ)
        // and friends, and that we will eventually expect to see garbage-collected. The assumption
        // is that the ClassLoader of this test is a URLClassLoader, and that it loads FRQ itself
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. manifests/charts/ztunnel/values.yaml

      logLevel: info
    
      # Set to `type: RuntimeDefault` to use the default profile if available.
      seLinuxOptions: {}
      # TODO Ambient inpod - for OpenShift, set to the following to get writable sockets in hostmounts to work, eventually consider CSI driver instead
      #seLinuxOptions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top