Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 657 for Gleason (0.25 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

                reason.addCause(selectionCause);
            }
            cachedReason = reason;
            return reason;
        }
    
        boolean hasStrongOpinion() {
            return StreamSupport.stream(module.getSelectors().spliterator(), false)
                .filter(s -> s.getFailure() == null)
                .anyMatch(SelectorState::hasStrongOpinion);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. src/os/exec.go

    	}
    }
    
    // Drop the Process' persistent reference on the handle, deactivating future
    // Wait/Signal calls with the passed reason.
    //
    // Returns the status prior to this call. If this is not statusOK, then the
    // reference was not dropped or status changed.
    func (p *Process) handlePersistentRelease(reason processStatus) processStatus {
    	if p.mode != modeHandle {
    		panic("handlePersistentRelease called in invalid mode")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    				Verb:            "create",
    				APIVersion:      "*",
    			}),
    		},
    		{
    			name: "test authorizer reason",
    			validations: []ExpressionAccessor{
    				&condition{
    					Expression: "authorizer.group('').resource('endpoints').check('create').reason() == 'fake reason'",
    				},
    			},
    			attributes: newValidAttribute(&podObject, false),
    			results: []EvaluationResult{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/nonstructuralschema/nonstructuralschema_controller.go

    	if cond == nil && old == nil {
    		return nil
    	}
    	if cond != nil && old != nil && old.Status == cond.Status && old.Reason == cond.Reason && old.Message == cond.Message {
    		return nil
    	}
    
    	// update condition
    	crd := inCustomResourceDefinition.DeepCopy()
    	if cond == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonRegistryUnavailableExpirationStrategyTest.groovy

            DaemonExpirationResult expirationCheck = expirationStrategy.checkExpiration()
    
            then:
            expirationCheck.status == GRACEFUL_EXPIRE
            expirationCheck.reason == DaemonRegistryUnavailableExpirationStrategy.REGISTRY_BECAME_UNREADABLE
        }
    
        def "daemon should not expire given readable registry with it's PID"() {
            given:
            Address address = new Address() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    		return false, &webhookutil.ErrCallingWebhook{WebhookName: h.Name, Reason: fmt.Errorf("could not create admission objects: %w", err), Status: apierrors.NewBadRequest("error creating admission objects")}
    	}
    	// Make the webhook request
    	client, err := invocation.Webhook.GetRESTClient(a.cm)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. 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)
  10. cmd/os-reliable.go

    			// directory" error message. Handle this specifically
    			// here.
    			return errFileAccessDenied
    		}
    	}
    	return err
    }
    
    // Reliably retries os.RemoveAll if for some reason os.RemoveAll returns
    // syscall.ENOTEMPTY (children has files).
    func reliableRemoveAll(dirPath string) (err error) {
    	i := 0
    	for {
    		// Removes all the directories and files.
    		if err = RemoveAll(dirPath); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top