Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for GetSink (0.25 sec)

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