Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,173 for call27 (0.09 sec)

  1. src/os/readfrom_linux_test.go

    		}
    	} else {
    		r = src
    	}
    	// Now call ReadFrom (through io.Copy), which will hopefully call poll.Splice
    	n, err := io.Copy(dst, r)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// We should have called poll.Splice with the right file descriptor arguments.
    	if n > 0 && !hook.called {
    		t.Fatal("expected to called poll.Splice")
    	}
    	if hook.called && hook.dstfd != int(dst.Fd()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

        GradleLifecycle getLifecycle();
    
        /**
         * Adds a closure to be called immediately before a project is evaluated. The project is passed to the closure as a
         * parameter.
         *
         * @param closure The closure to execute.
         */
        void beforeProject(Closure closure);
    
        /**
         * Adds an action to be called immediately before a project is evaluated.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/namedrulewithoperations.go

    // WithResourceNames adds the given value to the ResourceNames field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the ResourceNames field.
    func (b *NamedRuleWithOperationsApplyConfiguration) WithResourceNames(values ...string) *NamedRuleWithOperationsApplyConfiguration {
    	for i := range values {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/customresourcecolumndefinition.go

    }
    
    // WithName sets the Name field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Name field is set to the value of the last call.
    func (b *CustomResourceColumnDefinitionApplyConfiguration) WithName(value string) *CustomResourceColumnDefinitionApplyConfiguration {
    	b.Name = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcecolumndefinition.go

    }
    
    // WithName sets the Name field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Name field is set to the value of the last call.
    func (b *CustomResourceColumnDefinitionApplyConfiguration) WithName(value string) *CustomResourceColumnDefinitionApplyConfiguration {
    	b.Name = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/validatingadmissionpolicyspec.go

    // WithParamKind sets the ParamKind field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the ParamKind field is set to the value of the last call.
    func (b *ValidatingAdmissionPolicySpecApplyConfiguration) WithParamKind(value *ParamKindApplyConfiguration) *ValidatingAdmissionPolicySpecApplyConfiguration {
    	b.ParamKind = value
    	return b
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/likelyadjust.go

    	// Such path either escapes loop or return back to header.
    	// It isn't enough to have exit not dominated by any call, for example:
    	// ... some loop
    	// call1   call2
    	//   \      /
    	//     exit
    	// ...
    	// exit is not dominated by any call, but we don't have call-free path to it.
    	for _, l := range loops {
    		// Header contains call.
    		if dominatedByCall[l.header.ID] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  8. src/runtime/sys_aix_ppc64.s

    	CSYSCALL()
    	RET
    
    // Runs on OS stack, called from runtime·usleep.
    TEXT runtime·usleep1(SB),NOSPLIT,$0-4
    	MOVW	us+0(FP), R3
    	MOVD	$libc_usleep(SB), R12
    	CSYSCALL()
    	RET
    
    // Runs on OS stack, called from runtime·exit.
    TEXT runtime·exit1(SB),NOSPLIT,$0-4
    	MOVW	code+0(FP), R3
    	MOVD	$libc_exit(SB), R12
    	CSYSCALL()
    	RET
    
    // Runs on OS stack, called from runtime·write1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcedefinitionnames.go

    }
    
    // WithPlural sets the Plural field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Plural field is set to the value of the last call.
    func (b *CustomResourceDefinitionNamesApplyConfiguration) WithPlural(value string) *CustomResourceDefinitionNamesApplyConfiguration {
    	b.Plural = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/validationrule.go

    }
    
    // WithRule sets the Rule field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Rule field is set to the value of the last call.
    func (b *ValidationRuleApplyConfiguration) WithRule(value string) *ValidationRuleApplyConfiguration {
    	b.Rule = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:34:13 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top