Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,919 for LAST (0.04 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/changedetection/state/BuildSessionScopeFileTimeStampInspectorTest.groovy

            timestampInspector = new BuildSessionScopeFileTimeStampInspector(workDir)
        }
    
        def "last build timestamp is 0 on the first build"() {
            when:
            timestampInspector.afterStart()
    
            then:
            timestampInspector.lastBuildTimestamp == 0
        }
    
        def "updates last build timestamp before complete"() {
            when:
            timestampInspector.afterStart()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 22 17:24:44 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  2. test/unsafebuiltins.go

    		mustPanic(func() { _ = unsafe.Slice(new(uint64), maxUintptr/8+1) })
    
    		// sliced memory overflows address space
    		last := (*byte)(unsafe.Pointer(^uintptr(0)))
    		_ = unsafe.Slice(last, 1)
    		mustPanic(func() { _ = unsafe.Slice(last, 2) })
    	}
    
    	// unsafe.String
    	{
    		s := unsafe.String(&p[0], len(p))
    		assert(s == string(p[:]))
    		assert(len(s) == len(p))
    
    		// the empty string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 17:15:15 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/jobspec.go

    func (b *JobSpecApplyConfiguration) WithCompletionMode(value batchv1.CompletionMode) *JobSpecApplyConfiguration {
    	b.CompletionMode = &value
    	return b
    }
    
    // WithSuspend sets the Suspend 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 Suspend field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. test/fixedbugs/issue28450.go

    func g(a ...int, b ...int)      {} // ERROR "non-final parameter a|must be last parameter|can only use ... with final parameter"
    func h(...int, ...int, float32) {} // ERROR "non-final parameter|must be last parameter|can only use ... with final parameter"
    
    type a func(...float32, ...interface{}) // ERROR "non-final parameter|must be last parameter|can only use ... with final parameter"
    type b interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 993 bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta1/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)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/iscsivolumesource.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 *ISCSIVolumeSourceApplyConfiguration) WithTargetPortal(value string) *ISCSIVolumeSourceApplyConfiguration {
    	b.TargetPortal = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.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 *EphemeralContainerApplyConfiguration) WithName(value string) *EphemeralContainerApplyConfiguration {
    	b.Name = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. src/encoding/xml/example_test.go

    	if err != nil {
    		fmt.Printf("error: %v\n", err)
    	}
    
    	os.Stdout.Write(output)
    	// Output:
    	//   <person id="13">
    	//       <name>
    	//           <first>John</first>
    	//           <last>Doe</last>
    	//       </name>
    	//       <age>42</age>
    	//       <Married>false</Married>
    	//       <City>Hanga Roa</City>
    	//       <State>Easter Island</State>
    	//       <!-- Need more details. -->
    	//   </person>
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 3.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/customresourcecolumndefinition.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 *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)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcecolumndefinition.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 *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)
Back to top