Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,702 for _reasonx (0.22 sec)

  1. src/runtime/defs1_netbsd_arm.go

    	_EVFILT_USER  = 0x8
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type sigset struct {
    	__bits [4]uint32
    }
    
    type siginfo struct {
    	_signo   int32
    	_code    int32
    	_errno   int32
    	_reason  uintptr
    	_reasonx [16]byte
    }
    
    type stackt struct {
    	ss_sp    uintptr
    	ss_size  uintptr
    	ss_flags int32
    }
    
    type timespec struct {
    	tv_sec  int64
    	tv_nsec int32
    	_       [4]byte // EABI
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/runtime/defs1_netbsd_arm64.go

    	_EVFILT_USER  = 0x8
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type sigset struct {
    	__bits [4]uint32
    }
    
    type siginfo struct {
    	_signo   int32
    	_code    int32
    	_errno   int32
    	_reason  uintptr
    	_reasonx [16]byte
    }
    
    type stackt struct {
    	ss_sp    uintptr
    	ss_size  uintptr
    	ss_flags int32
    }
    
    type timespec struct {
    	tv_sec  int64
    	tv_nsec int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BomSupportPluginsSmokeTest.groovy

                        it.maybeSelectedByRule()
                    }
                }
            }
    
            where:
            bomSupportProvider                    | directBomDependency | reason1            | reason2            | reason3            | bomDeclaration                                        | dependencyManagementPlugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependencyConstraintTest.groovy

            constraint.force = false
            constraint.reason = 'reason1'
            DefaultProjectDependencyConstraint constraintCopy = constraint.copy()
    
            when:
            constraintCopy.force = true
            constraintCopy.reason = 'reason2'
    
            then:
            constraint.force == false
            constraint.reason == 'reason1'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. pilot/pkg/xds/discovery.go

    	case 2:
    		return fmt.Sprintf("%s:%d and %s:%d", reason0, reason0Cnt, reason1, reason1Cnt)
    	default:
    		return fmt.Sprintf("%s:%d and %d(%d) more reasons", reason0, reason0Cnt, len(req.Reason)-1,
    			req.Reason.Count()-reason0Cnt)
    	}
    }
    
    func doSendPushes(stopCh <-chan struct{}, semaphore chan struct{}, queue *PushQueue) {
    	for {
    		select {
    		case <-stopCh:
    			return
    		default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation.go

    	}
    
    	if len(condition.Reason) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("reason"), "must be set"))
    	} else {
    		for _, currErr := range isValidConditionReason(condition.Reason) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("reason"), condition.Reason, currErr))
    		}
    		if len(condition.Reason) > maxReasonLen {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyState.java

                reasons.add(reason);
            } else if (isNewReason(reasons, reason)) {
                reasons.add(reason);
            }
        }
    
        private static boolean isNewReason(List<ComponentSelectionDescriptorInternal> reasons, ComponentSelectionDescriptorInternal reason) {
            return (reasons.size() == 1 && !reason.equals(reasons.get(0)))
                || !reasons.contains(reason);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. pkg/kubelet/lifecycle/predicate.go

    	podWithoutMissingExtendedResources := removeMissingExtendedResources(admitPod, nodeInfo)
    
    	reasons := generalFilter(podWithoutMissingExtendedResources, nodeInfo)
    	fit := len(reasons) == 0
    	if !fit {
    		reasons, err = w.admissionFailureHandler.HandleAdmissionFailure(admitPod, reasons)
    		fit = len(reasons) == 0 && err == nil
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionReasonSerializerTest.groovy

        void check(ComponentSelectionDescriptor... reasons) {
            def reason = ComponentSelectionReasons.of(reasons)
            def result = serialize(reason, serializer)
            assert result == reason
        }
    
        private static ComponentSelectionReason withReason(String reason) {
            ComponentSelectionReasons.of(ComponentSelectionReasons.SELECTED_BY_RULE.withDescription(Describables.of(reason)))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation_test.go

    			Reason: "valid,val:",
    		}},
    		validateErrs: func(t *testing.T, errs field.ErrorList) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 15.2K bytes
    - Viewed (0)
Back to top