Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for melhor (0.13 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.ActionConfiguration.getParams()> does not have raw return type assignable to org.gradle.api.provider.Property in (ActionConfiguration.java:0)
    Method <org.gradle.api.AntBuilder.getAnt()> does not have raw return type assignable to org.gradle.api.provider.Provider in (AntBuilder.java:0)
    Method <org.gradle.api.AntBuilder.getLifecycleLogLevel()> does not have raw return type assignable to org.gradle.api.provider.Property in (AntBuilder.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  2. src/net/http/server.go

    // In general, a pattern looks like
    //
    //	[METHOD ][HOST]/[PATH]
    //
    // All three parts are optional; "/" is a valid pattern.
    // If METHOD is present, it must be followed by at least one space or tab.
    //
    // Literal (that is, non-wildcard) parts of a pattern match
    // the corresponding parts of a request case-sensitively.
    //
    // A pattern with no method matches every method. A pattern
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. 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)
  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. 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)
  6. 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)
  7. pkg/kubelet/kubelet.go

    // returns without error, the pod is considered to be terminated and it will be safe to clean up any
    // pod state that is tied to the lifetime of running containers. The next method invoked will be
    // SyncTerminatedPod. This method is expected to return with the grace period provided and the
    // provided context may be cancelled if the duration is exceeded. The method may also be interrupted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //	go doc json
    //		Shorthand for encoding/json.
    //	go doc json.Number (or go doc json.number)
    //		Show documentation and method summary for json.Number.
    //	go doc json.Number.Int64 (or go doc json.number.int64)
    //		Show documentation for json.Number's Int64 method.
    //	go doc cmd/doc
    //		Show package docs for the doc command.
    //	go doc -cmd cmd/doc
    //		Show package docs and exported symbols within the doc command.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    					t.Fatalf("unexpected requested pod termination: %#v", s)
    				}
    				// expect we get a pod sync record for kill that should have the same grace period as before (2), but no
    				// running pod because the SyncKnownPods method killed it
    				if actual, expected := records[uid], []syncPodRecord{
    					{name: "pod1", updateType: kubetypes.SyncPodCreate},
    					{name: "pod1", updateType: kubetypes.SyncPodKill, gracePeriod: &two},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          const std::optional<BufferOffset<tflite::QuantizationParameters>>&
              quant_parameters);
    
      // TODO(b/137395003): Legalize tf.IfOp to TFLite dialect, and change the
      // following method to handle TFL::IfOp.
      BufferOffset<tflite::Operator> BuildIfOperator(
          mlir::TF::IfOp op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top