Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for setstruct (0.17 sec)

  1. src/main/java/org/codelibs/fess/es/user/bsentity/BsUser.java

            this.state = value;
        }
    
        public String getStreet() {
            checkSpecifiedProperty("street");
            return convertEmptyToNull(street);
        }
    
        public void setStreet(String value) {
            registerModifiedProperty("street");
            this.street = value;
        }
    
        public String getSurname() {
            checkSpecifiedProperty("surname");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    inline int FileNo(FILE* file) { return _fileno(file); }
    inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
    inline int RmDir(const char* dir) { return _rmdir(dir); }
    inline bool IsDir(const StatStruct& st) {
      return (_S_IFDIR & st.st_mode) != 0;
    }
    # endif  // GTEST_OS_WINDOWS_MOBILE
    
    #else
    
    typedef struct stat StatStruct;
    
    inline int FileNo(FILE* file) { return fileno(file); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/select.go

    	if scase == nil {
    		n := ir.NewDeclNameAt(src.NoXPos, ir.OTYPE, ir.Pkgs.Runtime.Lookup("scase"))
    		scase = types.NewNamed(n)
    		n.SetType(scase)
    		n.SetTypecheck(1)
    
    		scase.SetUnderlying(types.NewStruct([]*types.Field{
    			types.NewField(base.Pos, typecheck.Lookup("c"), types.Types[types.TUNSAFEPTR]),
    			types.NewField(base.Pos, typecheck.Lookup("elem"), types.Types[types.TUNSAFEPTR]),
    		}))
    	}
    	return scase
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/issues_test.go

    	T1 := NewNamed(n1, nil, nil)
    	n2 := NewTypeName(nopos, nil, "T2", nil)
    	T2 := NewNamed(n2, nil, nil)
    	s1 := NewStruct([]*Var{NewField(nopos, nil, "_", T2, false)}, nil)
    	T1.SetUnderlying(s1)
    	s2 := NewStruct([]*Var{NewField(nopos, nil, "_", T2, false)}, nil)
    	s3 := NewStruct([]*Var{NewField(nopos, nil, "_", s2, false)}, nil)
    	T2.SetUnderlying(s3)
    
    	// These calls must terminate (no endless recursion).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. istioctl/pkg/validate/validate.go

    }
    
    func (v *validator) validateFile(path string, istioNamespace *string, defaultNamespace string, reader io.Reader, writer io.Writer,
    ) (validation.Warning, error) {
    	decoder := yaml.NewDecoder(reader)
    	decoder.SetStrict(true)
    	var errs error
    	var warnings validation.Warning
    	for {
    		// YAML allows non-string keys and the produces generic keys for nested fields
    		raw := make(map[any]any)
    		err := decoder.Decode(&raw)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/func.go

    		i++
    	}
    	typ := types.NewStruct(fields)
    	typ.SetNoalg(true)
    	return typ
    }
    
    // MethodValueType returns the struct type used to hold all the information
    // needed in the closure for a OMETHVALUE node. The address of a variable of
    // the returned type can be cast to a func.
    func MethodValueType(n *ir.SelectorExpr) *types.Type {
    	t := types.NewStruct([]*types.Field{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/expand_calls.go

    			e := b.NewValue1I(pos, OpArraySelect, et, i, a)
    			pos = pos.WithNotStmt()
    			mem = x.decomposeAsNecessary(pos, b, e, mem, rc.next(et))
    		}
    		return mem
    
    	case types.TSTRUCT:
    		for i := 0; i < at.NumFields(); i++ {
    			et := at.Field(i).Type // might need to read offsets from the fields
    			e := b.NewValue1I(pos, OpStructSelect, et, int64(i), a)
    			pos = pos.WithNotStmt()
    			if x.debug > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  8. security/pkg/server/ca/server_test.go

    			}
    
    			if server.nodeAuthorizer != nil {
    				for _, c := range server.nodeAuthorizer.component.All() {
    					kube.WaitForCacheSync("test", stop, c.pods.HasSynced)
    				}
    			}
    
    			reqMeta, _ := structpb.NewStruct(map[string]any{
    				security.ImpersonatedIdentity: c.impersonatePod.Identity(),
    			})
    			request := &pb.IstioCertificateRequest{
    				Csr:      "dumb CSR",
    				Metadata: reqMeta,
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/fmt.go

    		case 1:
    			b.WriteByte(' ')
    			tconv2(b, t.Result(0).Type, 0, mode, visited) // struct->field->field's type
    
    		default:
    			b.WriteByte(' ')
    			formatParams(b, t.Results(), mode, visited)
    		}
    
    	case TSTRUCT:
    		if m := t.StructType().Map; m != nil {
    			mt := m.MapType()
    			// Format the bucket struct for map[x]y as map.bucket[x]y.
    			// This avoids a recursive print that generates very long names.
    			switch t {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/builtin.go

    	typs[104] = newSig(params(typs[103], typs[3]), nil)
    	typs[105] = newSig(params(typs[103]), nil)
    	typs[106] = newSig(params(typs[2]), params(typs[15]))
    	typs[107] = types.NewArray(typs[0], 3)
    	typs[108] = types.NewStruct([]*types.Field{types.NewField(src.NoXPos, Lookup("enabled"), typs[6]), types.NewField(src.NoXPos, Lookup("pad"), typs[107]), types.NewField(src.NoXPos, Lookup("cgo"), typs[6]), types.NewField(src.NoXPos, Lookup("alignme"), typs[24])})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top