Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 631 for Succeeded (0.16 sec)

  1. pkg/controller/job/tracking_utils_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Finalizers: []string{batch.JobTrackingFinalizer},
    				},
    				Status: v1.PodStatus{
    					Phase: v1.PodSucceeded,
    				},
    			},
    			wantAdd: 1,
    		},
    		"succeeded pod loses finalizer": {
    			oldPod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Finalizers: []string{batch.JobTrackingFinalizer},
    				},
    				Status: v1.PodStatus{
    					Phase: v1.PodSucceeded,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 05:40:02 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildWorkGraphController.java

                }
                try {
                    if (plan != null) {
                        return controller.executeTasks(plan);
                    } else {
                        return ExecutionResult.succeeded();
                    }
                } finally {
                    synchronized (lock) {
                        currentlyRunning = null;
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. security/pkg/pki/util/keycertbundle_test.go

    			} else if strings.Compare(err.Error(), tc.expectedErr) != 0 {
    				t.Errorf("%s: Unexpected error: %v VS (expected) %s", id, err, tc.expectedErr)
    			}
    		} else if tc.expectedErr != "" {
    			t.Errorf("%s: Expected error %s but succeeded", id, tc.expectedErr)
    		} else if bundle == nil {
    			t.Errorf("%s: the bundle should not be empty", id)
    		} else {
    			cert, key, chain, root := bundle.GetAllPem()
    			if len(cert) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. docs/recipes.md

                .readTimeout(500, TimeUnit.MILLISECONDS)
                .build()
            try {
              client1.newCall(request).execute().use { response ->
                println("Response 1 succeeded: $response")
              }
            } catch (e: IOException) {
              println("Response 1 failed: $e")
            }
    
            // Copy to customize OkHttp for this request.
            val client2 = client.newBuilder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  5. android/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)
  6. pkg/apis/batch/validation/validation_test.go

    						Succeeded: []types.UID{"a", "b", "c", "a", ""},
    						Failed:    []types.UID{"c", "d", "e", "d", ""},
    					},
    				},
    			},
    			wantErrs: field.ErrorList{
    				{Type: field.ErrorTypeDuplicate, Field: "status.uncountedTerminatedPods.succeeded[3]"},
    				{Type: field.ErrorTypeInvalid, Field: "status.uncountedTerminatedPods.succeeded[4]"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  7. src/os/pipe_test.go

    			t.Error(err)
    		}
    	}()
    
    	b := make([]byte, limit)
    	if read {
    		_, err = r.Read(b[:])
    	} else {
    		_, err = w.Write(b[:])
    	}
    	if err == nil {
    		t.Error("I/O on closed pipe unexpectedly succeeded")
    	} else if pe, ok := err.(*fs.PathError); !ok {
    		t.Errorf("I/O on closed pipe returned unexpected error type %T; expected fs.PathError", pe)
    	} else if pe.Err != fs.ErrClosed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. src/sync/mutex_test.go

    	if n := runtime.SetMutexProfileFraction(1); n != 0 {
    		t.Logf("got mutexrate %d expected 0", n)
    	}
    	defer runtime.SetMutexProfileFraction(0)
    
    	m := new(Mutex)
    
    	m.Lock()
    	if m.TryLock() {
    		t.Fatalf("TryLock succeeded with mutex locked")
    	}
    	m.Unlock()
    	if !m.TryLock() {
    		t.Fatalf("TryLock failed with mutex unlocked")
    	}
    	m.Unlock()
    
    	c := make(chan bool)
    	for i := 0; i < 10; i++ {
    		go HammerMutex(m, 1000, c)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 16 21:25:35 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  9. cluster/validate-cluster.sh

          exit 1
        fi
      else
        break
      fi
    done
    
    echo "Validate output:"
    kubectl_retry get cs || true
    if [ "${return_value}" == "0" ]; then
      echo -e "${color_green}Cluster validation succeeded${color_norm}"
    else
      echo -e "${color_yellow}Cluster validation encountered some problems, but cluster should be in working order${color_norm}"
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  10. pkg/registry/storage/csinode/strategy_test.go

    			if len(betaErr) > 0 && !test.expectError {
    				t.Errorf("Validation of v1beta1 object failed: %+v", betaErr)
    			}
    			if len(betaErr) == 0 && test.expectError {
    				t.Errorf("Validation of v1beta1 object unexpectedly succeeded")
    			}
    		})
    	}
    }
    
    func getValidCSINode(name string) *storage.CSINode {
    	return &storage.CSINode{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    		},
    		Spec: storage.CSINodeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 09:24:44 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top