Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,202 for Handles (0.14 sec)

  1. src/syscall/exec_windows.go

    	NoInheritHandles           bool                // if set, no handles are inherited by the new process, not even the standard handles, contained in ProcAttr.Files, nor the ones contained in AdditionalInheritedHandles
    	AdditionalInheritedHandles []Handle            // a list of additional handles, already marked as inheritable, that will be inherited by the new process
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/IntermediateResultHandler.java

     * limitations under the License.
     */
    package org.gradle.tooling;
    
    /**
     * A handler for an intermediate result obtained by a {@link BuildActionExecuter}.
     *
     * @param <T> The result type.
     * @since 4.8
     */
    public interface IntermediateResultHandler<T> {
    
        /**
         * Handles successful completion of the action.
         *
         * @param result the result
         */
        void onComplete(T result);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 973 bytes
    - Viewed (0)
  3. doc/next/6-stdlib/2-unique.md

    `Make[T]` function, which produces a reference to a canonical copy of
    the value in the form of a `Handle[T]`.
    Two `Handle[T]` are equal if and only if the values used to produce the
    handles are equal, allowing programs to deduplicate values and reduce
    their memory footprint.
    Comparing two `Handle[T]` values is efficient, reducing down to a simple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 566 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

            settingsFile.touch()
        }
    
        def "handles the same target gradle version concurrently"() {
            buildFile << "apply plugin: 'java'"
    
            when:
            threads.times {
                concurrent.start { useToolingApi(toolingApi) }
            }
    
            then:
            concurrent.finished()
        }
    
        def "handles different target gradle versions concurrently"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. releasenotes/notes/50132.yaml

        For this to work, it must be configured as a `ClusterIP` Service with
        redirection enabled. This is colloquially referred to as a "gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 659 bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/webhook.go

    	}
    	return len(p), nil
    }
    
    // initSSecureWebhookServer handles initialization for the HTTPS webhook server.
    // If https address is off the injection handlers will be registered on the main http endpoint, with
    // TLS handled by a proxy/gateway in front of Istiod.
    func (s *Server) initSecureWebhookServer(args *PilotArgs) {
    	// create the https server for hosting the k8s injectionWebhook handlers.
    	if args.ServerOptions.HTTPSAddr == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. mockwebserver/src/main/kotlin/mockwebserver3/StreamHandler.kt

     */
    package mockwebserver3
    
    import okhttp3.ExperimentalOkHttpApi
    
    /**
     * Handles a call's stream directly. Use this instead of [MockResponseBody] to begin sending
     * response data before all request data has been received.
     *
     * See [okhttp3.RequestBody.isDuplex].
     */
    @ExperimentalOkHttpApi
    interface StreamHandler {
      fun handle(stream: Stream)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 945 bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_resourceclaim_test.go

    			ResourceHandles: func() []resource.ResourceHandle {
    				var handles []resource.ResourceHandle
    				for i := 0; i < resource.AllocationResultResourceHandlesMaxSize; i++ {
    					handle := resource.ResourceHandle{
    						DriverName: "valid",
    						Data:       strings.Repeat(" ", resource.ResourceHandleDataMaxSize),
    					}
    					handles = append(handles, handle)
    				}
    				return handles
    			}(),
    			Shareable: true,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue8517_windows.go

    		t.Fatal(err)
    	}
    	return int(c)
    }
    
    func test8517(t *testing.T) {
    	c1 := processHandleCount(t)
    	C.testHandleLeaks()
    	c2 := processHandleCount(t)
    	if c1+issue8517counter <= c2 {
    		t.Fatalf("too many handles leaked: issue8517counter=%v c1=%v c2=%v", issue8517counter, c1, c2)
    	}
    }
    
    //export testHandleLeaksCallback
    func testHandleLeaksCallback() {
    	issue8517counter++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 990 bytes
    - Viewed (0)
  10. pkg/test/failer.go

    // functions that take in a Failer and those that take an error.
    // The function must be called within a goroutine, or calls to Fatal will try to terminate the outer
    // test context, which will cause the test to panic. The Wrap function handles this automatically
    type errorWrapper struct {
    	mu      sync.RWMutex
    	failed  error
    	cleanup func()
    }
    
    // Wrap executes a function with a fake Failer, and returns an error if the test failed. This allows
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 15 23:58:50 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top