Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 81 for IsExported (0.38 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleLibrary.java

        }
    
        @Override
        public void setScope(String scope) {
            this.scope = scope;
        }
    
        /**
         * Whether the library is exported to dependent modules.
         */
        public boolean isExported() {
            return exported;
        }
    
        public void setExported(boolean exported) {
            this.exported = exported;
        }
    
        @Override
        public void addToNode(Node parentNode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/net/rpc/server.go

    	for t.Kind() == reflect.Pointer {
    		t = t.Elem()
    	}
    	// PkgPath will be non-empty even for an exported type,
    	// so we need to check the type name as well.
    	return token.IsExported(t.Name()) || t.PkgPath() == ""
    }
    
    // Register publishes in the server the set of methods of the
    // receiver value that satisfy the following conditions:
    //   - exported method of exported type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_globals_to_ml_program.cc

            /*visibility=*/globalBuilder.getStringAttr("private"));
        variableOp.setPrivate();
      }
    
      SymbolTable syms(module);
      for (auto func : module.getOps<func::FuncOp>()) {
        if (!tf_saved_model::IsExported(func)) {
          continue;
        }
        bool success = true;
        func.walk([&](mlir::TF::ReadVariableOp op) {
          auto sym = lookupGlobalTensor(func, op.getResource(), syms, opToName);
          success &= !!sym;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/go/types/typestring.go

    	defer delete(w.seen, typ)
    
    	switch t := typ.(type) {
    	case nil:
    		w.error("nil")
    
    	case *Basic:
    		// exported basic types go into package unsafe
    		// (currently this is just unsafe.Pointer)
    		if isExported(t.name) {
    			if obj, _ := Unsafe.scope.Lookup(t.name).(*TypeName); obj != nil {
    				w.typeName(obj)
    				break
    			}
    		}
    		w.string(t.name)
    
    	case *Array:
    		w.byte('[')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractClasspathEntry.java

        }
    
        public String getPath() {
            return path;
        }
    
        public void setPath(String path) {
            this.path = path;
        }
    
        public boolean isExported() {
            return exported;
        }
    
        public void setExported(boolean exported) {
            this.exported = exported;
        }
    
        public Set<AccessRule> getAccessRules() {
            return accessRules;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/parse.go

    	v := reflect.ValueOf(b)
    	v = reflect.Indirect(v)
    	if v.Kind() != reflect.Struct {
    		fmt.Fprintf(buf, " %v", b)
    	}
    	t := v.Type()
    	for i := 0; i < t.NumField(); i++ {
    		tf := t.Field(i)
    		if !tf.IsExported() {
    			continue
    		}
    		if tf.Type == inlinesType {
    			printis(buf, v.Field(i).Interface().([]Inline))
    		} else if tf.Type.Kind() == reflect.Slice && tf.Type.Elem().Kind() == reflect.String {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/construct.go

    		// store in the map
    		v.Set(reflect.MakeMap(t))
    		v.SetMapIndex(key, item.Elem())
    
    	case reflect.Struct:
    		for i := 0; i < t.NumField(); i++ {
    			field := t.Field(i)
    
    			if !field.IsExported() {
    				continue
    			}
    
    			// use the json field name, which must be stable
    			dataString := strings.Split(field.Tag.Get("json"), ",")[0]
    			if dataString == "-" {
    				// unserialized field, no need to fill it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. src/encoding/gob/encoder.go

    	if ut.user != ut.base {
    		enc.sent[ut.user] = info.id
    	}
    	// Now send the inner types
    	switch st := actual; st.Kind() {
    	case reflect.Struct:
    		for i := 0; i < st.NumField(); i++ {
    			if isExported(st.Field(i).Name) {
    				enc.sendType(w, state, st.Field(i).Type)
    			}
    		}
    	case reflect.Array, reflect.Slice:
    		enc.sendType(w, state, st.Elem())
    	case reflect.Map:
    		enc.sendType(w, state, st.Key())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. clause/expression.go

    				switch reflectValue.Kind() {
    				case reflect.Struct:
    					modelType := reflectValue.Type()
    					for i := 0; i < modelType.NumField(); i++ {
    						if fieldStruct := modelType.Field(i); ast.IsExported(fieldStruct.Name) {
    							namedMap[fieldStruct.Name] = reflectValue.Field(i).Interface()
    
    							if fieldStruct.Anonymous {
    								appendFieldsToMap(reflectValue.Field(i))
    							}
    						}
    					}
    				}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Oct 10 06:45:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. src/reflect/type.go

    	PkgPath string
    
    	Type  Type  // method type
    	Func  Value // func with receiver as first argument
    	Index int   // index for Type.Method
    }
    
    // IsExported reports whether the method is exported.
    func (m Method) IsExported() bool {
    	return m.PkgPath == ""
    }
    
    // String returns the name of k.
    func (k Kind) String() string {
    	if uint(k) < uint(len(kindNames)) {
    		return kindNames[uint(k)]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top