Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,721 for reason1 (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/finisher/finisher.go

    					buf := make([]byte, size)
    					buf = buf[:goruntime.Stack(buf, false)]
    					reason = fmt.Sprintf("%v\n%s", reason, buf)
    				}
    
    				// store the panic reason into the result.
    				result.reason = reason
    			}
    
    			// Propagate the result to the parent goroutine
    			resultCh <- result
    		}()
    
    		if object, err := fn(); err != nil {
    			result.err = err
    		} else {
    			result.object = object
    		}
    	}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 14:20:33 UTC 2021
    - 6K bytes
    - Viewed (0)
  2. cni/pkg/repair/repair_test_helpers.go

    				ExitCode: constants.ValidationErrorCode,
    				Reason:   "Error",
    				Message:  "Died for some reason",
    			},
    		},
    	}
    
    	brokenInitContainerTerminating = corev1.ContainerStatus{
    		Name: constants.ValidationContainerName,
    		State: corev1.ContainerState{
    			Terminated: &corev1.ContainerStateTerminated{
    				ExitCode: constants.ValidationErrorCode,
    				Reason:   "Error",
    				Message:  "Died for some reason",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 12 17:39:53 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. pkg/registry/authorization/subjectaccessreview/rest_test.go

    )
    
    type fakeAuthorizer struct {
    	attrs authorizer.Attributes
    
    	decision authorizer.Decision
    	reason   string
    	err      error
    }
    
    func (f *fakeAuthorizer) Authorize(ctx context.Context, attrs authorizer.Attributes) (authorizer.Decision, string, error) {
    	f.attrs = attrs
    	return f.decision, f.reason, f.err
    }
    
    func TestCreate(t *testing.T) {
    	testcases := map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/grpc.status.yaml.golden

          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
          type: Programmed
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. tests/associations_test.go

    	"gorm.io/gorm/schema"
    	. "gorm.io/gorm/utils/tests"
    )
    
    func AssertAssociationCount(t *testing.T, data interface{}, name string, result int64, reason string) {
    	if count := DB.Model(data).Association(name).Count(); count != result {
    		t.Fatalf("invalid %v count %v, expects: %v got %v", name, reason, result, count)
    	}
    
    	var newUser User
    	if user, ok := data.(User); ok {
    		DB.Find(&newUser, "id = ?", user.ID)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/toolchain/ToolChainAvailability.java

            reason.explain(visitor);
        }
    
        public ToolChainAvailability unavailable(String unavailableMessage) {
            if (reason == null) {
                reason = new FixedMessageToolSearchResult(unavailableMessage);
            }
            return this;
        }
    
        public ToolChainAvailability unsupported(String unsupportedMessage) {
            if (reason == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/RejectedByRuleVersion.java

        private final String reason;
    
        public RejectedByRuleVersion(ModuleComponentIdentifier id, String reason) {
            super(id);
            this.reason = reason;
        }
    
        public String getReason() {
            return reason;
        }
    
        @Override
        public int hashCode() {
            return Objects.hashCode(getId(), reason);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/DocumentResolution.kt

                ) : SuccessfulElementResolution
            }
    
            data class ElementNotResolved(override val reasons: List<ElementNotResolvedReason>) : ElementResolution, UnsuccessfulResolution
        }
    
        data object ErrorResolution : DocumentNodeResolution, UnsuccessfulResolution {
            override val reasons: Iterable<ResolutionFailureReason>
                get() = listOf(IsError)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InvalidPluginIdException.java

    public class InvalidPluginIdException extends GradleException {
    
        private final String reason;
    
        public InvalidPluginIdException(String pluginId, String reason) {
            super(String.format("plugin id '%s' is invalid: %s", pluginId, reason));
            this.reason = reason;
        }
    
        public String getReason() {
            return reason;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 27 13:19:04 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. pkg/scheduler/eventhandlers.go

    		admissionResults = append(admissionResults, AdmissionResult{Name: nodeports.Name, Reason: nodeports.ErrReason})
    		if !includeAllFailures {
    			return admissionResults
    		}
    	}
    	return admissionResults
    }
    
    // AdmissionResult describes the reason why Scheduler can't admit the pod.
    // If the reason is a resource fit one, then AdmissionResult.InsufficientResource includes the details.
    type AdmissionResult struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top