Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for GetSink (0.69 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. go.mod

    	github.com/prometheus/common v0.48.0
    	github.com/robfig/cron/v3 v3.0.1
    	github.com/spf13/cobra v1.8.0
    	github.com/spf13/pflag v1.0.5
    	github.com/stretchr/testify v1.8.4
    	github.com/vishvananda/netlink v1.1.0
    	github.com/vishvananda/netns v0.0.4
    	go.etcd.io/etcd/api/v3 v3.5.13
    	go.etcd.io/etcd/client/pkg/v3 v3.5.13
    	go.etcd.io/etcd/client/v3 v3.5.13
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_tpu_device.cc

        // waiting for the transfer to complete anyway there is probably little
        // downside. If we were to add the ability for computations to wait directly
        // on transfers, then we might want to rethink this property.
        // Also ideally this host callback should be on source stream rather than
        // destination stream, but when this function returns, the send requests
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. go.sum

    github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
    github.com/mdlayher/netlink v1.6.0/go.mod h1:0o3PlBmGst1xve7wQ7j/hwpNaFaH4qCRyWCdcZk8/vA=
    github.com/mdlayher/netlink v1.7.2 h1:/UtM3ofJap7Vl4QWCPDGXY8d3GIY2UGSDbK+QWmY8/g=
    github.com/mdlayher/netlink v1.7.2/go.mod h1:xraEF7uJbxLhc5fpHL4cPe221LI2bdttWlU+ZGLfQSw=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            @Override
            void apply() {
                // Rough implementation to get something to work
                ModelNodeInternal parentTarget = parent.getTarget();
                ModelNodeInternal childTarget = parentTarget.getLink(path.getName());
                if (childTarget == null) {
                    throw new NullPointerException("child is null");
                }
                // TODO:LPTR Remove projection for reference node
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  9. src/runtime/chan.go

    	// buf points into the same allocation, elemtype is persistent.
    	// SudoG's are referenced from their owning thread so they can't be collected.
    	// TODO(dvyukov,rlh): Rethink when collector can move allocated objects.
    	var c *hchan
    	switch {
    	case mem == 0:
    		// Queue or element size is zero.
    		c = (*hchan)(mallocgc(hchanSize, nil, true))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/parse.go

    	// ARM only.
    	if !p.arch.InFamily(sys.ARM, sys.ARM64) {
    		return false
    	}
    	// R1<<...
    	if lex.IsRegisterShift(p.peek()) {
    		return true
    	}
    	// R(1)<<...   Ugly check. TODO: Rethink how we handle ARM register shifts to be
    	// less special.
    	if p.peek() != '(' || len(p.input)-p.inputPos < 4 {
    		return false
    	}
    	return p.at('(', scanner.Int, ')') && lex.IsRegisterShift(p.input[p.inputPos+3].ScanToken)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top