Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 912 for illegal (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/example2/v1/generated.pb.go

    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: ReplicaSet: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: ReplicaSet: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field ObjectMeta", wireType)
    			}
    			var msglen int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/VariantAspectExtractionIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class VariantAspectExtractionIntegrationTest extends AbstractIntegrationSpec {
        def "variant annotation on property with illegal type raises error"() {
            buildFile << """
            @Managed
            interface SampleBinary extends BinarySpec {
                @Variant
                Integer getVariantProp()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/audit/policy/reader.go

    	}
    
    	if err := validation.ValidatePolicy(policy); err != nil {
    		return nil, err.ToAggregate()
    	}
    
    	policyCnt := len(policy.Rules)
    	if policyCnt == 0 {
    		return nil, fmt.Errorf("loaded illegal policy with 0 rules")
    	}
    
    	klog.V(4).InfoS("Load audit policy rules success", "policyCnt", policyCnt)
    	return policy, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 04:09:40 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/JdkIllegalReflectionTestWorkerIntegrationTest.groovy

                }
            """
        }
    
        @Requires(UnitTestPreconditions.Jdk16OrLater)
        @Issue("https://github.com/gradle/gradle/issues/19771")
        def "both tests and production code fail when application uses illegal reflection"() {
            when:
            executer.withStackTraceChecksDisabled()
    
            then:
            fails "run"
            result.assertHasErrorOutput("module java.base does not open java.lang to unnamed module")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/crypto/tls/alert.go

    	alertCertificateRevoked:           "revoked certificate",
    	alertCertificateExpired:           "expired certificate",
    	alertCertificateUnknown:           "unknown certificate",
    	alertIllegalParameter:             "illegal parameter",
    	alertUnknownCA:                    "unknown certificate authority",
    	alertAccessDenied:                 "access denied",
    	alertDecodeError:                  "error decoding message",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/internal/cpu/cpu_arm64_hwcap.go

    	// Check to see if executing on a Neoverse core and in order to do that,
    	// check the AUXV for the CPUID bit. The getMIDR function executes an
    	// instruction which would normally be an illegal instruction, but it's
    	// trapped by the kernel, the value sanitized and then returned.
    	// Without the CPUID bit the kernel will not trap the instruction and the
    	// process will be terminated with SIGILL.
    	if ARM64.HasCPUID {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. internal/lock/lock_windows_test.go

    	"testing"
    )
    
    func TestFixLongPath(t *testing.T) {
    	// 248 is long enough to trigger the longer-than-248 checks in
    	// fixLongPath, but short enough not to make a path component
    	// longer than 255, which is illegal on Windows. (which
    	// doesn't really matter anyway, since this is purely a string
    	// function we're testing, and it's not actually being used to
    	// do a system call)
    	veryLong := "l" + strings.Repeat("o", 248) + "ng"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/ops/variable_ops.h

    // Executes an AssignVariableOp using `ctx`, assigning the variable associated
    // with `variable_handle` with `value`. `dtype` must be the datatype of the
    // underlying variable for `variable_handle`. Note that it is illegal to assign
    // a variable to a Tensor with a different dtype than what the variable was
    // created with.
    Status AssignVariable(ImmediateExecutionContext* ctx,
                          ImmediateExecutionTensorHandle* variable_handle,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPath.java

            }
    
            char firstChar = name.charAt(0);
    
            if (INVALID_FIRST_CHAR_MATCHER.matches(firstChar)) {
                throw new InvalidNameException(String.format("Model element name '%s' has illegal first character '%s' (names must start with an ASCII letter or underscore).", name, firstChar));
            }
    
            for (int i = 1; i < name.length(); ++i) {
                char character = name.charAt(i);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1/generated.pb.go

    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: HTTPIngressPath: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: HTTPIngressPath: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Path", wireType)
    			}
    			var stringLen uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 158.2K bytes
    - Viewed (0)
Back to top