Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 348 for found$ (0.22 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			restart = true
    		} else if liveness, found := m.livenessManager.Get(containerStatus.ID); found && liveness == proberesults.Failure {
    			// If the container failed the liveness probe, we should kill it.
    			message = fmt.Sprintf("Container %s failed liveness probe", container.Name)
    			reason = reasonLivenessProbe
    		} else if startup, found := m.startupManager.Get(containerStatus.ID); found && startup == proberesults.Failure {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. plugin/pkg/admission/noderestriction/admission_test.go

    			err:        "not bound to a pod",
    		},
    		{
    			name:       "forbid create of token bound to nonexistant pod",
    			podsGetter: noExistingPods,
    			attributes: admission.NewAttributesRecord(makeTokenRequest("nopod", "someuid"), nil, tokenrequestKind, "ns", "mysa", svcacctResource, "token", admission.Create, &metav1.CreateOptions{}, false, mynode),
    			err:        "not found",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                                errOn30,
                                Version.V20,
                                "profiles.profile.id",
                                null,
                                "must be unique but found duplicate profile with id " + profile.getId(),
                                profile);
                    }
    
                    validate30RawProfileActivation(problems, profile.getActivation(), prefix);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * scope it finds the property in. If not found, an exception is thrown. See {@link #property(String)} for more details.</p>
     *
     * <p>When writing a property, the project searches the above scopes in order, and sets the property in the first scope
     * it finds the property in. If not found, an exception is thrown. See {@link #setProperty(String, Object)} for more details.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. src/testing/testing.go

    	var pc [1]uintptr
    	n := runtime.Callers(2, pc[:]) // skip runtime.Callers + Helper
    	if n == 0 {
    		panic("testing: zero callers found")
    	}
    	if _, found := c.helperPCs[pc[0]]; !found {
    		c.helperPCs[pc[0]] = struct{}{}
    		c.helperNames = nil // map will be recreated next time it is needed
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. pkg/proxy/endpointschangetracker_test.go

    			}
    			for _, x := range tc.expectedDeletedUDPEndpoints {
    				found := false
    				for _, stale := range result.DeletedUDPEndpoints {
    					if stale == x {
    						found = true
    						break
    					}
    				}
    				if !found {
    					t.Errorf("[%d] expected staleEndpoints[%v], but didn't find it: %v", tci, x, result.DeletedUDPEndpoints)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ...
    include::{snippetsPath}/configurationCache/problemsGroovy/tests/fail.out[]
    Configuration cache entry discarded with 1 problem.
    ----
    
    The configuration cache entry was discarded because of the found problem failing the build.
    
    Details can be found in the linked HTML report:
    
    image::configuration-cache/problems-report.png[]
    
    The report displays the set of problems twice.
    First grouped by problem message, then grouped by task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    		command = append(command, "-serverinfo", serverInfoPath)
    	}
    
    	if test.numRenegotiations > 0 || test.sendKeyUpdate {
    		found := false
    		for _, flag := range command[1:] {
    			if flag == "-state" {
    				found = true
    				break
    			}
    		}
    
    		if !found {
    			panic("-state flag missing to OpenSSL, you need this if testing renegotiation or KeyUpdate")
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    			if !types.IsRestartableInitContainer(container) {
    				break
    			}
    
    			if types.IsRestartableInitContainer(container) {
    				if container.StartupProbe != nil {
    					startup, found := m.startupManager.Get(status.ID)
    					if !found {
    						// If the startup probe has not been run, wait for it.
    						break
    					}
    					if startup != proberesults.Success {
    						if startup == proberesults.Failure {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. pkg/controller/disruption/disruption_test.go

    	pdb := ps.Get(key)
    	for _, condition := range pdb.Status.Conditions {
    		if strings.Contains(condition.Message, "found no controller ref") && condition.Reason == policy.SyncFailedReason {
    			t.Fatalf("PodDisruption Controller should not error when unmanaged pods are found but it failed for %q", key)
    		}
    	}
    }
    
    type disruptionController struct {
    	*DisruptionController
    
    	podStore cache.Store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top