Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 689 for Calling (0.12 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/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)
  6. 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)
  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. src/cmd/cgo/internal/testcarchive/testdata/main3.c

    		}
    	}
    
    	sigioSeen = 0;
    
    	// Tell the Go code to catch SIGIO.
    
    	if (verbose) {
    		printf("calling CatchSIGIO\n");
    	}
    
    	CatchSIGIO();
    
    	if (verbose) {
    		printf("raising SIGIO\n");
    	}
    
    	if (raise(SIGIO) < 0) {
    		die("raise");
    	}
    
    	if (verbose) {
    		printf("calling SawSIGIO\n");
    	}
    
    	if (!SawSIGIO()) {
    		fprintf(stderr, "Go handler did not see SIGIO\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_setenv.c

    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    #include "libcgo.h"
    
    #include <stdlib.h>
    
    /* Stub for calling setenv */
    void
    x_cgo_setenv(char **arg)
    {
    	_cgo_tsan_acquire();
    	setenv(arg[0], arg[1], 1);
    	_cgo_tsan_release();
    }
    
    /* Stub for calling unsetenv */
    void
    x_cgo_unsetenv(char **arg)
    {
    	_cgo_tsan_acquire();
    	unsetenv(arg[0]);
    	_cgo_tsan_release();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 487 bytes
    - Viewed (0)
  10. 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)
Back to top