Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 511 for posting (0.16 sec)

  1. pkg/api/testing/node_example.json

                    "type": "Ready",
                    "status": "True",
                    "lastHeartbeatTime": "2015-04-22T11:58:17Z",
                    "lastTransitionTime": "2015-04-22T11:49:52Z",
                    "reason": "kubelet is posting ready status"
                }
            ],
            "addresses": [
                {
                    "type": "ExternalIP",
                    "address": "104.197.49.213"
                },
                {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 00:36:50 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server_test.go

    	t.Run("checkpointing fails because disabled", func(t *testing.T) {
    		resp, err := http.Post(fw.testHTTPServer.URL+"/checkpoint/"+podNamespace+"/"+podName+"/"+expectedContainerName, "", nil)
    		if err != nil {
    			t.Errorf("Got error POSTing: %v", err)
    		}
    		assert.Equal(t, 404, resp.StatusCode)
    	})
    }
    
    func makeReq(t *testing.T, method, url, clientProtocol string) *http.Request {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. .github/actions/comment-docs-preview-in-pr/app/main.py

            json={
                "body": f"📝 Docs preview for commit {use_pr.head.sha} at: {settings.input_deploy_url}"
            },
        )
        if not (200 <= response.status_code <= 300):
            logging.error(f"Error posting comment: {response.text}")
            sys.exit(1)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 15:02:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. samples/guide/src/main/java/okhttp3/recipes/PostStreamingWithPipe.java

              int x = n / i;
              if (x * i == n) return factor(x) + " × " + i;
            }
            return Integer.toString(n);
          }
        };
    
        thread.start();
      }
    
      /**
       * This request body makes it possible for another thread to stream data to the uploading request.
       * This is potentially useful for posting live event streams like video capture. Callers should
       * write to {@code sink()} and close it to complete the post.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Jul 06 03:18:15 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  5. src/net/http/triv.go

    var helloRequests = expvar.NewInt("hello-requests")
    
    func HelloServer(w http.ResponseWriter, req *http.Request) {
    	helloRequests.Add(1)
    	io.WriteString(w, "hello, world!\n")
    }
    
    // Simple counter server. POSTing to it will set the value.
    type Counter struct {
    	mu sync.Mutex // protects n
    	n  int
    }
    
    // This makes Counter satisfy the [expvar.Var] interface, so we can export
    // it directly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. pilot/test/mock/config.go

    		t.Error("expected error posting empty object")
    	}
    
    	if _, err := r.Create(invalid); err == nil {
    		t.Error("expected error posting invalid object")
    	}
    
    	if _, err := r.Update(config2.Config{}); err == nil {
    		t.Error("expected error updating empty object")
    	}
    
    	if _, err := r.Update(invalid); err == nil {
    		t.Error("expected error putting invalid object")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. docs/recipes.md

            }
          }
        ```
    
    ### Posting a String ([.kt][PostStringKotlin], [.java][PostStringJava])
    
    Use an HTTP POST to send a request body to a service. This example posts a markdown document to a web service that renders markdown as HTML. Because the entire request body is in memory simultaneously, avoid posting large (greater than 1 MiB) documents using this API.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  8. code_of_conduct.md

    when an individual is representing the project or its community. Examples of
    representing a project or community include using an official project e-mail
    address, posting via an official social media account, or acting as an appointed
    representative at an online or offline event. Representation of a project may be
    further defined and clarified by project maintainers.
    
    ## Enforcement
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 20 18:38:58 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  9. src/crypto/rc4/rc4_test.go

    	}
    }
    
    func benchmark(b *testing.B, size int64) {
    	buf := make([]byte, size)
    	c, err := NewCipher(golden[0].key)
    	if err != nil {
    		panic(err)
    	}
    	b.SetBytes(size)
    
    	for i := 0; i < b.N; i++ {
    		c.XORKeyStream(buf, buf)
    	}
    }
    
    func BenchmarkRC4_128(b *testing.B) {
    	benchmark(b, 128)
    }
    
    func BenchmarkRC4_1K(b *testing.B) {
    	benchmark(b, 1024)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 21 19:49:06 UTC 2018
    - 4.3K bytes
    - Viewed (0)
  10. CODE_OF_CONDUCT.md

    The Code of Conduct also applies within project spaces and in public spaces whenever an individual is representing TensorFlow or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed or de facto representative at an online or offline event. 
    
    
    ## Conflict Resolution
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 05 18:43:16 UTC 2021
    - 5.2K bytes
    - Viewed (0)
Back to top