Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,702 for _reasonx (0.21 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            buildFile << """
                $content
            """
        }
    
        void declaredReplacementWithReason(String rep, String reason) {
            def d = new TestDependency(rep)
            buildFile << """
                dependencies.modules.module('${d.group}:${d.name}') { replacedBy '${d.pointsTo.group}:${d.pointsTo.name}', '$reason' }
            """
        }
    
        void resolvedFiles(String... files) {
            run("resolvedFiles")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/SkipUpToDateStep.java

        }
    
        private UpToDateResult executeBecause(UnitOfWork work, ImmutableList<String> reasons, C context) {
            logExecutionReasons(reasons, work);
            AfterExecutionResult result = delegate.execute(work, context);
            return new UpToDateResult(result, reasons);
        }
    
        private static void logExecutionReasons(List<String> reasons, UnitOfWork work) {
            if (LOGGER.isInfoEnabled()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    		// Call Handle in a separate goroutine.
    		// The reason for it is that from APF point of view, the request processing
    		// finishes as soon as watch is initialized (which is generally orders of
    		// magnitude faster then the watch request itself). This means that Handle()
    		// call finishes much faster and for performance reasons we want to reduce
    		// the number of running goroutines - so we run the shorter thing in a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/caching_authorizer_test.go

    						decision: authorizer.DecisionDeny,
    						reason:   "test reason beta",
    						error:    fmt.Errorf("test error beta"),
    					},
    				},
    			},
    			backend: []result{
    				{
    					decision: authorizer.DecisionAllow,
    					reason:   "test reason alpha",
    					error:    fmt.Errorf("test error alpha"),
    				},
    				{
    					decision: authorizer.DecisionDeny,
    					reason:   "test reason beta",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/route-binding.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: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. src/runtime/signal_netbsd_386.go

    	return *(*uint32)(unsafe.Pointer(&c.info._reason[0]))
    }
    
    func (c *sigctxt) set_eip(x uint32)     { c.regs().__gregs[_REG_EIP] = x }
    func (c *sigctxt) set_esp(x uint32)     { c.regs().__gregs[_REG_UESP] = x }
    func (c *sigctxt) set_sigcode(x uint32) { c.info._code = int32(x) }
    func (c *sigctxt) set_sigaddr(x uint32) {
    	*(*uint32)(unsafe.Pointer(&c.info._reason[0])) = x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/fit.go

    	if len(insufficientResources) != 0 {
    		// We will keep all failure reasons.
    		failureReasons := make([]string, 0, len(insufficientResources))
    		for i := range insufficientResources {
    			failureReasons = append(failureReasons, insufficientResources[i].Reason)
    		}
    		return framework.NewStatus(framework.Unschedulable, failureReasons...)
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. src/runtime/signal_netbsd_arm64.go

    func (c *sigctxt) fault() uintptr  { return uintptr(c.info._reason) }
    func (c *sigctxt) trap() uint64    { return 0 }
    func (c *sigctxt) error() uint64   { return 0 }
    func (c *sigctxt) oldmask() uint64 { return 0 }
    
    func (c *sigctxt) sigcode() uint64 { return uint64(c.info._code) }
    func (c *sigctxt) sigaddr() uint64 { return uint64(c.info._reason) }
    
    func (c *sigctxt) set_pc(x uint64)  { c.regs().__gregs[_REG_ELR] = x }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 20 15:02:01 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

        - lastTransitionTime: fake
          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: Wed May 08 20:24:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonStartupMessage.java

            if (totalUnavailableDaemons > 0) {
                final List<String> reasons = new ArrayList<>();
                if (numBusy > 0) {
                    reasons.add(numBusy + " busy");
                }
                if (numIncompatible > 0) {
                    reasons.add(numIncompatible + " incompatible");
                }
                if (numStopped > 0) {
                    reasons.add(numStopped + " stopped");
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top