Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Rx (0.02 sec)

  1. src/math/big/intmarsh_test.go

    				t.Errorf("encoding of %s failed: %s", &tx, err)
    				continue
    			}
    			var rx Int
    			if err := dec.Decode(&rx); err != nil {
    				t.Errorf("decoding of %s failed: %s", &tx, err)
    				continue
    			}
    			if rx.Cmp(&tx) != 0 {
    				t.Errorf("transmission of %s failed: got %s want %s", &tx, &rx, &tx)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 23:27:14 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. src/math/big/floatmarsh_test.go

    						continue
    					}
    
    					var rx Float
    					if err := dec.Decode(&rx); err != nil {
    						t.Errorf("decoding of %v (%dbits, %v) failed: %v", &tx, prec, mode, err)
    						continue
    					}
    
    					if rx.Cmp(&tx) != 0 {
    						t.Errorf("transmission of %s failed: got %s want %s", x, rx.String(), tx.String())
    						continue
    					}
    
    					if rx.Prec() != prec {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 18:18:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. src/math/big/ratmarsh_test.go

    		if err := enc.Encode(&tx); err != nil {
    			t.Errorf("encoding of %s failed: %s", &tx, err)
    			continue
    		}
    		var rx Rat
    		if err := dec.Decode(&rx); err != nil {
    			t.Errorf("decoding of %s failed: %s", &tx, err)
    			continue
    		}
    		if rx.Cmp(&tx) != 0 {
    			t.Errorf("transmission of %s failed: got %s want %s", &tx, &rx, &tx)
    		}
    	}
    }
    
    // Sending a nil Rat pointer (inside a slice) on a round trip through gob should yield a zero.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 20:20:16 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. src/net/lookup_windows_test.go

    	rx := regexp.MustCompile(`(?m)^([a-z0-9.\-]+)\s+mail exchanger\s*=\s*([0-9]+)\s*([a-z0-9.\-]+)$`)
    	for _, ans := range rx.FindAllStringSubmatch(r, -1) {
    		pref, _, _ := dtoi(ans[2])
    		mx = append(mx, &MX{absDomainName(ans[3]), uint16(pref)})
    	}
    	// windows nslookup syntax
    	// gmail.com       MX preference = 30, mail exchanger = alt3.gmail-smtp-in.l.google.com
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadxcoff/ldxcoff.go

    		for _, rx := range sect.Relocs {
    			rSym := l.LookupOrCreateCgoExport(rx.Symbol.Name, 0)
    			if uint64(int32(rx.VirtualAddress)) != rx.VirtualAddress {
    				return errorf("virtual address of a relocation is too big: 0x%x", rx.VirtualAddress)
    			}
    			rOff := int32(rx.VirtualAddress)
    			var rSize uint8
    			var rType objabi.RelocType
    			var rAdd int64
    			switch rx.Type {
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/driver_focus.go

    	return err
    }
    
    func compileRegexOption(name, value string, err error) (*regexp.Regexp, error) {
    	if value == "" || err != nil {
    		return nil, err
    	}
    	rx, err := regexp.Compile(value)
    	if err != nil {
    		return nil, fmt.Errorf("parsing %s regexp: %v", name, err)
    	}
    	return rx, nil
    }
    
    func compileTagFilter(name, value string, numLabelUnits map[string]string, ui plugin.UI, err error) (func(*profile.Sample) bool, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 23:33:06 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/internal/lazyregexp/lazyre.go

    // compiled the first time it is needed.
    type Regexp struct {
    	str  string
    	once sync.Once
    	rx   *regexp.Regexp
    }
    
    func (r *Regexp) re() *regexp.Regexp {
    	r.once.Do(r.build)
    	return r.rx
    }
    
    func (r *Regexp) build() {
    	r.rx = regexp.MustCompile(r.str)
    	r.str = ""
    }
    
    func (r *Regexp) FindSubmatch(s []byte) [][]byte {
    	return r.re().FindSubmatch(s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/internal/lazyregexp/lazyre.go

    // compiled the first time it is needed.
    type Regexp struct {
    	str  string
    	once sync.Once
    	rx   *regexp.Regexp
    }
    
    func (r *Regexp) re() *regexp.Regexp {
    	r.once.Do(r.build)
    	return r.rx
    }
    
    func (r *Regexp) build() {
    	r.rx = regexp.MustCompile(r.str)
    	r.str = ""
    }
    
    func (r *Regexp) FindSubmatch(s []byte) [][]byte {
    	return r.re().FindSubmatch(s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 27 23:49:01 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryConsumptionIntegrationTest.groovy

                    }
                }
            """
    
            when:
            //compilation should fail, as `rx.observers.Observable` is part of RxJava 1.x, which is a runtime-only dependency.
            file('src/main/java/App.java') << 'public class App { public void run() { rx.observers.Observers.empty(); } }'
    
            then:
            fails 'checkForRxJavaDependency', 'build'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/error_test.go

    //
    // Errors are declared in place in the form of "error comments",
    // just before (or on the same line as) the offending token.
    //
    // Error comments must be of the form // ERROR rx or /* ERROR rx */
    // where rx is a regular expression that matches the reported error
    // message. The rx text comprises the comment text after "ERROR ",
    // with any white space around it stripped.
    //
    // If the line comment form is used, the reported error's line must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top