Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 631 for Succeeded (0.11 sec)

  1. pkg/registry/batch/job/strategy.go

    		return batchvalidation.JobStatusValidationOptions{
    			// We allow to decrease the counter for succeeded pods for jobs which
    			// have equal parallelism and completions, as they can be scaled-down.
    			RejectDecreasingSucceededCounter:             !isIndexed || !ptr.Equal(newJob.Spec.Completions, newJob.Spec.Parallelism),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    						succeededState("containerA"),
    						succeededState("containerB"),
    					},
    				},
    			},
    			true,
    			v1.PodSucceeded,
    			"all regular containers succeeded and restartable init container succeeded with restart always, but the pod is terminal",
    		},
    	}
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.SidecarContainers, true)
    	for _, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                        } catch (ChecksumFailedException e) {
                            // if we catch a ChecksumFailedException, it means the transfer/read succeeded, but the
                            // checksum doesn't match. This could be a problem with the server (ibiblio HTTP-200 error
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.json

        "startTime": "2002-01-01T01:01:01Z",
        "completionTime": "2003-01-01T01:01:01Z",
        "active": 4,
        "succeeded": 5,
        "failed": 6,
        "terminating": 11,
        "completedIndexes": "completedIndexesValue",
        "failedIndexes": "failedIndexesValue",
        "uncountedTerminatedPods": {
          "succeeded": [
            "succeededValue"
          ],
          "failed": [
            "failedValue"
          ]
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 55.3K bytes
    - Viewed (0)
  5. pkg/test/echo/cmd/client/main.go

    				os.Exit(-1)
    			}
    
    			// Log the output to stdout.
    			for _, line := range response.Output {
    				fmt.Println(line)
    			}
    
    			log.Infof("All requests succeeded")
    		},
    	}
    )
    
    func configureLogging(_ *cobra.Command, _ []string) error {
    	if err := log.Configure(loggingOptions); err != nil {
    		return err
    	}
    	return nil
    }
    
    func init() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top