Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 165 for METHOD (0.46 sec)

  1. pkg/kubelet/pod_workers.go

    	// be processed in FIFO order by a goroutine per pod UID. The state of the
    	// pod will be passed to the syncPod method until either the pod is marked
    	// as deleted, it reaches a terminal phase (Succeeded/Failed), or the pod
    	// is evicted by the kubelet. Once that occurs the syncTerminatingPod method
    	// will be called until it exits successfully, and after that all further
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            String methodUnderTest = mutatingMethods.key
            Closure method = bind(mutatingMethods.value)
    
            when:
            container.configureEach(method)
            then:
            def ex = thrown(Throwable)
            assertDoesNotAllowMethod(ex, methodUnderTest)
    
            when:
            container.withType(container.type).configureEach(method)
            then:
            ex = thrown(Throwable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. src/net/http/fs_test.go

    	// For now, test the historical behavior.
    	for _, method := range []string{
    		MethodGet,
    		MethodPost,
    		MethodPut,
    		MethodPatch,
    		MethodDelete,
    		MethodOptions,
    		MethodTrace,
    	} {
    		req.Method = method
    		_, body := getBody(t, method, req, c)
    		if !bytes.Equal(body, file) {
    			t.Fatalf("body mismatch for %v request: got %q, want %q", method, body, file)
    		}
    	}
    
    	// HEAD request.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. src/html/template/exec_test.go

    	{".Method3(nil value)", "-{{.Method3 .MXI.unset}}-", "-Method3: <nil>-", tVal, true},
    	{"method on var", "{{if $x := .}}-{{$x.Method2 .U16 $x.X}}{{end}}-", "-Method2: 16 x-", tVal, true},
    	{"method on chained var",
    		"{{range .MSIone}}{{if $.U.TrueFalse $.True}}{{$.U.TrueFalse $.True}}{{else}}WRONG{{end}}{{end}}",
    		"true", tVal, true},
    	{"chained method",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. src/text/template/exec_test.go

    	{".Method3(nil value)", "-{{.Method3 .MXI.unset}}-", "-Method3: <nil>-", tVal, true},
    	{"method on var", "{{if $x := .}}-{{$x.Method2 .U16 $x.X}}{{end}}-", "-Method2: 16 x-", tVal, true},
    	{"method on chained var",
    		"{{range .MSIone}}{{if $.U.TrueFalse $.True}}{{$.U.TrueFalse $.True}}{{else}}WRONG{{end}}{{end}}",
    		"true", tVal, true},
    	{"chained method",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. pkg/kubelet/server/server_test.go

    	tests := map[string]struct {
    		method string
    		bucket string
    	}{
    		"normal GET":     {method: "GET", bucket: "GET"},
    		"normal POST":    {method: "POST", bucket: "POST"},
    		"invalid method": {method: "WEIRD", bucket: "other"},
    	}
    
    	fw := newServerTest()
    	defer fw.testHTTPServer.Close()
    
    	for _, test := range tests {
    		method := test.method
    		bucket := test.bucket
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    include::{snippetsPath}/tasks/incrementalBuild-customTaskClass/tests/incrementalAdHocTaskNoSource.out[]
    ----
    ====
    
    The `TaskInputs.files()` method returns a builder that has a `skipWhenEmpty()` method. Invoking this method is equivalent to annotating to the property with <<#skip-when-empty,`@SkipWhenEmpty`>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

        /**
         * List the contents of this SMB resource as an array of
         * <code>SmbResource</code> objects. This method is much more efficient than
         * the regular <code>list</code> method when querying attributes of each
         * file in the result set.
         * <p>
         * The list of <code>SmbResource</code>s returned by this method will be;
         *
         * <ul>
         * <li>files and directories contained within this resource if the
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <2> The `GroovyObject` API is available
    <3> Invoke the `methodName` method, passing some parameters
    <4> Configure the `blockName` property, maps to a `Closure` taking method invocation
    <5> Invoke `another` method taking named arguments, maps to a Groovy named arguments `Map<String, ?>` taking method invocation
    
    [[using_a_groovy_script]]
    === Using a Groovy script
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

                            function_name=qc.FunctionNameMatcherSpec(
                                regex='composite_dot_general.*'
                            )
                        ),
                        method=qc.Method(no_quantization={}),
                    )
                ]
            ),
        )
        quantization.quantize_saved_model(
            self._input_saved_model_path,
            self._output_saved_model_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top