Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 249 for Performing (0.15 sec)

  1. releasenotes/notes/revision-tag-default-validation.yaml

        through the default tag will also win leader elections and assume singleton cluster responsibilities.
    
    upgradeNotes:
      - title: Default revision must be switched when performing a revision-based upgrade.
        content: |
          When installing a new Istio control plane revision the previous resource validator will remain unchanged to prevent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 956 bytes
    - Viewed (0)
  2. src/runtime/nonwindows_stub.go

    // license that can be found in the LICENSE file.
    
    //go:build !windows
    
    package runtime
    
    // osRelaxMinNS is the number of nanoseconds of idleness to tolerate
    // without performing an osRelax. Since osRelax may reduce the
    // precision of timers, this should be enough larger than the relaxed
    // timer precision to keep the timer error acceptable.
    const osRelaxMinNS = 0
    
    var haveHighResSleep = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 03:12:13 UTC 2024
    - 962 bytes
    - Viewed (0)
  3. pkg/volume/volume_linux.go

    	fsInfo, err := os.Stat(rootDir)
    	if err != nil {
    		klog.ErrorS(err, "Performing recursive ownership change on rootDir because reading permissions of root volume failed", "path", rootDir)
    		return true
    	}
    	stat, ok := fsInfo.Sys().(*syscall.Stat_t)
    	if !ok || stat == nil {
    		klog.ErrorS(nil, "Performing recursive ownership change on rootDir because reading permissions of root volume failed", "path", rootDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. cmd/is-dir-empty_linux.go

    // Returns true if no error and there is no object or prefix inside this directory
    func isDirEmpty(dirname string, legacy bool) bool {
    	if legacy {
    		// On filesystems such as btrfs, nfs this is not true, so fallback
    		// to performing readdir() instead.
    		entries, err := readDirN(dirname, 1)
    		if err != nil {
    			return false
    		}
    		return len(entries) == 0
    	}
    	var stat syscall.Stat_t
    	if err := syscall.Stat(dirname, &stat); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 15:17:08 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/rules/RuleAction.java

     * limitations under the License.
     */
    
    package org.gradle.internal.rules;
    
    import java.util.List;
    
    /**
     * An action representing a rule, taking declared inputs and performing an action on a subject.
     *
     * @param <T> The subject type
     */
    public interface RuleAction<T> {
        List<Class<?>> getInputTypes();
        void execute(T subject, List<?> inputs);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 931 bytes
    - Viewed (0)
  6. pkg/api/testing/serialization_proto_test.go

    	if !apiequality.Semantic.Equalities.DeepEqual(out, obj) {
    		t.Logf("marshal\n%s", hex.Dump(data))
    		t.Fatalf("Unmarshal is unequal\n%s", cmp.Diff(out, obj))
    	}
    }
    
    // BenchmarkEncodeCodec measures the cost of performing a codec encode, which includes
    // reflection (to clear APIVersion and Kind)
    func BenchmarkEncodeCodecProtobuf(b *testing.B) {
    	items := benchmarkItems(b)
    	width := len(items)
    	s := protobuf.NewSerializer(nil, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolvableDependencies.java

         *
         * @param action The action to execute.
         */
        void afterResolve(@DelegatesTo(ResolvableDependencies.class) Closure action);
    
        /**
         * Returns the resolved dependency graph, performing the resolution lazily.
         *
         * <p>The lazy aspect depends on what is done with the returned {@code ResolutionResult}.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 17:30:50 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. docs/extensions/fan-out/README.md

    ## Overview
    
    MinIO implements an S3 extension to perform multiple concurrent fan-out upload operations. A perfect use case scenario for performing fan-out operations of incoming TSB (Time Shift Buffer's). TSBs are a method of facilitating time-shifted playback of television signaling, and media content.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 25 05:51:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/MutationGuards.java

            return IDENTITY_MUTATION_GUARD;
        }
    
        /**
         * Retrieves the {@code MutationGuard} of the target if it implements {@code WithMutationGuard}, else returns an identity mutation guard performing no guard operations.
         */
        public static MutationGuard of(Object target) {
            if (target instanceof WithMutationGuard) {
                return ((WithMutationGuard) target).getMutationGuard();
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 21:58:11 UTC 2018
    - 2K bytes
    - Viewed (0)
  10. src/runtime/metrics/doc.go

    		Estimated total CPU time goroutines spent performing GC
    		tasks to assist the GC and prevent it from falling behind the
    		application. This metric is an overestimate, and not directly
    		comparable to system CPU time measurements. Compare only with
    		other /cpu/classes metrics.
    
    	/cpu/classes/gc/mark/dedicated:cpu-seconds
    		Estimated total CPU time spent performing GC tasks on processors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top