Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for ulong (0.09 sec)

  1. cmd/batch-handlers.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"
    	"encoding/binary"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"math/rand"
    	"net/http"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			// to reuse timers instead of constantly allocating.
    			startTime := time.Now()
    			timeout := c.dispatchTimeoutBudget.takeAvailable()
    			c.timer.Reset(timeout)
    
    			// Send event to all blocked watchers. As long as timer is running,
    			// `add` will wait for the watcher to unblock. After timeout,
    			// `add` will not wait, but immediately close a still blocked watcher.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. cmd/erasure-object.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"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"io"
    	"net/http"
    	"path"
    	"runtime"
    	"strconv"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.pb.go

    	ApplicationTunnel_NONE ApplicationTunnel_Protocol = 0
    	// Prepend PROXY protocol headers before copying bytes
    	// Standard PROXY source and destination information
    	// is included, along with potential extra TLV headers:
    	// 0xD0 - The SPIFFE identity of the source workload
    	// 0xD1 - The FQDN or Hostname of the targeted Service
    	ApplicationTunnel_PROXY ApplicationTunnel_Protocol = 1
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Prefetch instructions (TH specified using aux field)
    // For DCBT Ra,Rb,TH, A value of TH indicates:
    //     0, hint this cache line will be used soon. (PrefetchCache)
    //     16, hint this cache line will not be used for long. (PrefetchCacheStreamed)
    // See ISA 3.0 Book II 4.3.2 for more detail. https://openpower.foundation/specifications/isa/
    (PrefetchCache ptr mem)          => (DCBT ptr mem [0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    func VendorDir() string {
    	if inWorkspaceMode() {
    		return filepath.Join(filepath.Dir(WorkFilePath()), "vendor")
    	}
    	// Even if -mod=vendor, we could be operating with no mod root (and thus no
    	// vendor directory). As long as there are no dependencies that is expected
    	// to work. See script/vendor_outside_module.txt.
    	modRoot := MainModules.ModRoot(MainModules.mustGetSingleMainModule())
    	if modRoot == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			}
    		})
    	}
    }
    
    // seedMultiLevelData creates a set of keys with a multi-level structure, returning a resourceVersion
    // from before any were created along with the full set of objects that were persisted
    func seedMultiLevelData(ctx context.Context, store storage.Interface) (string, []*example.Pod, error) {
    	// Setup storage with the following structure:
    	//  /
    	//   - first/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top