Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 935 for Calling (0.37 sec)

  1. pkg/apis/core/fuzzer/fuzzer.go

    			c.FuzzNoCustom(cm) // fuzz self without calling this function again
    			if c.RandBool() {
    				opt := c.RandBool()
    				cm.Optional = &opt
    			}
    		},
    		func(s *core.SecretEnvSource, c fuzz.Continue) {
    			c.FuzzNoCustom(s) // fuzz self without calling this function again
    		},
    		func(sc *core.SecurityContext, c fuzz.Continue) {
    			c.FuzzNoCustom(sc) // fuzz self without calling this function again
    			if c.RandBool() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. pkg/proxy/config/config.go

    		c.logger.V(3).Info("Calling handler.OnServiceSynced()")
    		c.eventHandlers[i].OnServiceSynced()
    	}
    }
    
    func (c *ServiceConfig) handleAddService(obj interface{}) {
    	service, ok := obj.(*v1.Service)
    	if !ok {
    		utilruntime.HandleError(fmt.Errorf("unexpected object type: %v", obj))
    		return
    	}
    	for i := range c.eventHandlers {
    		c.logger.V(4).Info("Calling handler.OnServiceAdd")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    	if err != nil {
    		t.Fatalf("Error while calling GetTrustAnchorsByName: %v", err)
    	}
    
    	if diff := diffBundles(gotBundle, []byte(ctb1.Spec.TrustBundle)); diff != "" {
    		t.Fatalf("Got bad bundle; diff (-got +want)\n%s", diff)
    	}
    
    	gotBundle, err = ctbManager.GetTrustAnchorsByName("ctb2", false)
    	if err != nil {
    		t.Fatalf("Error while calling GetTrustAnchorsByName: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector_test.go

    			if err == nil && tc.expectedError != nil {
    				t.Errorf("calling NewEgressSelector expected error: %s, did not get it", *tc.expectedError)
    			}
    			if err != nil && tc.expectedError == nil {
    				t.Errorf("unexpected error calling NewEgressSelector got: %#v", err)
    			}
    			if err != nil && tc.expectedError != nil && err.Error() != *tc.expectedError {
    				t.Errorf("calling NewEgressSelector expected error: %s, got %#v", *tc.expectedError, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 26 22:41:29 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DeprecatedConfigurationUsageIntegrationTest.groovy

        }
    
        def "calling deprecated usage produces a deprecation warning"() {
            given:
            buildFile << """
                configurations.consumable('custom')
    
                configurations.custom.getConsistentResolutionSource()
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 02:32:37 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz.txt

    # Test that running a fuzz target that returns without failing or calling
    # f.Fuzz fails and causes a non-zero exit status.
    ! go test noop_fuzz_test.go
    ! stdout ^ok
    stdout FAIL
    
    # Test that fuzzing a fuzz target that returns without failing or calling
    # f.Fuzz fails and causes a non-zero exit status.
    ! go test -fuzz=Fuzz -fuzztime=1x noop_fuzz_test.go
    ! stdout ^ok
    stdout FAIL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_client.go

    	nodeID string,
    	maxVolumePerNode int64,
    	accessibleTopology map[string]string,
    	err error) {
    	klog.V(4).InfoS(log("calling NodeGetInfo rpc"))
    
    	var getNodeInfoError error
    	nodeID, maxVolumePerNode, accessibleTopology, getNodeInfoError = c.nodeGetInfoV1(ctx)
    	if getNodeInfoError != nil {
    		klog.InfoS("Error calling CSI NodeGetInfo()", "err", getNodeInfoError.Error())
    	}
    	return nodeID, maxVolumePerNode, accessibleTopology, getNodeInfoError
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
  8. src/runtime/sys_openbsd_ppc64.s

    	BL	runtimeĀ·load_g(SB)
    
    	BL	runtimeĀ·sigtrampgo<ABIInternal>(SB)
    
    	// TODO(jsing): Restore callee-save registers.
    
    	RET
    
    // These trampolines help convert from Go calling convention to C calling convention.
    // They should be called with asmcgocall.
    // A pointer to the arguments is passed in R3.
    // A single int32 result is returned in R3.
    // (For more results, make an args/results structure.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    					// Ignore context cancelled from webhook metrics
    					if errors.Is(callErr.Reason, context.Canceled) {
    						klog.Warningf("Context canceled when calling webhook %v", hook.Name)
    					} else {
    						klog.Warningf("Failed calling webhook, failing open %v: %v", hook.Name, callErr)
    						admissionmetrics.Metrics.ObserveWebhookFailOpen(ctx, hook.Name, "validating")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
  10. src/runtime/sys_openbsd_arm64.s

    	BL	runtimeĀ·sigtrampgo<ABIInternal>(SB)
    
    	// Restore callee-save registers.
    	RESTORE_R19_TO_R28(8*4)
    	RESTORE_F8_TO_F15(8*14)
    
    	RET
    
    //
    // These trampolines help convert from Go calling convention to C calling convention.
    // They should be called with asmcgocall.
    // A pointer to the arguments is passed in R0.
    // A single int32 result is returned in R0.
    // (For more results, make an args/results structure.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top