Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 102 for SELF (0.04 sec)

  1. cmd/notification.go

    // external systems, see event-notification.go
    
    // NotificationSys - notification system.
    type NotificationSys struct {
    	peerClients    []*peerRESTClient // Excludes self
    	allPeerClients []*peerRESTClient // Includes nil client for self
    }
    
    // NotificationPeerErr returns error associated for a remote peer.
    type NotificationPeerErr struct {
    	Host xnet.Host // Remote host on which the rpc call was initiated
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  2. src/syscall/exec_linux.go

    	)
    	pidfd = -1
    
    	rlim := origRlimitNofile.Load()
    
    	if sys.UidMappings != nil {
    		puid = []byte("/proc/self/uid_map\000")
    		uidmap = formatIDMappings(sys.UidMappings)
    	}
    
    	if sys.GidMappings != nil {
    		psetgroups = []byte("/proc/self/setgroups\000")
    		pgid = []byte("/proc/self/gid_map\000")
    
    		if sys.GidMappingsEnableSetgroups {
    			setgroups = []byte("allow\000")
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/list.md

    | `minio_heal_objects_heal_total`              | Objects healed in current self healing run.                      |
    | `minio_heal_objects_total`                   | Objects scanned in current self healing run.                     |
    | `minio_heal_time_last_activity_nano_seconds` | Time elapsed (in nano seconds) since last self healing activity. |
    
    ## Inter Node Metrics
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

            }
        }
    
        static <K, V, R> Map<K, R> remapValues(Map<K, V> self, @ClosureParams(FirstParam.SecondGenericType.class) Closure<R> transform) {
            self.collectEntries { K key, V value -> [(key): transform(value)] }
        }
    
        // `org.gradle.tooling.model.gradle.GradleBuild` -> `o.g.t.m.g.GradleBuild`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/config.go

    		return
    	}
    
    	// Use protobufs for self-communication.
    	// Since not every generic apiserver has to support protobufs, we
    	// cannot default to it in generic apiserver and need to explicitly
    	// set it in kube-apiserver.
    	genericConfig.LoopbackClientConfig.ContentConfig.ContentType = "application/vnd.kubernetes.protobuf"
    	// Disable compression for self-communication, since we are going to be
    	// on a fast local network
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. pkg/volume/volume.go

    // Mounter interface provides methods to set up/mount the volume.
    type Mounter interface {
    	// Uses Interface to provide the path for Docker binds.
    	Volume
    
    	// SetUp prepares and mounts/unpacks the volume to a
    	// self-determined directory path. The mount point and its
    	// content should be owned by `fsUser` or 'fsGroup' so that it can be
    	// accessed by the pod. This may be called more than once, so
    	// implementations must be idempotent.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

      This class contains python methods that overrides C++ virtual functions
      declared in `pywrap_function_lib.PyFunctionLibrary`.
      """
    
      # LINT.IfChange(save_exported_model)
      def save_exported_model(
          self,
          dst_saved_model_path: str,
          exported_model_serialized: bytes,
          src_saved_model_path: str,
          tags: set[str],
          serialized_signature_def_map: dict[str, bytes],
      ) -> Optional[bool]:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    	"k8s.io/apiserver/pkg/cel/library"
    	"k8s.io/apiserver/pkg/cel/metrics"
    )
    
    const (
    	// ScopedVarName is the variable name assigned to the locally scoped data element of a CEL validation
    	// expression.
    	ScopedVarName = "self"
    
    	// OldScopedVarName is the variable name assigned to the existing value of the locally scoped data element of a
    	// CEL validation expression.
    	OldScopedVarName = "oldSelf"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. cmd/metrics.go

    	}
    
    	ch <- prometheus.MustNewConstMetric(
    		prometheus.NewDesc(
    			prometheus.BuildFQName(healMetricsNamespace, "time", "since_last_activity"),
    			"Time elapsed (in nano seconds) since last self healing activity. This is set to -1 until initial self heal activity",
    			nil, nil),
    		prometheus.GaugeValue,
    		float64(dur),
    	)
    	for k, v := range bgSeq.getScannedItemsMap() {
    		ch <- prometheus.MustNewConstMetric(
    			prometheus.NewDesc(
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            public boolean calculateDependencies(GoalGraph graph, Collection<ModelGoal> dependencies) {
                // Not already known, attempt to self-close the parent
                ModelPath parent = getPath().getParent();
                if (parent != null) {
                    // TODO - should be >= self closed
                    dependencies.add(graph.nodeAtState(new NodeAtState(parent, SelfClosed)));
                }
                return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
Back to top