Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for fl (0.03 sec)

  1. src/cmd/compile/internal/typecheck/mkbuiltin.go

    	default:
    		log.Fatalf("unhandled type: %#v", t)
    		panic("unreachable")
    	}
    }
    
    func (i *typeInterner) fields(fl *ast.FieldList, keepNames bool) string {
    	if fl == nil || len(fl.List) == 0 {
    		return "nil"
    	}
    
    	var res []string
    	for _, f := range fl.List {
    		typ := i.subtype(f.Type)
    		if len(f.Names) == 0 {
    			res = append(res, typ)
    		} else {
    			for _, name := range f.Names {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. src/internal/reflectlite/value.go

    		}
    		// The returned value's address is v's value.
    		if ptr == nil {
    			return Value{}
    		}
    		tt := (*ptrType)(unsafe.Pointer(v.typ()))
    		typ := tt.Elem
    		fl := v.flag&flagRO | flagIndir | flagAddr
    		fl |= flag(typ.Kind())
    		return Value{typ, ptr, fl}
    	}
    	panic(&ValueError{"reflectlite.Value.Elem", v.kind()})
    }
    
    func valueInterface(v Value) any {
    	if v.flag == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        }
    
    
        /**
         * @param fl
         *            the flags2 to set
         */
        public final void setFlags2 ( int fl ) {
            this.flags2 = fl;
        }
    
    
        /**
         * @param fl
         */
        public final void addFlags2 ( int fl ) {
            this.flags2 |= fl;
        }
    
    
        /**
         * 
         * @param fl
         */
        public final void remFlags2 ( int fl ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  4. src/reflect/makefunc.go

    		panic("reflect: internal error: invalid use of makeMethodValue")
    	}
    
    	// Ignoring the flagMethod bit, v describes the receiver, not the method type.
    	fl := v.flag & (flagRO | flagAddr | flagIndir)
    	fl |= flag(v.typ().Kind())
    	rcvr := Value{v.typ(), v.ptr, fl}
    
    	// v.Type returns the actual type of the method value.
    	ftyp := (*funcType)(unsafe.Pointer(v.Type().(*rtype)))
    
    	code := methodValueCallCodePtr()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java

            setResponse(resp);
            return resp;
        }
    
    
        /**
         * @param fl
         *            the flags0 to set
         */
        public final void addFlags0 ( int fl ) {
            this.flags0 |= fl;
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            int start = dstIndex;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/html.go

    	filename = ""
    	for _, fl := range all {
    		fmt.Fprint(&buf, "<div>&nbsp;</div>")
    		if filename != fl.Filename {
    			fmt.Fprintf(&buf, "<div><strong>%v</strong></div>", fl.Filename)
    			filename = fl.Filename
    		}
    		for i, line := range fl.Lines {
    			ln := int(fl.StartLineno) + i
    			var escaped string
    			if strings.TrimSpace(line) == "" {
    				escaped = "&nbsp;"
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  7. pkg/registry/flowcontrol/flowschema/strategy.go

    	return fields
    }
    
    // PrepareForCreate clears the status of a flow-schema before creation.
    func (flowSchemaStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    	fl := obj.(*flowcontrol.FlowSchema)
    	fl.Status = flowcontrol.FlowSchemaStatus{}
    	fl.Generation = 1
    }
    
    // PrepareForUpdate clears fields that are not allowed to be set by end users on update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 11:48:22 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. src/reflect/value.go

    	}
    	if v.typ().Kind() == abi.Interface && v.IsNil() {
    		panic("reflect: Method on nil interface value")
    	}
    	fl := v.flag.ro() | (v.flag & flagIndir)
    	fl |= flag(Func)
    	fl |= flag(i)<<flagMethodShift | flagMethod
    	return Value{v.typ(), v.ptr, fl}
    }
    
    // NumMethod returns the number of methods in the value's method set.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_test_context.go

    	metav1.TypeMeta
    	metav1.ListMeta
    	Items []T
    }
    
    func (fl *FakeList[P]) DeepCopyObject() runtime.Object {
    	copiedItems := make([]P, len(fl.Items))
    	for i, item := range fl.Items {
    		copiedItems[i] = item.DeepCopyObject().(P)
    	}
    	return &FakeList[P]{
    		TypeMeta: fl.TypeMeta,
    		ListMeta: fl.ListMeta,
    		Items:    copiedItems,
    	}
    }
    
    type fakeAuthorizer struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. test/ken/robfunc.go

    
    func f8(a int) (x int, y float64) {
    	return 8, 8.0
    }
    
    type T struct {
    	x, y int
    }
    
    func (t *T) m10(a int, b float64) int {
    	return (t.x + a) * (t.y + int(b))
    }
    
    
    func f9(a int) (in int, fl float64) {
    	i := 9
    	f := float64(9)
    	return i, f
    }
    
    
    func main() {
    	f1()
    	f2(1)
    	r3 := f3(1, 2)
    	assertequal(r3, 3, "3")
    	r4 := f4(0, 2, 3.0)
    	assertequal(r4, 4, "4")
    	r5 := f5(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 1.4K bytes
    - Viewed (0)
Back to top