Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,161 for ErrorIs (0.15 sec)

  1. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

        conditions:
        - 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    func (o *RecommendedOptions) Validate() []error {
    	errors := []error{}
    	errors = append(errors, o.Etcd.Validate()...)
    	errors = append(errors, o.SecureServing.Validate()...)
    	errors = append(errors, o.Authentication.Validate()...)
    	errors = append(errors, o.Authorization.Validate()...)
    	errors = append(errors, o.Audit.Validate()...)
    	errors = append(errors, o.Features.Validate()...)
    	errors = append(errors, o.CoreAPI.Validate()...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. src/os/error.go

    // license that can be found in the LICENSE file.
    
    package os
    
    import (
    	"internal/poll"
    	"io/fs"
    )
    
    // Portable analogs of some common system call errors.
    //
    // Errors returned from this package may be tested against these errors
    // with [errors.Is].
    var (
    	// ErrInvalid indicates an invalid argument.
    	// Methods on File will return this error when the receiver is nil.
    	ErrInvalid = fs.ErrInvalid // "invalid argument"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/matchconditions/matcher_test.go

    			failPolicy:  &ignore,
    			shouldMatch: false,
    			throwError:  true,
    		},
    		{
    			name: "test mix of true, errors and false",
    			evaluations: []cel.EvaluationResult{
    				{
    					EvalResult:         celtypes.True,
    					ExpressionAccessor: &MatchCondition{},
    				},
    				{
    					Error:              errors.New("test error"),
    					ExpressionAccessor: &MatchCondition{},
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 00:53:08 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/ResolutionTracerTest.kt

            assertNull(resolver.trace.expressionResolution(failedLhs.lhs).result)
            assertEquals(listOf(ErrorReason.UnresolvedReference::class), resolver.trace.expressionResolution(failedLhs.lhs).errors?.map { it.errorReason::class })
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/cache/desired_state_of_wold_selinux_metrics.go

    		&compbasemetrics.GaugeOpts{
    			Name:           "volume_manager_selinux_pod_context_mismatch_warnings_total",
    			Help:           "Number of errors when a Pod defines different SELinux contexts for its containers that use the same volume. They are not errors yet, but they will become real errors when SELinuxMountReadWriteOncePod feature is expanded to all volume access modes.",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{"access_mode"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 12:16:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/errorsas/errorsas.go

    		return nil
    	}
    	pt, ok := t.Underlying().(*types.Pointer)
    	if !ok {
    		return errors.New("second argument to errors.As must be a non-nil pointer to either a type that implements error, or to any interface type")
    	}
    	if pt.Elem() == errorType {
    		return errors.New("second argument to errors.As should not be *error")
    	}
    	_, ok = pt.Elem().Underlying().(*types.Interface)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_ja.properties

    errors.property_type_long={0}は数値です。
    errors.property_type_float={0}は数値です。
    errors.property_type_double={0}は数値です。
    errors.property_type_date={0}は日付です。
    
    errors.storage_file_upload_failure={0} のアップロードに失敗しました。
    errors.storage_file_not_found=対象のファイルはストレージ内にありません。
    errors.storage_file_download_failure={0} のダウンロードに失敗しました。
    errors.storage_access_error=ストレージアクセスエラー: {0}
    errors.storage_no_upload_file=アップロードするファイルを指定してください。
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_json.txt

    stdout '(?s)"Action":"start","Package":"errors".*"Action":"start","Package":"m/empty/pkg".*"Action":"start","Package":"m/skipper"'
    
    # Run go test -json on errors and check it's cached
    go test -json -short -v errors
    stdout '"Action":"output","Package":"errors","Output":".*\(cached\)'
    
    go test -json -bench=NONE -short -v errors
    stdout '"Package":"errors"'
    stdout '"Action":"run"'
    
    # Test running test2json
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/tls.status.yaml.golden

        conditions:
        - 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top