Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,200 for Handles (0.12 sec)

  1. src/go/ast/walk_test.go

    package ast_test
    
    import (
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"testing"
    )
    
    func TestPreorderBreak(t *testing.T) {
    	// This test checks that Preorder correctly handles a break statement while
    	// in the middle of walking a node. Previously, incorrect handling of the
    	// boolean returned by the yield function resulted in the iterator calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 916 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue42018_windows.go

    package cgotest
    
    /*
    typedef void *HANDLE;
    
    struct HWND__{int unused;}; typedef struct HWND__ *HWND;
    */
    import "C"
    
    import (
    	"testing"
    	"unsafe"
    )
    
    func test42018(t *testing.T) {
    	// Test that Windows handles are marked go:notinheap, by growing the
    	// stack and checking for pointer adjustments. Trick from
    	// test/fixedbugs/issue40954.go.
    	var i int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/StreamedValueListener.java

     *
     * @since 8.6
     */
    @Incubating
    public interface StreamedValueListener {
        /**
         * Handles the next value.
         *
         * @since 8.6
         */
        void onValue(Object value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 08:15:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpEncodingDependencyResolutionIntegrationTest.groovy

    package org.gradle.integtests.resolve.http
    
    import org.gradle.integtests.fixtures.AbstractHttpDependencyResolutionTest
    
    class HttpEncodingDependencyResolutionIntegrationTest extends AbstractHttpDependencyResolutionTest {
        def "handles gzip encoded content"() {
            given:
            def repo = ivyRepo()
            def module = repo.module('group', 'projectA', '1.2')
            module.publish()
    
            and:
            buildFile << """
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_aix_ppc64.c

    }
    
    static void libinit(void) __attribute__ ((constructor));
    
    /*
     * libinit aims to replace .init_array section which isn't available on aix.
     * Using __attribute__ ((constructor)) let gcc handles this instead of
     * adding special code in cmd/link.
     * However, it will be called for every Go programs which has cgo.
     * Inside _rt0_ppc64_aix_lib(), runtime.isarchive is checked in order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. plugin/pkg/admission/podnodeselector/admission_test.go

    		}
    		handler.clusterNodeSelectors = make(map[string]string)
    		handler.clusterNodeSelectors["clusterDefaultNodeSelector"] = test.defaultNodeSelector
    		handler.clusterNodeSelectors[namespace.Name] = test.whitelist
    		pod.Spec = api.PodSpec{NodeSelector: test.podNodeSelector}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. pkg/kubelet/cadvisor/helpers_unsupported.go

    */
    
    package cadvisor
    
    import "errors"
    
    type unsupportedImageFsInfoProvider struct{}
    
    // ImageFsInfoLabel returns the image fs label for the configured runtime.
    // For remote runtimes, it handles additional runtimes natively understood by cAdvisor.
    func (i *unsupportedImageFsInfoProvider) ImageFsInfoLabel() (string, error) {
    	return "", errors.New("unsupported")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/PropertyAwareCallInterceptor.java

    /**
     * A call interceptor that can also tell about the type of the property that it intercepts access to.
     */
    @NonNullApi
    public interface PropertyAwareCallInterceptor {
        /**
         * Checks if the interceptor handles property access on instances of the specified receiver type.
         * @return If property access is intercepted, the type of the property. Null otherwise.
         */
        @Nullable
        Class<?> matchesProperty(Class<?> receiverClass);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:57 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. tensorflow/c/eager/abstract_tensor_handle.cc

                          ", dtype=", DataType_Name(DataType()),
                          ", type=", FullType().DebugString(), ")");
    }
    
    Status AbstractTensorHandle::TensorHandleStatus() const {
      // Tensor handles in current runtime don't carry error info and this method
      // should always return OK status.
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/process/internal/WorkerProcessIntegrationTest.groovy

            stdout.stdErr.contains("--broken")
        }
    
        def "handles output after worker messaging services are stopped"() {
            when:
            execute(worker(new OutputOnShutdownHookProcess()))
    
            then:
            noExceptionThrown()
            stdout.stdOut.contains("Goodbye, world!")
            stdout.stdErr == ""
        }
    
        def "handles output during worker shutdown"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top