Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,984 for LAST (0.04 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimstatus.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Phase field is set to the value of the last call.
    func (b *PersistentVolumeClaimStatusApplyConfiguration) WithPhase(value v1.PersistentVolumeClaimPhase) *PersistentVolumeClaimStatusApplyConfiguration {
    	b.Phase = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FileSystemWatchingFixture.groovy

            }
    
            int getReceivedFileSystemEventsSinceLastBuild() {
                String eventsSinceLastBuild = spec.result.getOutputLineThatContains("file system events since last build")
                def numberMatcher = eventsSinceLastBuild =~ /Received (\d+) file system events since last build while watching \d+ locations/
                return numberMatcher[0][1] as int
            }
    
            int getRetainedFilesSinceLastBuild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelector.java

            List<TransformedVariant> differentTransforms = new ArrayList<>(1);
    
            // Choosing the last candidate here is arbitrary.
            TransformedVariant last = matches.get(matches.size() - 1);
            differentTransforms.add(last);
    
            // Find any other candidate which does not match with the last candidate.
            for (int i = 0; i < matches.size() - 1; i++) {
                TransformedVariant current = matches.get(i);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 13:33:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validatingadmissionpolicybindingspec.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the PolicyName field is set to the value of the last call.
    func (b *ValidatingAdmissionPolicyBindingSpecApplyConfiguration) WithPolicyName(value string) *ValidatingAdmissionPolicyBindingSpecApplyConfiguration {
    	b.PolicyName = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/loadbalanceringress.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the IP field is set to the value of the last call.
    func (b *LoadBalancerIngressApplyConfiguration) WithIP(value string) *LoadBalancerIngressApplyConfiguration {
    	b.IP = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 14 04:33:54 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    				copy(scan.b[p:], bytes.Join(attrs, separator))
    				break
    			}
    			last = scan.token
    			end = scan.end
    		}
    		// Scan key-type sequences. A key is of length 2 and may be followed
    		// by 0 or more "type" subtags from 3 to the maximum of 8 letters.
    		var last, key []byte
    		for attrEnd := end; len(scan.token) == 2; last = key {
    			key = scan.token
    			end = scan.end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/crypto/tls/quic.go

    	var last *QUICEvent
    	if len(c.quic.events) > 0 {
    		last = &c.quic.events[len(c.quic.events)-1]
    	}
    	if last == nil || last.Kind != QUICWriteData || last.Level != level {
    		c.quic.events = append(c.quic.events, QUICEvent{
    			Kind:  QUICWriteData,
    			Level: level,
    		})
    		last = &c.quic.events[len(c.quic.events)-1]
    	}
    	last.Data = append(last.Data, data...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/customresourcedefinitionnames.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Plural field is set to the value of the last call.
    func (b *CustomResourceDefinitionNamesApplyConfiguration) WithPlural(value string) *CustomResourceDefinitionNamesApplyConfiguration {
    	b.Plural = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcesubresourcescale.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the SpecReplicasPath field is set to the value of the last call.
    func (b *CustomResourceSubresourceScaleApplyConfiguration) WithSpecReplicasPath(value string) *CustomResourceSubresourceScaleApplyConfiguration {
    	b.SpecReplicasPath = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/writebarrier.go

    			}
    		}
    
    		// The last store becomes the WBend marker. This marker is used by the liveness
    		// pass to determine what parts of the code are preemption-unsafe.
    		// All subsequent memory operations use this memory, so we have to sacrifice the
    		// previous last memory op to become this new value.
    		bEnd.Values = append(bEnd.Values, last)
    		last.Block = bEnd
    		last.reset(OpWBend)
    		last.Pos = last.Pos.WithNotStmt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
Back to top