Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,932 for statx (0.05 sec)

  1. src/crypto/tls/bogo_shim_test.go

    				log.Fatal("expected ECH to be accepted, but connection state shows it was not")
    			} else if i == 0 && *onInitialExpectECHAccepted && !cs.ECHAccepted {
    				log.Fatal("expected ECH to be accepted, but connection state shows it was not")
    			} else if i > 0 && *onResumeExpectECHAccepted && !cs.ECHAccepted {
    				log.Fatal("expected ECH to be accepted on resumption, but connection state shows it was not")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. cmd/bucket-replication-metrics.go

    		Avg:  a.Avg,
    		Max:  a.Max,
    	}
    	return w
    }
    
    // QStat holds queue stats for replication
    type QStat struct {
    	Count float64 `json:"count"`
    	Bytes float64 `json:"bytes"`
    }
    
    func (q *QStat) add(o QStat) QStat {
    	return QStat{Bytes: q.Bytes + o.Bytes, Count: q.Count + o.Count}
    }
    
    // InQueueMetric holds queue stats for replication
    type InQueueMetric struct {
    	Curr QStat `json:"curr" msg:"cq"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. src/cmd/covdata/metamerge.go

    type metaMerge struct {
    	calloc.BatchCounterAlloc
    	cmerge.Merger
    	// maps package import path to package state
    	pkm map[string]*pkstate
    	// list of packages
    	pkgs []*pkstate
    	// current package state
    	p *pkstate
    	// current pod state
    	pod *podstate
    	// counter data file osargs/goos/goarch state
    	astate *argstate
    }
    
    // pkstate
    type pkstate struct {
    	// index of package within meta-data file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. cmd/storage-datatypes.go

    }
    
    // RawFileInfo - represents raw file stat information as byte array.
    // The above means that any added/deleted fields are incompatible.
    // Make sure to bump the internode version at storage-rest-common.go
    type RawFileInfo struct {
    	// Content of entire xl.meta (may contain data depending on what was requested by the caller.
    	Buf []byte `msg:"b,allownil"`
    }
    
    // FileInfo - represents file stat information.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. pkg/test/kube/dump.go

    		out, err := yaml.Marshal(&pod)
    		if err != nil {
    			scopes.Framework.Warnf("Error marshaling pod state for output: %v", err)
    			continue
    		}
    
    		outPath := podOutputPath(workDir, c, pod, "pod-state.yaml")
    		if err := os.WriteFile(outPath, out, os.ModePerm); err != nil {
    			scopes.Framework.Infof("Error writing out pod state to file: %v", err)
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    	if err != nil {
    		allErrs = append(allErrs, err...)
    	} else if compilationResult != nil && structuredAuthnFeatureEnabled {
    		state.usesEmailClaim = state.usesEmailClaim || usesEmailClaim(compilationResult.AST)
    		state.usesEmailVerifiedClaim = state.usesEmailVerifiedClaim || usesEmailVerifiedClaim(compilationResult.AST)
    		state.mapper.Username = authenticationcel.NewClaimsMapper([]authenticationcel.CompilationResult{*compilationResult})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/manager.go

    		// TODO: Until the bug - https://github.com/golang/go/issues/33357 is fixed, os.stat wouldn't return the
    		// right mode(socket) on windows. Hence deleting the file, without checking whether
    		// its a socket, on windows.
    		stat, err := os.Lstat(filePath)
    		if err != nil {
    			klog.ErrorS(err, "Failed to stat file", "path", filePath)
    			continue
    		}
    		if stat.IsDir() {
    			continue
    		}
    		err = os.RemoveAll(filePath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/qos_container_manager_linux.go

    	}
    	m.getNodeAllocatable = getNodeAllocatable
    	m.activePods = activePods
    
    	// update qos cgroup tiers on startup and in periodic intervals
    	// to ensure desired state is in sync with actual state.
    	go wait.Until(func() {
    		err := m.UpdateCgroups()
    		if err != nil {
    			klog.InfoS("Failed to reserve QoS requests", "err", err)
    		}
    	}, periodicQOSCgroupUpdateInterval, wait.NeverStop)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/Service.java

      boolean isRunning();
    
      /** Returns the lifecycle state of the service. */
      State state();
    
      /**
       * If the service is {@linkplain State#STARTING starting} or {@linkplain State#RUNNING running},
       * this initiates service shutdown and returns immediately. If the service is {@linkplain
       * State#NEW new}, it is {@linkplain State#TERMINATED terminated} without having been started nor
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. src/testing/fstest/testfs.go

    			t.errorf("%s: mismatch:\n\tentry.Info() = %s\n\tfile.Stat() = %s\n", path, feinfo, finfo)
    		}
    	}
    
    	// Stat should be the same as Open+Stat, even for symlinks.
    	info2, err := fs.Stat(t.fsys, path)
    	if err != nil {
    		t.errorf("%s: fs.Stat: %w", path, err)
    		return
    	}
    	finfo2 := formatInfo(info2)
    	if finfo2 != finfo {
    		t.errorf("%s: fs.Stat(...) = %s\n\twant %s", path, finfo2, finfo)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top