Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 126 for setfib (0.18 sec)

  1. src/math/cmplx/tan.go

    )
    
    // The original C code, the long comment, and the constants
    // below are from http://netlib.sandia.gov/cephes/c9x-complex/clog.c.
    // The go code is a simplified version of the original C.
    //
    // Cephes Math Library Release 2.8:  June, 2000
    // Copyright 1984, 1987, 1989, 1992, 2000 by Stephen L. Moshier
    //
    // The readme file at http://netlib.sandia.gov/cephes/ says:
    //    Some software in this archive may be from the book _Methods and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbWatchHandleImpl.java

                    }
    
                    /*
                     * NtTrans Notify Change Request / Response
                     */
                    req = new NtTransNotifyChange(th.getConfig(), this.handle.getFid(), this.filter, this.recursive);
                    resp = new NtTransNotifyChangeResponse(th.getConfig());
                }
    
                if ( log.isTraceEnabled() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java

         */
        public SmbComOpenAndXResponse ( Configuration config, SmbComSeekResponse andxResp ) {
            super(config, andxResp);
        }
    
    
        /**
         * @return the fid
         */
        public final int getFid () {
            return this.fid;
        }
    
    
        /**
         * @return the dataSize
         */
        public final int getDataSize () {
            return this.fileDataSize;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  4. src/cmd/internal/goobj/objfile_test.go

    	// Write a symbol, a relocation, and an aux info.
    	var buf bytes.Buffer
    	w := dummyWriter(&buf)
    
    	var s Sym
    	s.SetABI(1)
    	s.SetType(uint8(objabi.STEXT))
    	s.SetFlag(0x12)
    	s.SetSiz(12345)
    	s.SetAlign(8)
    	s.Write(w)
    
    	var r Reloc
    	r.SetOff(12)
    	r.SetSiz(4)
    	r.SetType(uint16(objabi.R_ADDR))
    	r.SetAdd(54321)
    	r.SetSym(SymRef{11, 22})
    	r.Write(w)
    
    	var a Aux
    	a.SetType(AuxFuncInfo)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:12 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. cmd/metrics-v3-cluster-erasure-set.go

    	erasureSetWriteTolerance     = "write_tolerance"
    	erasureSetReadHealth         = "read_health"
    	erasureSetWriteHealth        = "write_health"
    )
    
    const (
    	poolIDL = "pool_id"
    	setIDL  = "set_id"
    )
    
    var (
    	erasureSetOverallWriteQuorumMD = NewGaugeMD(erasureSetOverallWriteQuorum,
    		"Overall write quorum across pools and sets")
    	erasureSetOverallHealthMD = NewGaugeMD(erasureSetOverallHealth,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:25:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. pkg/probe/exec/exec_test.go

    	return nil
    }
    
    func (f *FakeCmd) CombinedOutput() ([]byte, error) {
    	return f.out, f.err
    }
    
    func (f *FakeCmd) Output() ([]byte, error) {
    	return f.stdout, f.err
    }
    
    func (f *FakeCmd) SetDir(dir string) {}
    
    func (f *FakeCmd) SetStdin(in io.Reader) {}
    
    func (f *FakeCmd) SetStdout(out io.Writer) {
    	f.writer = out
    }
    
    func (f *FakeCmd) SetStderr(out io.Writer) {
    	f.writer = out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/math/big/alias_test.go

    			}, v.Int, x.Int)
    		},
    		"Set": func(v, x bigInt) bool {
    			return checkAliasingOneArg(t, (*big.Int).Set, v.Int, x.Int)
    		},
    		"SetBit": func(v, x bigInt, i smallUint, b zeroOrOne) bool {
    			return checkAliasingOneArg(t, func(v, x *big.Int) *big.Int {
    				return v.SetBit(x, int(i.uint), b.uint)
    			}, v.Int, x.Int)
    		},
    		"Sqrt": func(v bigInt, x positiveInt) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  8. src/math/big/bits_test.go

    			min = b
    		}
    	}
    
    	// create bit pattern
    	x := NewInt(0)
    	for _, b := range bits {
    		badj := b - min
    		// propagate carry if necessary
    		for x.Bit(badj) != 0 {
    			x.SetBit(x, badj, 0)
    			badj++
    		}
    		x.SetBit(x, badj, 1)
    	}
    
    	// create corresponding float
    	z := new(Float).SetInt(x) // normalized
    	if e := int64(z.exp) + int64(min); MinExp <= e && e <= MaxExp {
    		z.exp = int32(e)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFileTree.java

         * org.gradle.api.Project#file(Object)}.
         *
         * @param dir The base directory.
         * @return this
         */
        ConfigurableFileTree setDir(Object dir);
    
        /**
         * Returns the set of tasks which build the files of this collection.
         *
         * @return The set. Returns an empty set when there are no such tasks.
         */
        Set<Object> getBuiltBy();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  10. src/runtime/defs_windows_arm64.go

    	wvr          [2]uint64
    }
    
    func (c *context) ip() uintptr { return uintptr(c.pc) }
    func (c *context) sp() uintptr { return uintptr(c.xsp) }
    func (c *context) lr() uintptr { return uintptr(c.x[30]) }
    
    func (c *context) set_ip(x uintptr) { c.pc = uint64(x) }
    func (c *context) set_sp(x uintptr) { c.xsp = uint64(x) }
    func (c *context) set_lr(x uintptr) { c.x[30] = uint64(x) }
    func (c *context) set_fp(x uintptr) { c.x[29] = uint64(x) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top