Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for nameA (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      %0 = "tf.opA"() ({
          %1 = "tf.opB"() {_xla_compile_device_type = "TPU", _replication_info = "replicate", device = "/device:TPU:0", name = "nameB", is_stateless = true} : () -> (tensor<i32>)
        }) {_xla_compile_device_type = "TPU", _replication_info = "replicate", device = "/device:TPU:0", name = "nameA"} : () -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            )
        }
    
        private DefaultPublishArtifact artifact(String name) {
            artifact(name, "ext", "type", "classy")
        }
    
        private DefaultPublishArtifact artifact(String name, String extension, String type, String classifier) {
            return new DefaultPublishArtifact(name, extension, type, classifier, new Date(), new File(name))
        }
    
        private DefaultPublishArtifact artifact(Map props = [:]) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    		for _, n := range test.nodes {
    			dsw.AddNode(n.name)
    			nodes = append(nodes, n.name)
    			for _, podName := range n.podNames {
    				volumeName := v1.UniqueVolumeName("volume-name")
    				volumeSpec := controllervolumetesting.GetTestVolumeSpec(string(volumeName), volumeName)
    				volumeSpec.PersistentVolume.Spec.AccessModes = []v1.PersistentVolumeAccessMode{v1.ReadWriteOnce}
    				uid := string(n.name) + "-" + podName // unique UID
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  4. src/go/parser/parser.go

    	addParams := func() {
    		assert(typ != nil, "nil type in named parameter list")
    		field := &ast.Field{Names: names, Type: typ}
    		params = append(params, field)
    		names = nil
    	}
    	for _, par := range list {
    		if par.typ != typ {
    			if len(names) > 0 {
    				addParams()
    			}
    			typ = par.typ
    		}
    		names = append(names, par.name)
    	}
    	if len(names) > 0 {
    		addParams()
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_windows.go

    	return
    }
    
    func DnsNameCompare(name1 *uint16, name2 *uint16) (same bool) {
    	r0, _, _ := Syscall(procDnsNameCompare_W.Addr(), 2, uintptr(unsafe.Pointer(name1)), uintptr(unsafe.Pointer(name2)), 0)
    	same = r0 != 0
    	return
    }
    
    func DnsQuery(name string, qtype uint16, options uint32, extra *byte, qrs **DNSRecord, pr *byte) (status error) {
    	var _p0 *uint16
    	_p0, status = UTF16PtrFromString(name)
    	if status != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (1)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		namer := handlers.ContextBasedNaming{
    			Namer:         a.group.Namer,
    			ClusterScoped: false,
    		}
    
    		actions = appendIf(actions, action{"LIST", resourcePath, resourceParams, namer, false}, isLister)
    		actions = appendIf(actions, action{"POST", resourcePath, resourceParams, namer, false}, isCreater)
    		actions = appendIf(actions, action{"DELETECOLLECTION", resourcePath, resourceParams, namer, false}, isCollectionDeleter)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    	f.pos = pos
    
    	if p.tok == _Name || name != nil {
    		// name
    		if name == nil {
    			name = p.name()
    		}
    
    		if p.tok == _Lbrack {
    			// name "[" ...
    			f.Type = p.arrayOrTArgs()
    			if typ, ok := f.Type.(*IndexExpr); ok {
    				// name "[" ... "]"
    				typ.X = name
    			} else {
    				// name "[" n "]" E
    				f.Name = name
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. src/os/os_test.go

    // NFS servers (Issue 848).
    func TestChtimesDir(t *testing.T) {
    	t.Parallel()
    
    	name := newDir("TestChtimes", t)
    	defer RemoveAll(name)
    
    	testChtimes(t, name)
    }
    
    func testChtimes(t *testing.T, name string) {
    	st, err := Stat(name)
    	if err != nil {
    		t.Fatalf("Stat %s: %s", name, err)
    	}
    	preStat := st
    
    	// Move access and modification time back a second
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  9. src/go/build/build.go

    		if d.Type() == fs.ModeSymlink {
    			if ctxt.isDir(ctxt.joinPath(p.Dir, d.Name())) {
    				// Symlinks to directories are not source files.
    				continue
    			}
    		}
    
    		name := d.Name()
    		ext := nameExt(name)
    
    		info, err := ctxt.matchFile(p.Dir, name, allTags, &p.BinaryOnly, fset)
    		if err != nil && strings.HasSuffix(name, ".go") {
    			badGoFile(name, err)
    			continue
    		}
    		if info == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                interface Lifecycle extends Named {}
    
                def LIFECYCLE_ATTRIBUTE = Attribute.of('lifecycle', Lifecycle)
                dependencies.attributesSchema.attribute(LIFECYCLE_ATTRIBUTE)
    
                dependencies {
                    conf('org:test:1.0') {
                        attributes {
                            attribute(LIFECYCLE_ATTRIBUTE, objects.named(Lifecycle, '$attributeValue'))
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top