Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for receivers (0.26 sec)

  1. ChangeLog.md

    - [`KT-58476`](https://youtrack.jetbrains.com/issue/KT-58476) Context receivers: "No mapping for symbol: VALUE_PARAMETER" with context-receiver inside suspended lambda calling another suspended function
    - [`KT-52213`](https://youtrack.jetbrains.com/issue/KT-52213) Context receivers: "No mapping for symbol: VALUE_PARAMETER"  caused by contextual suspending function type with receiver
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. doc/go_spec.html

    A method declaration binds an identifier, the <i>method name</i>, to a method,
    and associates the method with the receiver's <i>base type</i>.
    </p>
    
    <pre class="ebnf">
    MethodDecl = "func" Receiver MethodName Signature [ FunctionBody ] .
    Receiver   = Parameters .
    </pre>
    
    <p>
    The receiver is specified via an extra parameter section preceding the method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  3. src/net/http/h2_bundle.go

    		}
    		if st == nil {
    			// "WINDOW_UPDATE can be sent by a peer that has sent a
    			// frame bearing the END_STREAM flag. This means that a
    			// receiver could receive a WINDOW_UPDATE frame on a "half
    			// closed (remote)" or "closed" stream. A receiver MUST
    			// NOT treat this as an error, see Section 5.1."
    			return nil
    		}
    		if !st.flow.add(int32(f.Increment)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// Volume is being modified
    	PersistentVolumeClaimVolumeModifyingVolume PersistentVolumeClaimConditionType = "ModifyingVolume"
    )
    
    // +enum
    // When a controller receives persistentvolume claim update with ClaimResourceStatus for a resource
    // that it does not recognizes, then it should ignore that update and let other controllers
    // handle it.
    type ClaimResourceStatus string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// Volume is being modified
    	PersistentVolumeClaimVolumeModifyingVolume PersistentVolumeClaimConditionType = "ModifyingVolume"
    )
    
    // +enum
    // When a controller receives persistentvolume claim update with ClaimResourceStatus for a resource
    // that it does not recognizes, then it should ignore that update and let other controllers
    // handle it.
    type ClaimResourceStatus string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                            the proportion of requests that would otherwise have been
                            routed to an invalid backend MUST receive a 500 status code.
                            \n For example, if two backends are specified with equal weights,
                            and one is invalid, 50 percent of traffic must receive a 500.
                            Implementations may choose how that 50 percent is determined.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    				argStart += 2 * int64(types.PtrSize)
    			}
    		}
    
    		// Set receiver (for interface calls).
    		if rcvr != nil {
    			callArgs = append(callArgs, rcvr)
    		}
    
    		// Write args.
    		t := n.Fun.Type()
    		args := n.Args
    
    		for _, p := range params.InParams() { // includes receiver for interface calls
    			ACArgs = append(ACArgs, p.Type)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top