Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,262 for lasta (0.1 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podstatus.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 *PodStatusApplyConfiguration) WithPhase(value v1.PodPhase) *PodStatusApplyConfiguration {
    	b.Phase = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:43:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/customresourcedefinitionspec.go

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

    		return nil, errors.New("x509: invalid padding")
    	}
    	last := int(data[dlen-1])
    	if dlen < last {
    		return nil, IncorrectPasswordError
    	}
    	if last == 0 || last > ciph.blockSize {
    		return nil, IncorrectPasswordError
    	}
    	for _, val := range data[dlen-last:] {
    		if int(val) != last {
    			return nil, IncorrectPasswordError
    		}
    	}
    	return data[:dlen-last], nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumestatus.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 *PersistentVolumeStatusApplyConfiguration) WithPhase(value v1.PersistentVolumePhase) *PersistentVolumeStatusApplyConfiguration {
    	b.Phase = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:39:24 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/HtmlPageGenerator.java

                Optional<DataSeries<Duration>> last = Lists.reverse(executionVersions).stream().filter(Objects::nonNull).findFirst();
                if (first.isPresent() && last.isPresent() && first.get() != last.get()) {
                    td().classAttr("numeric").text(getFormattedConfidence(first.get(), last.get())).end();
    
                    String differenceCss = getDifferenceRatio(first.get(), last.get()).doubleValue() > 0 ? "max-value" : "min-value";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionStats.java

            GarbageCollectionEvent last = Iterables.getLast(events);
            // Total number of garbage collection events observed in the window
            long gcCountDelta = last.getCount() - first.getCount();
            // Time interval between the first event in the window and the last
            long timeDelta = TimeUnit.MILLISECONDS.toSeconds(last.getTimestamp() - first.getTimestamp());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/validation.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Expression field is set to the value of the last call.
    func (b *ValidationApplyConfiguration) WithExpression(value string) *ValidationApplyConfiguration {
    	b.Expression = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner_test.go

    				core.NewGetAction(schema.GroupVersionResource{Version: "v1", Resource: "configmaps"}, metav1.NamespaceSystem, legacytokentracking.ConfigMapName),
    			},
    		},
    		"auto-generated secret has 'last-used' label, the time period since last-used is larger than CleanUpPeriod, secret has not been marked as invalid": {
    			ExistingSecret:           configuredServiceAccountTokenSecret("2022-12-27", "", "2022-12-27", "default", "12345", ""),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/package.go

    package report
    
    import "regexp"
    
    // pkgRE extracts package name, It looks for the first "." or "::" that occurs
    // after the last "/". (Searching after the last / allows us to correctly handle
    // names that look like "some.url.com/foo.bar".)
    var pkgRE = regexp.MustCompile(`^((.*/)?[\w\d_]+)(\.|::)([^/]*)$`)
    
    // packageName returns the package name of the named symbol, or "" if not found.
    func packageName(name string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 512 bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/LightTreeUtil.kt

        override val indexRange: IntRange by lazy {
            val originalRange = nodeRange
            val first = originalRange.first - sourceOffset
            val last = originalRange.last - sourceOffset
            first..last
        }
    
        private
        val lineColumnInfo: LineColumnInfo by lazy {
            LineColumnInfo.fromIndexRange(sourceCode, sourceOffset, indexRange)
        }
        override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top