Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 528 for reason2 (0.28 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    			found = true
    			break
    		}
    	}
    	if !found {
    		var reason string
    		if len(returnTypes) == 1 {
    			reason = fmt.Sprintf("must evaluate to %v", returnTypes[0].String())
    		} else {
    			reason = fmt.Sprintf("must evaluate to one of %v", returnTypes)
    		}
    
    		return resultError(reason, apiservercel.ErrorTypeInvalid)
    	}
    
    	_, err = cel.AstToCheckedExpr(ast)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    		return authorizer.DecisionDeny, r.Status.Reason, fmt.Errorf("webhook subject access review returned both allow and deny response")
    	case r.Status.Denied:
    		return authorizer.DecisionDeny, r.Status.Reason, nil
    	case r.Status.Allowed:
    		return authorizer.DecisionAllow, r.Status.Reason, nil
    	default:
    		return authorizer.DecisionNoOpinion, r.Status.Reason, nil
    	}
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/inl_test.go

    				continue
    			}
    		}
    		if m := cannotInline.FindStringSubmatch(line); m != nil {
    			fname, reason := m[1], m[2]
    			fullName := curPkg + "." + fname
    			if _, ok := notInlinedReason[fullName]; ok {
    				// cmd/compile gave us a reason why
    				notInlinedReason[fullName] = reason
    			}
    			continue
    		}
    	}
    	if err := <-cmdErr; err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MultiProjectJvmApplicationInitIntegrationTest.groovy

    class GroovyDslMultiProjectKotlinApplicationInitIntegrationTest1 extends AbstractMultiProjectJvmApplicationInitIntegrationTest1 {
        def setup() {
            setupDslAndLanguage(BuildInitDsl.GROOVY, KOTLIN)
        }
    }
    
    @Requires(value = UnitTestPreconditions.KotlinOnlySupportsJdk21Earlier.class, reason = "Kotlin cannot compile on Java 22 yet")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

     * tested against dependencies which will not necessarily be present at runtime. For this reason, we are
     * planning to deprecate the "extending" functionality. For more information, see {@link #doExtendProductionCode}.</p>
     *
     * <p>For backwards compatibility reasons, when this feature is operating in the "extending" mode,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. src/internal/trace/summary_test.go

    	if stats.SyscallBlockTime < 0 {
    		t.Error("found negative SyscallBlockTime")
    	}
    	if stats.TotalTime < 0 {
    		t.Error("found negative TotalTime")
    	}
    	for reason, dt := range stats.BlockTimeByReason {
    		if dt < 0 {
    			t.Errorf("found negative BlockTimeByReason for %s", reason)
    		}
    	}
    	for name, dt := range stats.RangeTime {
    		if dt < 0 {
    			t.Errorf("found negative RangeTime for range %s", name)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/types.go

    	// +optional
    	LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,4,opt,name=lastTransitionTime"`
    	// (brief) reason for the condition's last transition.
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,5,opt,name=reason"`
    	// Human readable message indicating details about last transition.
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,6,opt,name=message"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/compile/internal/test/pgo_inl_test.go

    				continue
    			}
    		}
    		if m := cannotInline.FindStringSubmatch(line); m != nil {
    			fname, reason := m[1], m[2]
    			fullName := curPkg + "." + fname
    			if _, ok := notInlinedReason[fullName]; ok {
    				// cmd/compile gave us a reason why
    				notInlinedReason[fullName] = reason
    			}
    			delete(expectedNotInlinedList, fullName)
    			continue
    		}
    	}
    	if err := scanner.Err(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top