Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 631 for Succeeded (0.12 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java

                                break;
                            case CORRUPTED:
                                delegate.transferCorrupted(transferEvent);
                                break;
                            case SUCCEEDED:
                                delegate.transferSucceeded(transferEvent);
                                break;
                            case FAILED:
                                delegate.transferFailed(transferEvent);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 20:50:56 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact.go

    	).Else(
    		clientv3.OpGet(compactRevKey),
    	).Commit()
    	if err != nil {
    		return t, rev, err
    	}
    
    	curRev := resp.Header.Revision
    
    	if !resp.Succeeded {
    		curTime := resp.Responses[0].GetResponseRange().Kvs[0].Version
    		return curTime, curRev, nil
    	}
    	curTime := t + 1
    
    	if rev == 0 {
    		// We don't compact on bootstrap.
    		return curTime, curRev, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 17 02:54:36 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  3. src/net/writev_test.go

    	buf := make([]byte, 1<<20)
    	buffers := make(Buffers, 1<<10)
    	for i := range buffers {
    		buffers[i] = buf
    	}
    	if _, err := buffers.WriteTo(c1); err == nil {
    		t.Fatal("Buffers.WriteTo(closed conn) succeeded, want error")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. src/go/format/format_test.go

    		if strings.HasPrefix(src, "ERROR") {
    			// test expected to fail
    			src = src[5:] // remove ERROR prefix
    			res, err := String(src)
    			if err == nil && res == src {
    				t.Errorf("formatting succeeded but was expected to fail:\n%q", src)
    			}
    		} else {
    			// test expected to succeed
    			res, err := String(src)
    			if err != nil {
    				t.Errorf("formatting failed (%s):\n%q", err, src)
    			} else if res != src {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:46 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  5. src/runtime/debug/stack_test.go

    	cmd.Env = append(os.Environ(), "GO_RUNTIME_DEBUG_TEST_ENTRYPOINT=setcrashoutput", "CRASHOUTPUT="+crashOutput)
    	err = cmd.Run()
    	stderr := fmt.Sprint(cmd.Stderr)
    	if err == nil {
    		t.Fatalf("child process succeeded unexpectedly (stderr: %s)", stderr)
    	}
    	t.Logf("child process finished with error %v and stderr <<%s>>", err, stderr)
    
    	// Read the file the child process should have written.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/net/fd_unix.go

    		// necessarily result in earlier errors being
    		// returned. Instead, once runtime-integrated network
    		// poller tells us that the socket is ready, get the
    		// SO_ERROR socket option to see if the connection
    		// succeeded or failed. See issue 7474 for further
    		// details.
    		if err := fd.pfd.WaitWrite(); err != nil {
    			select {
    			case <-ctxDone:
    				return nil, mapErr(ctx.Err())
    			default:
    			}
    			return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 20:19:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. pkg/registry/batch/job/strategy_test.go

    			enableJobManagedBy: true,
    			job: &batch.Job{
    				ObjectMeta: validObjectMeta,
    			},
    			newJob: &batch.Job{
    				ObjectMeta: validObjectMeta,
    				Status: batch.JobStatus{
    					StartTime:      &now,
    					CompletionTime: &now,
    					UncountedTerminatedPods: &batch.UncountedTerminatedPods{
    						Succeeded: []types.UID{"a"},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  8. src/cmd/gofmt/internal.go

    			src = src[:len(src)-len("}\n")]
    			return bytes.TrimSpace(src)
    		}
    		// Gofmt has also indented the function body one level.
    		// Adjust that with indentAdj.
    		indentAdj = -1
    	}
    
    	// Succeeded, or out of options.
    	return
    }
    
    // format formats the given package file originally obtained from src
    // and adjusts the result based on the original source via sourceAdj
    // and indentAdj.
    func format(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  9. src/crypto/hmac/hmac.go

    	if err != nil {
    		return
    	}
    
    	h.outer.Reset()
    	h.outer.Write(h.opad)
    	omarshal, err := marshalableOuter.MarshalBinary()
    	if err != nil {
    		return
    	}
    
    	// Marshaling succeeded; save the marshaled state for later
    	h.ipad = imarshal
    	h.opad = omarshal
    	h.marshaled = true
    }
    
    // New returns a new HMAC hash using the given [hash.Hash] type and key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/go/format/internal.go

    			src = src[:len(src)-len("}\n")]
    			return bytes.TrimSpace(src)
    		}
    		// Gofmt has also indented the function body one level.
    		// Adjust that with indentAdj.
    		indentAdj = -1
    	}
    
    	// Succeeded, or out of options.
    	return
    }
    
    // format formats the given package file originally obtained from src
    // and adjusts the result based on the original source via sourceAdj
    // and indentAdj.
    func format(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
Back to top