Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 604 for illegal (0.12 sec)

  1. src/runtime/internal/sys/nih.go

    //
    // The last point is the real benefit of NotInHeap. The runtime uses
    // it for low-level internal structures to avoid memory barriers in the
    // scheduler and the memory allocator where they are illegal or simply
    // inefficient. This mechanism is reasonably safe and does not compromise
    // the readability of the runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 18:24:50 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

            failure.assertThatCause(containsString("Only Project and Settings build scripts can contain plugins {} blocks"))
            includesLinkToUserguide()
        }
    
        def "illegal syntax in plugins block - #code"() {
            when:
            buildScript("""plugins {\n$code\n}""")
    
            then:
            fails "help"
            failure.assertHasLineNumber lineNumber
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskDependencyIntegrationTest.groovy

                buildFile << """
        task illegal {
            dependsOn gradle.includedBuild('$buildName').task(':logProject')
        }
    """
            }
            includedBuilds << buildC
    
            buildA.buildFile << """
        task delegate {
            dependsOn gradle.includedBuild('buildC').task(':illegal')
        }
        task logProject {}
    """
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top