Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 534 for Calling (0.19 sec)

  1. src/cmd/cgo/internal/testcshared/testdata/main5.c

    	if (verbose) {
    		fprintf(stderr, "calling sigaction\n");
    	}
    
    	memset(&sa, 0, sizeof sa);
    	sa.sa_sigaction = ioHandler;
    	if (sigemptyset(&sa.sa_mask) < 0) {
    		die("sigemptyset");
    	}
    	sa.sa_flags = SA_SIGINFO;
    	if (sigaction(SIGIO, &sa, NULL) < 0) {
    		die("sigaction");
    	}
    
    	if (verbose) {
    		fprintf(stderr, "calling dlopen\n");
    	}
    
    	handle = dlopen(argv[1], RTLD_NOW | RTLD_GLOBAL);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testcshared/testdata/main4.c

    		die("sigaction");
    	}
    
    	if (verbose) {
    		fprintf(stderr, "calling dlopen\n");
    	}
    
    	handle = dlopen(argv[1], RTLD_NOW | RTLD_GLOBAL);
    	if (handle == NULL) {
    		fprintf(stderr, "%s\n", dlerror());
    		exit(EXIT_FAILURE);
    	}
    
    	if (verbose) {
    		fprintf(stderr, "calling dlsym\n");
    	}
    
    	// Start some goroutines.
    	fn = (void(*)(void))dlsym(handle, "RunGoroutines");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/plugin/client.go

    	logger.V(4).Info(log("calling NodePrepareResources rpc"), "request", req)
    
    	conn, err := p.getOrCreateGRPCConn()
    	if err != nil {
    		return nil, err
    	}
    
    	ctx, cancel := context.WithTimeout(ctx, p.clientTimeout)
    	defer cancel()
    
    	nodeClient := drapb.NewNodeClient(conn)
    	response, err := nodeClient.NodePrepareResources(ctx, req)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemStream.java

        /**
         * Returns diagnostics based on the state of the calling thread.
         *
         * @param exception The exception that represents the failure.
         */
        ProblemDiagnostics forCurrentCaller(@Nullable Throwable exception);
    
        /**
         * Returns diagnostics based on the state of the calling thread.
         */
        ProblemDiagnostics forCurrentCaller();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 06:37:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/fuzzer/fuzzer.go

    		func(obj *admissionregistration.Rule, c fuzz.Continue) {
    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    			if obj.Scope == nil {
    				s := admissionregistration.AllScopes
    				obj.Scope = &s
    			}
    		},
    		func(obj *admissionregistration.ValidatingWebhook, c fuzz.Continue) {
    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    			if obj.FailurePolicy == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:09 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. pkg/apis/networking/fuzzer/fuzzer.go

    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    			// length in bytes of the IP Family: IPv4: 4 bytes IPv6: 16 bytes
    			boolean := []bool{false, true}
    			is6 := boolean[c.Rand.Intn(2)]
    			ip := generateRandomIP(is6, c)
    			obj.Name = ip
    		},
    		func(obj *networking.ServiceCIDR, c fuzz.Continue) {
    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    			boolean := []bool{false, true}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/AbstractClassBackedManagedTypeIntegrationTest.groovy

                }
    
                apply type: RulePlugin
            '''
    
            then:
            fails 'tasks'
    
            and:
            failure.assertHasCause("Calling setters of a managed type on itself is not allowed")
        }
    
        def "calling setters of super class from non-abstract getters is not allowed"() {
            when:
            defineCallsSetterInNonAbstractGetterClass()
            buildFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FileTreeElement.java

        /**
         * Opens this file as an input stream. Generally, calling this method is more performant than calling {@code new
         * FileInputStream(getFile())}.
         *
         * @return The input stream. Never returns null. The caller is responsible for closing this stream.
         */
        InputStream open();
    
        /**
         * Copies the content of this file to an output stream. Generally, calling this method is more performant than
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/tracing_test.go

    				t.Errorf("calling ReadTracingConfiguration expected error: %s, did not get it", *tc.expectedError)
    			}
    			if err != nil && tc.expectedError == nil {
    				t.Errorf("unexpected error calling ReadTracingConfiguration got: %#v", err)
    			}
    			if err != nil && tc.expectedError != nil && !strings.HasPrefix(err.Error(), *tc.expectedError) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. src/runtime/debugcall.go

    	getg().schedlink.set(callingG)
    	mcall(func(gp *g) {
    		callingG := gp.schedlink.ptr()
    		gp.schedlink = 0
    
    		// Unlock this goroutine from the M if necessary. The
    		// calling G will relock.
    		if gp.lockedm != 0 {
    			gp.lockedm = 0
    			gp.m.lockedg = 0
    		}
    
    		// Switch back to the calling goroutine. At some point
    		// the scheduler will schedule us again and we'll
    		// finish exiting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top