Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,309 for inNode (0.14 sec)

  1. cluster/gce/gci/node.yaml

          StandardOutput=journal+console
    
          [Install]
          WantedBy=kubernetes.target
    
      - path: /etc/systemd/system/kube-node-configuration.service
        permissions: 0644
        owner: root
        content: |
          [Unit]
          Description=Configure kubernetes node
          After=kube-node-installation.service
    
          [Service]
          Type=oneshot
          RemainAfterExit=yes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 13 18:38:40 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  2. pkg/util/node/node.go

    // node in a single-stack cluster, or a dual-stack pair of IPs in a dual-stack cluster
    // (for nodes that actually have dual-stack IPs). Among other things, the IPs returned
    // from this function are used as the `.status.PodIPs` values for host-network pods on the
    // node, and the first IP is used as the `.status.HostIP` for all pods on the node.
    func GetNodeHostIPs(node *v1.Node) ([]net.IP, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/SerializedLambdaParametersCheckingCodec.kt

    import org.gradle.internal.serialize.graph.decodeBean
    import org.gradle.internal.serialize.graph.logUnsupported
    import org.objectweb.asm.Type
    import org.objectweb.asm.Type.getArgumentTypes
    import java.lang.invoke.SerializedLambda
    import kotlin.reflect.KClass
    
    
    /**
     * In encoding a [SerializedLambda], this codec checks if the lambda parameter types are allowed in the configuration cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. hack/make-rules/test-cmd.sh

      kube::log::status "Building kube-apiserver"
      make -C "${KUBE_ROOT}" WHAT="cmd/kube-apiserver"
    
      # Start kube-apiserver
      kube::log::status "Starting kube-apiserver"
    
      # Admission Controllers to invoke prior to persisting objects in cluster
      ENABLE_ADMISSION_PLUGINS="LimitRanger,ResourceQuota"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. pkg/proxy/node.go

    // OnNodeAdd is a handler for Node creates.
    func (n *NodeEligibleHandler) OnNodeAdd(node *v1.Node) { n.HealthServer.SyncNode(node) }
    
    // OnNodeUpdate is a handler for Node updates.
    func (n *NodeEligibleHandler) OnNodeUpdate(_, node *v1.Node) { n.HealthServer.SyncNode(node) }
    
    // OnNodeDelete is a handler for Node deletes.
    func (n *NodeEligibleHandler) OnNodeDelete(node *v1.Node) { n.HealthServer.SyncNode(node) }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. src/log/slog/text_handler.go

    // or single group "a" and a key "b.c".
    // If it is necessary to reconstruct the group structure of a key
    // even in the presence of dots inside components, use
    // [HandlerOptions.ReplaceAttr] to encode that information in the key.
    //
    // Each call to Handle results in a single serialized call to
    // io.Writer.Write.
    func (h *TextHandler) Handle(_ context.Context, r Record) error {
    	return h.commonHandler.handle(r)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/KotlinScriptHost.kt

    import org.gradle.groovy.scripts.ScriptSource
    
    import org.gradle.internal.service.ServiceRegistry
    import org.gradle.kotlin.dsl.accessors.ProjectAccessorsClassPathGenerator
    
    import org.gradle.kotlin.dsl.invoke
    
    import org.gradle.util.internal.ConfigureUtil.configureByMap
    import java.io.File
    
    
    class KotlinScriptHost<out T : Any> internal constructor(
        val target: T,
        val scriptSource: ScriptSource,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/netns_linux_test.go

    	ns, err := OpenNetns("/proc/self/ns/net")
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	// the inode for netns is proc dynamic, so it needs to be higher than
    	// #define PROC_DYNAMIC_FIRST 0xF0000000U
    
    	if ns.Inode() < 0xF0000000 {
    		t.Fatalf("unexpected inode: %v", ns.Inode())
    	}
    	defer ns.Close()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 976 bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/netns.go

    package nodeagent
    
    import "io"
    
    type NetnsFd interface {
    	Fd() uintptr
    }
    
    type Netns interface {
    	NetnsFd
    	Inode() uint64
    }
    type NetnsCloser interface {
    	io.Closer
    	Netns
    }
    
    type NetnsWithFd struct {
    	netns io.Closer
    	fd    uintptr
    	inode uint64
    }
    
    func (n *NetnsWithFd) Close() error {
    	if n.netns == nil {
    		return nil
    	}
    
    	ret := n.netns.Close()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. cluster/gce/windows/node-helper.sh

      echo "${metadata}"
    }
    
    # $1: template name (required).
    # $2: scopes flag.
    function create-windows-node-instance-template {
      local template_name="$1"
      local scopes_flag="$2"
      create-node-template "${template_name}" "${scopes_flag}" "$(get-windows-node-instance-metadata-from-file)" "$(get-windows-node-instance-metadata)" "windows" "${NODE_SIZE}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 03 10:20:06 UTC 2019
    - 2.6K bytes
    - Viewed (0)
Back to top