Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for GetSink (0.12 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RegistrySpec.groovy

            }
    
            @Override
            void applyTo(NodePredicate predicate, Class<? extends RuleSource> rules) {
    
            }
    
            @Override
            ModelNodeInternal getLink(String name) {
                return null
            }
    
            @Override
            int getLinkCount(Predicate<? super MutableModelNode> predicate) {
                return 0
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.java

            this.state = state;
        }
    
        @Override
        public boolean isMutable() {
            return state.mutable;
        }
    
        @Nullable
        @Override
        public abstract ModelNodeInternal getLink(String name);
    
        @Override
        public boolean canBeViewedAs(ModelType<?> type) {
            return getPromise().canBeViewedAs(type);
        }
    
        @Override
        public Iterable<String> getTypeDescriptions() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/FileLocationTest.java

            public String getDomain () {
                return null;
            }
    
    
            /**
             * {@inheritDoc}
             *
             * @see jcifs.DfsReferralData#getLink()
             */
            @Override
            public String getLink () {
                return null;
            }
    
    
            /**
             * {@inheritDoc}
             *
             * @see jcifs.DfsReferralData#getShare()
             */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 08 13:16:07 UTC 2020
    - 23K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/StructNodeInitializer.java

                // This is not the case for a managed subtype of an unmanaged type that implements Named.
                if (bindings.getManagedProperties().containsKey("name")) {
                    MutableModelNode nameLink = modelNode.getLink("name");
                    if (nameLink == null) {
                        throw new IllegalStateException("expected name node for " + modelNode.getPath());
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    		$2 ~ /^(MS|MNT)_/ ||
    		$2 ~ /^TUN(SET|GET|ATTACH|DETACH)/ ||
    		$2 ~ /^(O|F|FD|NAME|S|PTRACE|PT)_/ ||
    		$2 ~ /^LINUX_REBOOT_CMD_/ ||
    		$2 ~ /^LINUX_REBOOT_MAGIC[12]$/ ||
    		$2 !~ "NLA_TYPE_MASK" &&
    		$2 ~ /^(NETLINK|NLM|NLMSG|NLA|IFA|IFAN|RT|RTCF|RTN|RTPROT|RTNH|ARPHRD|ETH_P)_/ ||
    		$2 ~ /^SIOC/ ||
    		$2 ~ /^TIOC/ ||
    		$2 !~ "RTF_BITS" &&
    		$2 ~ /^(IFF|IFT|NET_RT|RTM|RTF|RTV|RTA|RTAX)_/ ||
    		$2 ~ /^BIOC/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (1)
  6. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <sys/timerfd.h>
    #include <sys/uio.h>
    #include <sys/xattr.h>
    #include <netinet/udp.h>
    #include <linux/audit.h>
    #include <linux/bpf.h>
    #include <linux/can.h>
    #include <linux/can/error.h>
    #include <linux/can/netlink.h>
    #include <linux/can/raw.h>
    #include <linux/capability.h>
    #include <linux/cryptouser.h>
    #include <linux/devlink.h>
    #include <linux/dm-ioctl.h>
    #include <linux/errqueue.h>
    #include <linux/ethtool_netlink.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

                    it.addReference("beanRef", Bean, registry.root.getLink("bean1"))
                    it.addReference("otherBeansRef", Bean, registry.root.getLink("otherBeans"))
                }
            }
    
            def scope = registry.root.getLink("beans")
            scope.applyToSelf(rules)
    
            expect:
            // Rule gets applied to node in scope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/run.go

    	// Equivalent to `ip -6 addr add "::6/128" dev lo`
    	address := &net.IPNet{IP: net.ParseIP("::6"), Mask: net.CIDRMask(128, 128)}
    	addr := &netlink.Addr{IPNet: address}
    
    	err = netlink.AddrAdd(link, addr)
    	if ignoreExists(err) != nil {
    		return fmt.Errorf("failed to add IPv6 inbound address: %v", err)
    	}
    	log.Infof("Added ::6 address")
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/util/ipvs_linux.go

    	libipvs "github.com/moby/ipvs"
    
    	"golang.org/x/sys/unix"
    	"k8s.io/klog/v2"
    )
    
    // runner implements ipvs.Interface.
    type runner struct {
    	ipvsHandle *libipvs.Handle
    	mu         sync.Mutex // Protect Netlink calls
    }
    
    // Protocol is the IPVS service protocol type
    type Protocol uint16
    
    // New returns a new Interface which will call ipvs APIs.
    func New() Interface {
    	handle, err := libipvs.New("")
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelMap.java

            return get((String) name);
        }
    
        @Nullable
        @Override
        public T get(String name) {
            // TODO - lock this down
            MutableModelNode link = modelNode.getLink(name);
            if (link == null) {
                return null;
            }
    
            viewState.assertCanReadChild(name);
    
            link.ensureUsable();
            if (!elementFilter.apply(link)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 23K bytes
    - Viewed (0)
Back to top