Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 263 for elem3 (0.1 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    		return nil
    	case *types.Pointer:
    		return find(obj, T.Elem(), append(path, opElem), seen)
    	case *types.Slice:
    		return find(obj, T.Elem(), append(path, opElem), seen)
    	case *types.Array:
    		return find(obj, T.Elem(), append(path, opElem), seen)
    	case *types.Chan:
    		return find(obj, T.Elem(), append(path, opElem), seen)
    	case *types.Map:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/clean/clean.go

    		}
    		keep(p.GoFiles)
    		keep(p.CgoFiles)
    		keep(p.TestGoFiles)
    		keep(p.XTestGoFiles)
    	}
    
    	_, elem := filepath.Split(p.Dir)
    	var allRemove []string
    
    	// Remove dir-named executable only if this is package main.
    	if p.Name == "main" {
    		allRemove = append(allRemove,
    			elem,
    			elem+".exe",
    			p.DefaultExecName(),
    			p.DefaultExecName()+".exe",
    		)
    	}
    
    	// Remove package test executables.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/runtime/sema.go

    // queue adds s to the blocked goroutines in semaRoot.
    func (root *semaRoot) queue(addr *uint32, s *sudog, lifo bool) {
    	s.g = getg()
    	s.elem = unsafe.Pointer(addr)
    	s.next = nil
    	s.prev = nil
    	s.waiters = 0
    
    	var last *sudog
    	pt := &root.treap
    	for t := *pt; t != nil; t = *pt {
    		if t.elem == unsafe.Pointer(addr) {
    			// Already have addr in list.
    			if lifo {
    				// Substitute s in t's place in treap.
    				*pt = s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/net/rpc/server.go

    		argv = reflect.New(mtype.ArgType.Elem())
    	} else {
    		argv = reflect.New(mtype.ArgType)
    		argIsValue = true
    	}
    	// argv guaranteed to be a pointer now.
    	if err = codec.ReadRequestBody(argv.Interface()); err != nil {
    		return
    	}
    	if argIsValue {
    		argv = argv.Elem()
    	}
    
    	replyv = reflect.New(mtype.ReplyType.Elem())
    
    	switch mtype.ReplyType.Elem().Kind() {
    	case reflect.Map:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. src/runtime/mfinal.go

    	}
    
    	if uintptr(e.data) != base {
    		// As an implementation detail we allow to set finalizers for an inner byte
    		// of an object if it could come from tiny alloc (see mallocgc for details).
    		if ot.Elem == nil || ot.Elem.Pointers() || ot.Elem.Size_ >= maxTinySize {
    			throw("runtime.SetFinalizer: pointer not at beginning of allocated block")
    		}
    	}
    
    	f := efaceOf(&finalizer)
    	ftyp := f._type
    	if ftyp == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. statement.go

    			for destValue.Kind() == reflect.Ptr {
    				destValue = destValue.Elem()
    			}
    
    			if stmt.ReflectValue != destValue {
    				if !destValue.CanAddr() {
    					destValueCanAddr := reflect.New(destValue.Type())
    					destValueCanAddr.Elem().Set(destValue)
    					stmt.Dest = destValueCanAddr.Interface()
    					destValue = destValueCanAddr.Elem()
    				}
    
    				switch destValue.Kind() {
    				case reflect.Struct:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/module/module.go

    func checkElem(elem string, kind pathKind) error {
    	if elem == "" {
    		return fmt.Errorf("empty path element")
    	}
    	if strings.Count(elem, ".") == len(elem) {
    		return fmt.Errorf("invalid path element %q", elem)
    	}
    	if elem[0] == '.' && kind == modulePath {
    		return fmt.Errorf("leading dot in path element")
    	}
    	if elem[len(elem)-1] == '.' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

        // Add a size-1 leading dimension to elem.
        auto slice_type = original_elem.getType().cast<RankedTensorType>();
        elem = builder.create<TF::ReshapeOp>(
            write.getLoc(), ArrayRef<Type>{slice_type},
            ArrayRef<Value>{elem, cutil::GetR1Const(slice_type.getShape(), builder,
                                                    write.getLoc())});
        elem =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  9. pkg/api/v1/persistentvolume/util_test.go

    		secretPaths.Insert(sets.List[string](collectSecretPaths(t, path, name, tp.Elem()))...)
    		return secretPaths
    	}
    
    	if strings.Contains(strings.ToLower(name), "secret") {
    		secretPaths.Insert(path.String())
    	}
    
    	switch tp.Kind() {
    	case reflect.Pointer:
    		secretPaths.Insert(sets.List[string](collectSecretPaths(t, path, name, tp.Elem()))...)
    	case reflect.Struct:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelMapIntegrationTest.groovy

                model {
                    things { it.create("elem") }
                }
            """
    
            expect:
            succeeds "model"
            ModelReportOutput.from(output).hasNodeStructure {
                things {
                    elem(type: 'java.util.List<java.lang.String>', creator: 'things { ... } @ build.gradle line 8, column 17 > create(elem)')
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top