Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 123 for Bad (0.04 sec)

  1. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

                            if (allowUnusable && e.getCause()!=null && e.getCause().getClass().getSimpleName().equals("NoUsableDaemonFoundException")) {
                                System.out.println("Daemon registry is in a bad state and we cannot connect to the daemon.");
                                System.exit(0);
                            } else {
                                e.printStackTrace();
                                System.exit(1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. src/runtime/map_faststr.go

    		x.k = add(unsafe.Pointer(x.b), dataOffset)
    		x.e = add(x.k, abi.MapBucketCount*2*goarch.PtrSize)
    
    		if !h.sameSizeGrow() {
    			// Only calculate y pointers if we're growing bigger.
    			// Otherwise GC can see bad pointers.
    			y := &xy[1]
    			y.b = (*bmap)(add(h.buckets, (oldbucket+newbit)*uintptr(t.BucketSize)))
    			y.k = add(unsafe.Pointer(y.b), dataOffset)
    			y.e = add(y.k, abi.MapBucketCount*2*goarch.PtrSize)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

      project
    - nice little sample projects that could be run in the core as well as integration tests
    
    All Possible Errors
    - invalid lifecycle phase (maybe same as bad CLI param, though you were talking about embedder too)
    - <module> specified is not found
    - malformed settings
    - malformed POM
    - local repository not writable
    - remote repositories not available
    - artifact metadata missing
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/3043")
        def "URL-quoted characters in file names are handled properly"() {
            def weirdOutputPath = 'build/bad&dir/bad! Dezső %20.txt'
            def expectedOutput = file(weirdOutputPath)
            buildFile << """
                task weirdOutput {
                    outputs.dir("build")
                    outputs.cacheIf { true }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. cmd/post-policy_test.go

    			secretKey:          credentials.SecretKey,
    			malformedBody:      false,
    		},
    		// Bad case invalid request.
    		{
    			objectName:         "test",
    			data:               []byte("Hello, World"),
    			expectedRespStatus: http.StatusForbidden,
    			accessKey:          "",
    			secretKey:          "",
    			malformedBody:      false,
    		},
    		// Bad case malformed input.
    		{
    			objectName:         "test",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. src/runtime/crash_test.go

    	if want := "runtime.abort"; !strings.Contains(output, want) {
    		t.Errorf("output does not contain %q:\n%s", want, output)
    	}
    	if strings.Contains(output, "BAD") {
    		t.Errorf("output contains BAD:\n%s", output)
    	}
    	// Check that it's a signal traceback.
    	want := "PC="
    	// For systems that use a breakpoint, check specifically for that.
    	switch runtime.GOARCH {
    	case "386", "amd64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. src/runtime/race_ppc64le.s

    // R6 = addr of incoming arg list
    // R8 contains addr of target function.
    TEXT	racecallatomic<>(SB), NOSPLIT, $0-0
    	// Trigger SIGSEGV early if address passed to atomic function is bad.
    	MOVD	(R6), R7	// 1st arg is addr
    	MOVB	(R7), R9	// segv here if addr is bad
    	// Check that addr is within [arenastart, arenaend) or within [racedatastart, racedataend).
    	MOVD	runtime·racearenastart(SB), R9
    	CMP	R7, R9
    	BLT	racecallatomic_data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    		decodedGVK       *schema.GroupVersionKind
    		decodeIntoObject runtime.Object
    		baseErr          error
    		expectedErr      error
    	}{
    		{
    			name:  "decoding normal objects fails and returns a bad-request error",
    			typer: clientgoscheme.Scheme,
    			decodedGVK: &schema.GroupVersionKind{
    				Group:   testapigroupv1.GroupName,
    				Version: "v1",
    				Kind:    "Carp",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  9. cmd/signature-v4_test.go

    				"X-Amz-Credential": []string{fmt.Sprintf(credentialTemplate, "EXAMPLEINVALIDEXAMPL", now.Format(yyyymmdd), globalMinioDefaultRegion)},
    			},
    			expected: ErrInvalidAccessKeyID,
    		},
    		// (2) It should fail with a bad signature.
    		{
    			form: http.Header{
    				"X-Amz-Credential": []string{fmt.Sprintf(credentialTemplate, accessKey, now.Format(yyyymmdd), globalMinioDefaultRegion)},
    				"X-Amz-Date":       []string{now.Format(iso8601Format)},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/runtime/gc_test.go

    	last := int64(ms.LastGC)
    	if t0 > last || last > t1 {
    		t.Fatalf("bad last GC time: got %v, want [%v, %v]", last, t0, t1)
    	}
    	pause := ms.PauseNs[(ms.NumGC+255)%256]
    	// Due to timer granularity, pause can actually be 0 on windows
    	// or on virtualized environments.
    	if pause == 0 {
    		t.Logf("last GC pause was 0")
    	} else if pause > 10e9 {
    		t.Logf("bad last GC pause: got %v, want [0, 10e9]", pause)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top