Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for noError (0.87 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/zerrors_windows.go

    	E_TIME_SENSITIVE_THREAD                                                                 = ERROR_TIME_SENSITIVE_THREAD
    	E_NO_TASK_QUEUE                                                                         = ERROR_NO_TASK_QUEUE
    	NOERROR                                                                   syscall.Errno = 0
    	E_UNEXPECTED                                                              Handle        = 0x8000FFFF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 923.3K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation_test.go

    		{v1.DeprecatedAppArmorBetaProfileNamePrefix + "foo-bar", true},
    	}
    
    	for _, test := range tests {
    		err := ValidateAppArmorProfileFormat(test.profile)
    		if test.expectValid {
    			assert.NoError(t, err, "Profile %s should be valid", test.profile)
    		} else {
    			assert.Error(t, err, fmt.Sprintf("Profile %s should not be valid", test.profile))
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top