Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 147 for reasons (0.33 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KotlinReadActionConfinementLifetimeToken.kt

        }
    
        override fun getInvalidationReason(): String {
            if (onCreatedTimeStamp != modificationTracker.modificationCount) return "PSI has changed since creation."
            error("Cannot get an invalidation reason for a valid lifetime token.")
        }
    
        override fun isAccessible(): Boolean {
            if (!ApplicationManager.getApplication().isReadAccessAllowed) return false
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DeprecatedFeaturesListener.kt

        private
        fun shouldReportInContext(task: TaskInternal, runningTask: TaskInternal?) =
            runningTask == null || task === runningTask
    
        private
        fun throwUnsupported(reason: String): Nothing =
            throw UnsupportedOperationException("$reason is unsupported with the STABLE_CONFIGURATION_CACHE feature preview.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // for public packages and only falls back to version control for private
    // packages or when the mirror refuses to serve a public package (typically for
    // legal reasons). Therefore, clients can still access public code served from
    // Bazaar, Fossil, or Subversion repositories by default, because those downloads
    // use the Go module mirror, which takes on the security risk of running the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandler.java

                    ComponentSelectionDescriptorInternal conflictResolution = ComponentSelectionReasons.CONFLICT_RESOLUTION;
                    if (details.reason != null) {
                        conflictResolution = conflictResolution.withDescription(details.reason);
                    }
                    details.getSelected().addCause(conflictResolution);
                    return;
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. pkg/controller/podgc/gc_controller_test.go

    				{name: "b", phase: v1.PodSucceeded},
    				{name: "c", phase: v1.PodFailed, reason: eviction.Reason},
    			},
    			threshold:       1,
    			deletedPodNames: sets.New("c", "a"),
    		},
    		{
    			pods: []nameToPhase{
    				{name: "a", phase: v1.PodRunning},
    				{name: "b", phase: v1.PodSucceeded},
    				{name: "c", phase: v1.PodFailed, reason: eviction.Reason},
    			},
    			threshold:       1,
    			deletedPodNames: sets.New("c"),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  6. pkg/kubelet/container/helpers.go

    	return nil, false
    }
    
    func (irecorder *innerEventRecorder) Event(object runtime.Object, eventtype, reason, message string) {
    	if ref, ok := irecorder.shouldRecordEvent(object); ok {
    		irecorder.recorder.Event(ref, eventtype, reason, message)
    	}
    }
    
    func (irecorder *innerEventRecorder) Eventf(object runtime.Object, eventtype, reason, messageFmt string, args ...interface{}) {
    	if ref, ok := irecorder.shouldRecordEvent(object); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. pkg/test/framework/suite.go

    	s.labels = s.labels.Add(labels...)
    	return s
    }
    
    func (s *suiteImpl) Skip(reason string) Suite {
    	s.skipMessage = reason
    	s.skipFn = func(ctx resource.Context) bool {
    		return true
    	}
    	return s
    }
    
    func (s *suiteImpl) SkipIf(reason string, fn resource.ShouldSkipFn) Suite {
    	s.skipMessage = reason
    	s.skipFn = fn
    	return s
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    					FieldPath: "spec.containers{foo}",
    				},
    				Reason:     "Event Reason",
    				Message:    "Message Data",
    				EventTime:  metav1.MicroTime{Time: time.Now().UTC().AddDate(0, 0, -3)},
    				Count:      1,
    				Type:       api.EventTypeWarning,
    				ObjectMeta: metav1.ObjectMeta{Name: "event5"},
    			},
    			options: printers.GenerateOptions{Wide: true},
    			// Columns: Last Seen, Type, Reason, Object, Subobject, Message, First Seen, Count, Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    			s.Phase = pod.Status.Phase
    		}
    	}
    
    	if s.Phase == oldPodStatus.Phase {
    		// preserve the reason and message which is associated with the phase
    		s.Reason = oldPodStatus.Reason
    		s.Message = oldPodStatus.Message
    		if len(s.Reason) == 0 {
    			s.Reason = pod.Status.Reason
    		}
    		if len(s.Message) == 0 {
    			s.Message = pod.Status.Message
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller_test.go

    			}
    		})
    	}
    }
    
    func getCondition(job *batch.Job, condition batch.JobConditionType, status v1.ConditionStatus, reason string) bool {
    	for _, v := range job.Status.Conditions {
    		if v.Type == condition && v.Status == status && v.Reason == reason {
    			return true
    		}
    	}
    	return false
    }
    
    func hasTrueCondition(job *batch.Job) *batch.JobConditionType {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top