Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 72 for GetSink (0.25 sec)

  1. src/syscall/types_linux.go

    #include <sys/times.h>
    #include <sys/timex.h>
    #include <sys/types.h>
    #include <sys/un.h>
    #include <sys/user.h>
    #include <sys/utsname.h>
    #include <sys/wait.h>
    #include <linux/filter.h>
    #include <linux/netlink.h>
    #include <linux/rtnetlink.h>
    #include <linux/icmpv6.h>
    #include <poll.h>
    #include <termios.h>
    #include <time.h>
    #include <unistd.h>
    #include <utime.h>
    
    enum {
    	sizeofPtr = sizeof(void*),
    };
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

        }
    
        @Override
        public boolean hasLink(String name) {
            return links != null && links.containsKey(name);
        }
    
        @Override
        @Nullable
        public ModelNodeInternal getLink(String name) {
            return links == null ? null : links.get(name);
        }
    
        @Override
        public Iterable<? extends ModelNodeInternal> getLinks() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/LanguageTaskNames.groovy

                protected abstract String getBuildType()
    
                String getCompile() {
                    return withProject("compile${buildType}${variant}${languageTaskSuffix}")
                }
    
                String getLink() {
                    return withProject("link${buildType}${variant}")
                }
    
                String getCreate() {
                    return withProject("create${buildType}${variant}")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. cni/pkg/ipset/ipset.go

    // and iptables will be smart enough to pick the correct underlying set (v4 or v6, based on context),
    // reducing the # of rules we need.
    //
    // BUT netlink lib doesn't support adding things to `list:set` types yet, and current tagged release
    // doesn't support creating `list:set` types yet (is in main branch tho).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. go.mod

    	github.com/spf13/cobra v1.8.0
    	github.com/spf13/pflag v1.0.5
    	github.com/spf13/viper v1.19.0
    	github.com/stoewer/go-strcase v1.3.0
    	github.com/stretchr/testify v1.9.0
    	github.com/vishvananda/netlink v1.2.1-beta.2.0.20240411215012-578e95cc3190
    	github.com/vishvananda/netns v0.0.4
    	github.com/yl2chen/cidranger v1.0.2
    	go.opentelemetry.io/otel v1.27.0
    	go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.27.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. src/syscall/mkerrors.sh

    #include <linux/if.h>
    #include <linux/if_arp.h>
    #include <linux/if_ether.h>
    #include <linux/if_tun.h>
    #include <linux/if_packet.h>
    #include <linux/if_addr.h>
    #include <linux/filter.h>
    #include <linux/netlink.h>
    #include <linux/reboot.h>
    #include <linux/rtnetlink.h>
    #include <linux/ptrace.h>
    #include <linux/sched.h>
    #include <linux/serial.h>
    #include <linux/wait.h>
    #include <linux/icmpv6.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  7. LICENSES/vendor/github.com/vishvananda/netlink/LICENSE

    = vendor/github.com/vishvananda/netlink licensed under: =
    
    
                                     Apache License
                               Version 2.0, January 2004
                            http://www.apache.org/licenses/
    
       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 10.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/alias.go

    	}
    
    	// Memoize the type only if valid.
    	// In the presence of unfinished cyclic declarations, Unalias
    	// would otherwise latch the invalid value (#66704).
    	// TODO(adonovan): rethink, along with checker.typeDecl's use
    	// of Invalid to mark unfinished aliases.
    	if t != Typ[Invalid] {
    		a0.actual = t
    	}
    
    	return t
    }
    
    // asNamed returns t as *Named if that is t's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/MutableModelNode.java

        void defineRulesFor(NodePredicate predicate, ModelActionRole role, ModelAction action);
    
        boolean hasLink(String name, Predicate<? super MutableModelNode> predicate);
    
        @Nullable
        MutableModelNode getLink(String name);
    
        int getLinkCount(Predicate<? super MutableModelNode> predicate);
    
        Set<String> getLinkNames(Predicate<? super MutableModelNode> predicate);
    
        Set<String> getLinkNames();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. src/go/types/alias.go

    	}
    
    	// Memoize the type only if valid.
    	// In the presence of unfinished cyclic declarations, Unalias
    	// would otherwise latch the invalid value (#66704).
    	// TODO(adonovan): rethink, along with checker.typeDecl's use
    	// of Invalid to mark unfinished aliases.
    	if t != Typ[Invalid] {
    		a0.actual = t
    	}
    
    	return t
    }
    
    // asNamed returns t as *Named if that is t's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top