Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 291 for valueDoc (1.5 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/plugin1/plugin1.go

    	call(g)
    }
    
    type sameNameReusedInPlugins struct {
    	X string
    }
    
    type sameNameHolder struct {
    	F *sameNameReusedInPlugins
    }
    
    func UnexportedNameReuse() {
    	h := sameNameHolder{}
    	v := reflect.ValueOf(&h).Elem().Field(0)
    	newval := reflect.New(v.Type().Elem())
    	v.Set(newval)
    }
    
    func main() {
    	panic("plugin1.main called")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 820 bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelPropertyExtractionResult.java

            return property;
        }
    
        public Iterable<PropertyAccessorExtractionContext> getAccessors() {
            return accessors;
        }
    
        @Override
        public String toString() {
            return String.valueOf(property);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/testdata/plugin2/plugin2.go

    	common.X = 2
    }
    
    type sameNameReusedInPlugins struct {
    	X string
    }
    
    type sameNameHolder struct {
    	F *sameNameReusedInPlugins
    }
    
    func UnexportedNameReuse() {
    	h := sameNameHolder{}
    	v := reflect.ValueOf(&h).Elem().Field(0)
    	newval := reflect.New(v.Type().Elem())
    	v.Set(newval)
    }
    
    func main() {
    	panic("plugin1.main called")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 796 bytes
    - Viewed (0)
  4. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/OperationIdentifier.java

            }
            this.id = id;
        }
    
        public long getId() {
            return id;
        }
    
        @Override
        public String toString() {
            return String.valueOf(id);
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
            if (o == null || getClass() != o.getClass()) {
                return false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/WrapperExecutor.java

        private int getProperty(String propertyName, int defaultValue) {
            return Integer.parseInt(getProperty(propertyName, String.valueOf(defaultValue)));
        }
    
        private boolean getProperty(String propertyName, boolean defaultValue) {
            return Boolean.parseBoolean(getProperty(propertyName, String.valueOf(defaultValue)));
        }
    
        private String getProperty(String propertyName, String defaultValue, boolean required) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/PropertyReportTask.java

            private void putProperty(String name, @Nullable Object value) {
                String strValue;
                try {
                    strValue = String.valueOf(value);
                } catch (Exception e) {
                    String valueClass = value != null ? String.valueOf(value.getClass()) : "null";
                    warnings.add(new PropertyWarning(name, valueClass, e));
                    strValue = valueClass + " [Rendering failed]";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  7. src/database/sql/driver/types.go

    		return b, nil
    	case []byte:
    		b, err := strconv.ParseBool(string(s))
    		if err != nil {
    			return nil, fmt.Errorf("sql/driver: couldn't convert %q into type bool", s)
    		}
    		return b, nil
    	}
    
    	sv := reflect.ValueOf(src)
    	switch sv.Kind() {
    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    		iv := sv.Int()
    		if iv == 1 || iv == 0 {
    			return iv == 1, nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:30:20 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. tests/integration/security/testdata/authz/jwt.yaml.tmpl

            methods: ["GET"]
        when:
        - key: request.auth.claims[nested][non-exist]
          values: ["valueC"]
      - to:
        - operation:
            paths: ["/nested-key2"]
            methods: ["GET"]
        when:
        - key: request.auth.claims[nested][key2]
          values: ["valueC"]
      - to:
        - operation:
            paths: ["/nested-2-key1"]
            methods: ["GET"]
        when:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. callbacks/create_test.go

    		DB: &gorm.DB{
    			Config: &gorm.Config{
    				NowFunc: func() time.Time { return time.Time{} },
    			},
    			Statement: &gorm.Statement{
    				Settings: sync.Map{},
    				Schema:   s,
    			},
    		},
    		ReflectValue: reflect.ValueOf(dest),
    		Dest:         dest,
    	}
    
    	stmt.Schema = s
    
    	values := ConvertToCreateValues(stmt)
    	expected := clause.Values{
    		// column has value + defaultValue column has value (which should have a stable order)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 05:48:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1/types_test.go

    // protobuf field numbers are not accidentally reused by other fields.
    func Test_NetworkPolicyRemovedFieldProtobufNumberReservation(t *testing.T) {
    	obj := reflect.ValueOf(NetworkPolicy{}).Type()
    	for i := 0; i < obj.NumField(); i++ {
    		f := obj.Field(i)
    		protobufSpec := f.Tag.Get("protobuf")
    		if protobufSpec == "" {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top