Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 118 for Succeeded (0.17 sec)

  1. guava/src/com/google/common/util/concurrent/AggregateFutureState.java

           * other callers have added to it.
           *
           * This read is guaranteed to get us the right value because we only set this once (here).
           *
           * requireNonNull is safe because either our compareAndSet succeeded or it failed because
           * another thread did it for us.
           */
          seenExceptionsLocal = requireNonNull(seenExceptions);
        }
        return seenExceptionsLocal;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/apply.go

    	// deployed is the number of objects have been deployed which means
    	// it's in the cache and it's not changed from the cache.
    	deployed int
    }
    
    // Succeed returns true if the apply operation succeeded.
    func (r AppliedResult) Succeed() bool {
    	return len(r.processedObjects) > 0 || r.deployed > 0
    }
    
    // ApplyManifest applies the manifest to create or update resources. It returns the processed (created or updated)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/istio.go

    			scopes.Framework.Infof("=== FAILED: Deploy Istio in %v [Suite=%s] ===", time.Since(t0), ctx.Settings().TestID)
    			return err
    		}
    
    		if i != nil {
    			*i = ins
    		}
    		scopes.Framework.Infof("=== SUCCEEDED: Deploy Istio in %v [Suite=%s]===", time.Since(t0), ctx.Settings().TestID)
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. src/syscall/exec_bsd.go

    	r1, _, err1 = RawSyscall(SYS_FORK, 0, 0, 0)
    	if err1 != 0 {
    		runtime_AfterFork()
    		return 0, err1
    	}
    
    	if r1 != 0 {
    		// parent; return PID
    		runtime_AfterFork()
    		return int(r1), 0
    	}
    
    	// Fork succeeded, now in child.
    
    	// Enable tracing if requested.
    	if sys.Ptrace {
    		_, _, err1 = RawSyscall(SYS_PTRACE, uintptr(PTRACE_TRACEME), 0, 0)
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// Session ID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. src/os/stat_test.go

    	t.Parallel()
    	f, err := os.Open("testdata/hello")
    	if err != nil {
    		t.Fatal(err)
    	}
    	if err := f.Close(); err != nil {
    		t.Fatal(err)
    	}
    	_, err = f.Stat()
    	if err == nil {
    		t.Error("Stat succeeded on closed File")
    	} else if !errors.Is(err, os.ErrClosed) {
    		t.Errorf("error from Stat on closed file did not match ErrClosed: %q, type %T", err, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:38:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. pkg/controller/storageversionmigrator/storageversionmigrator.go

    	toBeProcessedSVM := svm.DeepCopy()
    
    	if IsConditionTrue(toBeProcessedSVM, svmv1alpha1.MigrationSucceeded) || IsConditionTrue(toBeProcessedSVM, svmv1alpha1.MigrationFailed) {
    		logger.V(4).Info("Migration has already succeeded or failed previously, skipping", "svm", name)
    		return nil
    	}
    
    	if len(toBeProcessedSVM.Status.ResourceVersion) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller.go

    		return healthCheckError == nil, nil
    	})
    	if pollErr != nil {
    		return fmt.Errorf("health check for new transformers failed, polling error %v: %w", pollErr, healthCheckError)
    	}
    	klog.V(2).InfoS("Health check succeeded")
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm_arm64_test.go

    			wantErr: true,
    		},
    	}
    	for _, test := range tests {
    		hi, lo, err := splitImm24uScaled(test.v, test.shift)
    		switch {
    		case err == nil && test.wantErr:
    			t.Errorf("splitImm24uScaled(%v, %v) succeeded, want error", test.v, test.shift)
    		case err != nil && !test.wantErr:
    			t.Errorf("splitImm24uScaled(%v, %v) failed: %v", test.v, test.shift, err)
    		case !test.wantErr:
    			if got, want := hi, test.wantHi; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. src/syscall/exec_freebsd.go

    	if err1 != 0 {
    		runtime_AfterFork()
    		return 0, err1
    	}
    
    	if r1 != 0 {
    		// parent; return PID
    		runtime_AfterFork()
    		return int(r1), 0
    	}
    
    	// Fork succeeded, now in child.
    
    	// Attach to the given jail, if any. The system call also changes the
    	// process' root and working directories to the jail's path directory.
    	if sys.Jail > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. src/syscall/exec_libc2.go

    	if err1 != 0 {
    		runtime_AfterFork()
    		return 0, err1
    	}
    
    	if r1 != 0 {
    		// parent; return PID
    		runtime_AfterFork()
    		return int(r1), 0
    	}
    
    	// Fork succeeded, now in child.
    
    	// Enable tracing if requested.
    	if sys.Ptrace {
    		if err = ptrace(PTRACE_TRACEME, 0, 0, 0); err != nil {
    			err1 = err.(Errno)
    			goto childerror
    		}
    	}
    
    	// Session ID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top