Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 147 for call27 (0.1 sec)

  1. src/runtime/preempt.go

    		// We probably stopped at a half-executed CALL instruction,
    		// where the LR is updated but the PC has not. If we preempt
    		// here we'll see a seemingly self-recursive call, which is in
    		// fact not.
    		// This is normally ok, as we use the return address saved on
    		// stack for unwinding, not the LR value. But if this is a
    		// call to morestack, we haven't created the frame, and we'll
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

            return conf;
        }
    
        /**
         * Ensures the target variant matches the request attributes and is consumable. This needs to be called
         * for variants that are selected by means other than attribute matching.
         *
         * Note: This does not need to be called for variants selected via attribute matching, since
         * attribute matching ensures selected variants are compatible with the requested attributes.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

            }
    
            @Override
            public void execute(ExecutionListener executionListener) {
                // This must be added only during execute, because the actual constructor is called by various tests and this will not succeed if called then
                createBuildActionFactoryActionCreator(loggingServices, actionCreators);
                configureCreators();
    
                Action<? super ExecutionListener> action;
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. src/runtime/stack.go

    guard.  Functions with large frames don't bother with the check and
    always call morestack.  The sequences are (for amd64, others are
    similar):
    
    	guard = g->stackguard
    	frame = function's stack frame size
    	argsize = size of function arguments (call + return)
    
    	stack frame size <= StackSmall:
    		CMPQ guard, SP
    		JHI 3(PC)
    		MOVQ m->morearg, $(argsize << 32)
    		CALL morestack(SB)
    
    	stack frame size > StackSmall but < StackBig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  5. src/runtime/syscall_windows.go

    	}
    
    	// TODO(mknyszek): Remove dstSpill from this calculation when we no longer have
    	// caller reserved spill space.
    	frameSize := alignUp(abiMap.dstStackSize, goarch.PtrSize)
    	frameSize += abiMap.dstSpill
    	if frameSize > callbackMaxFrame {
    		panic("compileCallback: function argument frame too large")
    	}
    
    	// For cdecl, the callee is responsible for popping its
    	// arguments from the C stack.
    	var retPop uintptr
    	if cdecl {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. cmd/sftp-server-driver.go

    	}
    
    	_, err = obj.Stat()
    	if err != nil {
    		return nil, err
    	}
    
    	return obj, nil
    }
    
    // TransferError will catch network errors during transfer.
    // When TransferError() is called Close() will also
    // be called, so we do not need to Wait() here.
    func (w *writerAt) TransferError(err error) {
    	_ = w.w.CloseWithError(err)
    	_ = w.r.CloseWithError(err)
    	w.err = err
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    	}
    	return v, nil
    }
    
    func readFile(f *file) (*File, error) {
    	if f == nil {
    		debugPrintf("No file")
    		return nil, fmt.Errorf("counter is not initialized - was Open called?")
    	}
    
    	// Note: don't call f.rotate here as this will enqueue a follow-up rotation.
    	_, cleanup := f.rotate1()
    	cleanup()
    
    	if f.err != nil {
    		return nil, fmt.Errorf("failed to rotate mapped file - %v", f.err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    			if tc.expectMount {
    				// The volume should be fully mounted
    				waitForMount(t, fakePlugin, volumeName, rcInstance.actualStateOfWorld)
    				// SetUp was called and succeeded
    				if err := volumetesting.VerifySetUpCallCount(1, fakePlugin); err != nil {
    					t.Errorf("Expected SetUp() to be called, got %s", err)
    				}
    			} else {
    				// The test does not expect any change in ASW, yet it needs to wait for volume operations to finish
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. cmd/bucket-handlers_test.go

    	// since the `objectLayer==nil`  check is performed before any other checks inside the handlers.
    	// The only aim is to generate an HTTP request in a way that the relevant/registered end point is evoked/called.
    
    	nilBucket := "dummy-bucket"
    	nilReq, err := newTestRequest(http.MethodGet, getBucketLocationURL("", nilBucket), 0, nil)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_builder.go

    })
    
    // clusterWrapper wraps Cluster object along with upstream protocol options.
    type clusterWrapper struct {
    	cluster *cluster.Cluster
    	// httpProtocolOptions stores the HttpProtocolOptions which will be marshaled when build is called.
    	httpProtocolOptions *http.HttpProtocolOptions
    }
    
    // metadataCerts hosts client certificate related metadata specified in proxy metadata.
    type metadataCerts struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top