Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 662 for tcCall (0.07 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/statefulsetspec.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Replicas field is set to the value of the last call.
    func (b *StatefulSetSpecApplyConfiguration) WithReplicas(value int32) *StatefulSetSpecApplyConfiguration {
    	b.Replicas = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:00 UTC 2022
    - 8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/iscsipersistentvolumesource.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the TargetPortal field is set to the value of the last call.
    func (b *ISCSIPersistentVolumeSourceApplyConfiguration) WithTargetPortal(value string) *ISCSIPersistentVolumeSourceApplyConfiguration {
    	b.TargetPortal = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 7K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionLocalClosureMutating.kt

    // MODULE: context
    
    // FILE: context.kt
    fun test() {
        var x = 0
    
        fun call() {
            x = 1
        }
    
        <caret_context>call()
    }
    
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    // CODE_FRAGMENT_KIND: EXPRESSION
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 270 bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/mutatingwebhook.go

    // 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 *MutatingWebhookApplyConfiguration) WithName(value string) *MutatingWebhookApplyConfiguration {
    	b.Name = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/csipersistentvolumesource.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Driver field is set to the value of the last call.
    func (b *CSIPersistentVolumeSourceApplyConfiguration) WithDriver(value string) *CSIPersistentVolumeSourceApplyConfiguration {
    	b.Driver = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 05 03:36:24 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionLocalClosureMutating.ir.txt

              BLOCK_BODY
                SET_VAR 'var x: kotlin.Int [var] declared in <root>.test' type=kotlin.Unit origin=EQ
                  CONST Int type=kotlin.Int value=1
            CALL 'local final fun call (): kotlin.Unit declared in <root>.test' type=kotlin.Unit origin=null
      FILE fqName:<root> fileName:fragment.kt
        CLASS CLASS name:CodeFragment modality:FINAL visibility:public superTypes:[kotlin.Any]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/inlineFunctionUsage.ir.txt

            EXPRESSION_BODY
              BLOCK type=kotlin.Unit origin=null
                CALL 'public final fun forEach <T> (action: kotlin.Function1<T of kotlin.collections.forEach, kotlin.Unit>): kotlin.Unit [inline] declared in kotlin.collections' type=kotlin.Unit origin=null
                  <T>: kotlin.Int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 30 10:27:47 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/validatingwebhook.go

    // 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 *ValidatingWebhookApplyConfiguration) WithName(value string) *ValidatingWebhookApplyConfiguration {
    	b.Name = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validatingwebhook.go

    // 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 *ValidatingWebhookApplyConfiguration) WithName(value string) *ValidatingWebhookApplyConfiguration {
    	b.Name = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. test/fixedbugs/bug221.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // function call arg reordering was picking out 1 call that
    // didn't need to be in a temporary, but it was picking
    // out the first call instead of the last call.
    // https://golang.org/issue/370
    
    package main
    
    var gen = 'a'
    
    func f(n int) string {
    	s := string(gen) + string(n+'A'-1)
    	gen++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 820 bytes
    - Viewed (0)
Back to top