Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for METHOD (0.27 sec)

  1. guava/src/com/google/common/collect/Maps.java

      }
    
      /**
       * Computes the difference between two maps. This difference is an immutable snapshot of the state
       * of the maps at the time this method is called. It will never change, even if the maps change at
       * a later time.
       *
       * <p>Since this method uses {@code HashMap} instances internally, the keys of the supplied maps
       * must be well-behaved with respect to {@link Object#equals} and {@link Object#hashCode}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    				next := <-siteCh
    				if next.Method != "HEAD" {
    					t.Errorf("Wrong method at destination: %s", next.Method)
    				}
    				if nextURL := next.URL.String(); nextURL != "/" {
    					t.Errorf("Wrong URL at destination: %s", nextURL)
    				}
    			} else {
    				if got.Method != "HEAD" {
    					t.Errorf("Wrong method for destination: %q", got.Method)
    				}
    				gotURL := got.URL.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

        val request =
          Request.Builder()
            .url(server.url("/"))
            .method("POST", ByteArray(0).toRequestBody(null))
            .build()
        executeSynchronously(request)
          .assertCode(200)
          .assertBody("abc")
        val recordedRequest = server.takeRequest()
        assertThat(recordedRequest.method).isEqualTo("POST")
        assertThat(recordedRequest.body.size).isEqualTo(0)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    	if req == nil {
    		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)
  5. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public void ClassMap(Class); Class getCachedClass(); public reflect.Method findMethod(String, Object[]) throws MethodMap$AmbiguousException; private void populateMethodCache(); private String makeMethodKey(reflect.Method); private static String makeMethodKey(String, Object[]); private static reflect.Method[] getAccessibleMethods(Class); private static int getAccessibleMethods(Class, ClassMap$MethodInfo[], int); public static reflect.Method getPublicMethod(reflect.Method); private static reflect.Method...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                    case FileType.Missing:
                        return """
                                    outputs.${method}('this_file_does_not.exist').delete()
    
                                """
                    case FileType.Directory:
                        return """
                                    def output = outputs.${method}('directory')
                                    output.mkdirs()
                                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    	}
    	// store all httproute with prefix match uri
    	tmpPrefix := match.Uri.GetPrefix()
    	if tmpPrefix != "" {
    		// set Method
    		methodExact := match.Method.GetExact()
    		methodPrefix := match.Method.GetPrefix()
    		methodMatch := assignExactOrPrefix(methodExact, methodPrefix)
    		// if no method information, it should be GET by default
    		if methodMatch == "" {
    			methodMatch = matchExact + "GET"
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    }
    
    // killPod instructs the container runtime to kill the pod. This method requires that
    // the pod status contains the result of the last syncPod, otherwise it may fail to
    // terminate newly created containers and sandboxes.
    func (kl *Kubelet) killPod(ctx context.Context, pod *v1.Pod, p kubecontainer.Pod, gracePeriodOverride *int64) error {
    	// Call the container runtime KillPod method which stops all known running containers of the pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if fn(mwq) {
    		mwq.Method.Traverse(fn)
    	}
    }
    
    func (mwq *MethodWithQualifiers) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(mwq) {
    		return nil
    	}
    	method := mwq.Method.Copy(fn, skip)
    	var quals AST
    	if mwq.Qualifiers != nil {
    		quals = mwq.Qualifiers.Copy(fn, skip)
    	}
    	if method == nil && quals == nil {
    		return fn(mwq)
    	}
    	if method == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    // there is further result sets, or false if there is no further result set
    // or if there is an error advancing to it. The [Rows.Err] method should be consulted
    // to distinguish between the two cases.
    //
    // After calling NextResultSet, the [Rows.Next] method should always be called before
    // scanning. If there are further result sets they may not have rows in the result
    // set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top