Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for pos3 (0.06 sec)

  1. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		v0 := b.NewValue0(v.Pos, OpMIPS64AND, typ.UInt32Ptr)
    		v1 := b.NewValue0(v.Pos, OpMIPS64MOVVconst, typ.UInt64)
    		v1.AuxInt = int64ToAuxInt(^3)
    		v0.AddArg2(v1, ptr)
    		v2 := b.NewValue0(v.Pos, OpMIPS64OR, typ.UInt64)
    		v3 := b.NewValue0(v.Pos, OpMIPS64SLLV, typ.UInt32)
    		v4 := b.NewValue0(v.Pos, OpZeroExt8to32, typ.UInt32)
    		v4.AddArg(val)
    		v5 := b.NewValue0(v.Pos, OpMIPS64SLLVconst, typ.UInt64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		v.reset(OpRISCV64LoweredAtomicAnd32)
    		v0 := b.NewValue0(v.Pos, OpRISCV64ANDI, typ.Uintptr)
    		v0.AuxInt = int64ToAuxInt(^3)
    		v0.AddArg(ptr)
    		v1 := b.NewValue0(v.Pos, OpRISCV64NOT, typ.UInt32)
    		v2 := b.NewValue0(v.Pos, OpRISCV64SLL, typ.UInt32)
    		v3 := b.NewValue0(v.Pos, OpRISCV64XORI, typ.UInt32)
    		v3.AuxInt = int64ToAuxInt(0xff)
    		v4 := b.NewValue0(v.Pos, OpZeroExt8to32, typ.UInt32)
    		v4.AddArg(val)
    		v3.AddArg(v4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/helpers_test.go

    	pod2 := newPod("low-priority-low-usage", lowPriority, nil, nil)
    	pod3 := newPod("high-priority-high-usage", highPriority, nil, nil)
    	pod4 := newPod("high-priority-low-usage", highPriority, nil, nil)
    	stats := map[*v1.Pod]statsapi.PodStats{
    		pod1: newPodProcessStats(pod1, 20),
    		pod2: newPodProcessStats(pod2, 6),
    		pod3: newPodProcessStats(pod3, 20),
    		pod4: newPodProcessStats(pod4, 5),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      /** For example, empty Protobuf RPC messages end up as a zero-length POST.  */
      @Test
      fun zeroLengthPost() {
        zeroLengthPayload("POST")
      }
    
      @Test
      fun zeroLengthPost_HTTP_2() {
        enableProtocol(Protocol.HTTP_2)
        zeroLengthPost()
      }
    
      /** For example, creating an Amazon S3 bucket ends up as a zero-length POST.  */
      @Test
      fun zeroLengthPut() {
        zeroLengthPayload("PUT")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CallTest.kt

        assertThat(recordedRequest.method).isEqualTo("POST")
        assertThat(recordedRequest.body.readUtf8()).isEqualTo("def")
        assertThat(recordedRequest.headers["Content-Length"]).isEqualTo("3")
        assertThat(recordedRequest.headers["Content-Type"]).isEqualTo("text/plain; charset=utf-8")
      }
    
      @Test
      fun post_HTTPS() {
        enableTls()
        post()
      }
    
      @Test
      fun post_HTTP_2() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    			want: false,
    		},
    		{
    			name: "POST",
    			req:  &Request{Method: "POST"},
    			want: false,
    		},
    		{
    			name: "POST_idempotency-key",
    			req:  &Request{Method: "POST", Header: Header{"Idempotency-Key": {"x"}}},
    			want: true,
    		},
    		{
    			name: "POST_x-idempotency-key",
    			req:  &Request{Method: "POST", Header: Header{"X-Idempotency-Key": {"x"}}},
    			want: true,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		t.Fatal("Got nil first request.")
    	}
    	if req.Method != "POST" {
    		t.Errorf("For request #1's method, got %q; expected %q",
    			req.Method, "POST")
    	}
    
    	req = <-ch
    	if req == nil {
    		t.Fatal("Got nil first request.")
    	}
    	if req.Method != "POST" {
    		t.Errorf("For request #2's method, got %q; expected %q",
    			req.Method, "POST")
    	}
    
    	if serveerr := <-servech; serveerr != io.EOF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    const (
    	mgmtBucket      = "bucket"
    	mgmtPrefix      = "prefix"
    	mgmtClientToken = "clientToken"
    	mgmtForceStart  = "forceStart"
    	mgmtForceStop   = "forceStop"
    )
    
    // ServerUpdateV2Handler - POST /minio/admin/v3/update?updateURL={updateURL}&type=2
    // ----------
    // updates all minio servers and restarts them gracefully.
    func (a adminAPIHandlers) ServerUpdateV2Handler(w http.ResponseWriter, r *http.Request) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    	perr := struct {
    		ImportStack []string
    		Pos         string
    		Err         string
    	}{p.ImportStack, p.Pos, p.Err.Error()}
    	return json.Marshal(perr)
    }
    
    func (p *PackageError) setPos(posList []token.Position) {
    	if len(posList) == 0 {
    		return
    	}
    	pos := posList[0]
    	pos.Filename = base.ShortPath(pos.Filename)
    	p.Pos = pos.String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CacheTest.kt

      fun requestMethodPostIsNotCached() {
        // We could support this but choose not to for implementation simplicity
        testRequestMethod("POST", false)
      }
    
      @Test
      fun requestMethodPostIsNotCachedUnlessOverridden() {
        // Supported via cacheUrlOverride
        testRequestMethod("POST", true, withOverride = true)
      }
    
      @Test
      fun requestMethodPutIsNotCached() {
        testRequestMethod("PUT", false)
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
Back to top