Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 115 for ulong (0.06 sec)

  1. src/cmd/dist/build.go

    			sep = ";"
    		}
    		xprintf(format, "PATH", fmt.Sprintf("%s%s%s", gorootBin, sep, os.Getenv("PATH")))
    
    		// Also include $DIST_UNMODIFIED_PATH with the original $PATH
    		// for the internal needs of "dist banner", along with export
    		// so that it reaches the dist process. See its comment below.
    		var exportFormat string
    		if !*windows && !*plan9 {
    			exportFormat = "export " + format
    		} else {
    			exportFormat = format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		}
    		testCheckResult(t, readingWatcher, watch.Event{Type: watch.Added, Object: out})
    	}
    	if time.Since(startTime) > time.Duration(250*nonReadingWatchers)*time.Millisecond {
    		t.Errorf("waiting for events took too long: %v", time.Since(startTime))
    	}
    }
    
    func RunTestWatchDeleteEventObjectHaveLatestRV(ctx context.Context, t *testing.T, store storage.Interface) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager_test.go

    	verifyActions(t, m, []core.Action{})
    
    	t.Log("Unchanged status should not send an update")
    	m.SetPodStatus(pod, status)
    	verifyUpdates(t, m, 0)
    
    	t.Log("... even if it's stale as long as nothing changes")
    	mirrorPodUID := kubetypes.MirrorPodUID(pod.UID)
    	m.apiStatusVersions[mirrorPodUID] = m.apiStatusVersions[mirrorPodUID] - 1
    
    	m.SetPodStatus(pod, status)
    	m.syncBatch(true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  4. src/net/http/request.go

    	// Deprecated: ErrHeaderTooLong is no longer returned by
    	// anything in the net/http package. Callers should not
    	// compare errors against this variable.
    	ErrHeaderTooLong = &ProtocolError{"header too long"}
    
    	// Deprecated: ErrShortBody is no longer returned by
    	// anything in the net/http package. Callers should not
    	// compare errors against this variable.
    	ErrShortBody = &ProtocolError{"entity body too short"}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v2.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"encoding/binary"
    	"encoding/hex"
    	"errors"
    	"fmt"
    	"io"
    	"sort"
    	"strings"
    	"sync"
    	"time"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	// autoSessionTicketKeys is like sessionTicketKeys but is owned by the
    	// auto-rotation logic. See Config.ticketKeys.
    	autoSessionTicketKeys []ticketKey
    }
    
    const (
    	// ticketKeyLifetime is how long a ticket key remains valid and can be used to
    	// resume a client connection.
    	ticketKeyLifetime = 7 * 24 * time.Hour // 7 days
    
    	// ticketKeyRotation is how often the server should rotate the session ticket key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. cmd/object-api-listobjects_test.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    	"crypto/md5"
    	"encoding/hex"
    	"fmt"
    	"strconv"
    	"strings"
    	"testing"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    func locatePrologEnd(f *Func, needCloCtx bool) (ID, *Value) {
    
    	// returns true if this instruction looks like it moves an ABI
    	// register (or context register for rangefunc bodies) to the
    	// stack, along with the value being stored.
    	isRegMoveLike := func(v *Value) (bool, ID) {
    		n, ok := v.Aux.(*ir.Name)
    		var r ID
    		if (!ok || n.Class != ir.PPARAM) && !needCloCtx {
    			return false, r
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    - Allow parameter to be set along with proto file path ([#124281](https://github.com/kubernetes/kubernetes/pull/124281), [@fulviodenza](https://github.com/fulviodenza)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. cmd/test-utils_test.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"archive/zip"
    	"bufio"
    	"bytes"
    	"context"
    	"crypto/ecdsa"
    	"crypto/hmac"
    	crand "crypto/rand"
    	"crypto/rsa"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
Back to top