Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,309 for inNode (0.2 sec)

  1. cni/pkg/nodeagent/fakes_test.go

    type fakeNs struct {
    	closed *atomic.Bool
    	fd     uintptr
    	inode  uint64
    }
    
    func newFakeNs(fd uintptr) *fakeNs {
    	// the fake inode is the fd! magic.
    	return &fakeNs{closed: &atomic.Bool{}, fd: fd, inode: uint64(fd)}
    }
    
    func newFakeNsInode(fd uintptr, inode uint64) *fakeNs {
    	return &fakeNs{closed: &atomic.Bool{}, fd: fd, inode: inode}
    }
    
    // Fd returns the file descriptor
    func (f *fakeNs) Fd() uintptr {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/websockets.md

        If you need something easy to integrate with FastAPI but that is more robust, supported by Redis, PostgreSQL or others, check <a href="https://github.com/encode/broadcaster" class="external-link" target="_blank">encode/broadcaster</a>.
    
    ## More info
    
    To learn more about the options, check Starlette's documentation for:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/README.md

    # istio-iptables
    
    This is an `iptables` wrapper library for Istio. It is similar in basic concept to [](https://github.com/kubernetes-sigs/iptables-wrappers) but Istio needs to invoke `iptables` from a more varied set of contexts than K8s, and so cannot simply rely on "default" binary aliases to `iptables`/`iptables-save`/`iptables-restore`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. pkg/volume/util/fsquota/common/quota_common_linux_impl.go

    	bytes, err := v.GetConsumption(v.mountpoint, id)
    	if err != nil {
    		return false, err
    	}
    	if bytes > 0 {
    		return true, nil
    	}
    	inodes, err := v.GetInodes(v.mountpoint, id)
    	return inodes > 0, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/netns_linux.go

    	"fmt"
    	"runtime"
    	"sync"
    
    	netns "github.com/containernetworking/plugins/pkg/ns"
    	"golang.org/x/sys/unix"
    )
    
    type NetnsWrapper struct {
    	innerNetns netns.NetNS
    	inode      uint64
    }
    
    func (n *NetnsWrapper) Inode() uint64 {
    	return n.inode
    }
    
    func (n *NetnsWrapper) Close() error {
    	return n.innerNetns.Close()
    }
    
    func (n *NetnsWrapper) Fd() uintptr {
    	return n.innerNetns.Fd()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 10:05:36 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. cluster/gce/gci/node-helper.sh

    source "${KUBE_ROOT}/cluster/gce/gci/helper.sh"
    
    # shellcheck disable=SC2120
    function get-node-instance-metadata-from-file {
      local kube_env=${1:-node-kube-env} # optional
      local metadata=""
      metadata+="kube-env=${KUBE_TEMP}/${kube_env}.yaml,"
      metadata+="kubelet-config=${KUBE_TEMP}/node-kubelet-config.yaml,"
      metadata+="user-data=${KUBE_ROOT}/cluster/gce/gci/node.yaml,"
      metadata+="configure-sh=${KUBE_ROOT}/cluster/gce/gci/configure.sh,"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyModifier.java

     *
     * @apiNote
     * Gradle has specific extensions to make explicit calls to {@code modify(...)} unnecessary from the DSL.
     * <ul>
     * <li>For Groovy DSL, we create {@code call(...)} equivalents for all the {@code modify(...)} methods.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 22 04:12:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java

        public void test_encode() {
            assertNull(permissionHelper.encode(null));
            assertNull(permissionHelper.encode(""));
            assertNull(permissionHelper.encode(" "));
            assertNull(permissionHelper.encode("{user}"));
            assertNull(permissionHelper.encode("{role}"));
            assertNull(permissionHelper.encode("{group}"));
            assertNull(permissionHelper.encode("(allow)"));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/log/slog/json_handler.go

    	enc.SetEscapeHTML(false)
    	if err := enc.Encode(v); err != nil {
    		return err
    	}
    	bs := bb.Bytes()
    	buf.Write(bs[:len(bs)-1]) // remove final newline
    	return nil
    }
    
    // appendEscapedJSONString escapes s for JSON and appends it to buf.
    // It does not surround the string in quotation marks.
    //
    // Modified from encoding/json/encode.go:encodeState.string,
    // with escapeHTML set to false.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:18:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinModifiersChangeTest.kt

            checkNotBinaryCompatibleKotlin(
                v1 = """
                    fun Int.invoke(some: Int) {}
                    operator fun Boolean.invoke(some: Int) {}
    
                    fun String.invoke(some: Int) {}
                    operator fun Long.invoke(some: Int) {}
    
                    fun Float.invoke(some: Int) {}
                    infix fun Byte.invoke(some: Int) {}
    
                    interface Source {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.6K bytes
    - Viewed (0)
Back to top