Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 6,081 for f$ (0.07 sec)

  1. internal/bucket/replication/filter.go

    // Validate - validates the filter element
    func (f Filter) Validate() error {
    	// A Filter must have exactly one of Prefix, Tag, or And specified.
    	if !f.And.isEmpty() {
    		if f.Prefix != "" {
    			return errInvalidFilter
    		}
    		if !f.Tag.IsEmpty() {
    			return errInvalidFilter
    		}
    		if err := f.And.Validate(); err != nil {
    			return err
    		}
    	}
    	if f.Prefix != "" {
    		if !f.Tag.IsEmpty() {
    			return errInvalidFilter
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 28 18:25:46 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/EnumTest.java

            try ( SmbFile f = createTestDirectory() ) {
                try ( SmbFile a = new SmbFile(f, "a");
                      SmbFile b = new SmbFile(f, "b");
                      SmbFile c = new SmbFile(f, "c") ) {
    
                    a.createNewFile();
                    b.createNewFile();
                    c.createNewFile();
    
                    String[] names = f.list();
                    assertNotNull(names);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  3. src/math/big/rat_test.go

    	if !isFinite(f) {
    		return
    	}
    	r := new(Rat).SetFloat64(f)
    	if r == nil {
    		t.Errorf("Rat.SetFloat64(%g (%b)) == nil", f, f)
    		return
    	}
    	f2, exact := r.Float64()
    	if f != f2 || !exact {
    		t.Errorf("Rat.SetFloat64(%g).Float64() = %g (%b), %v, want %g (%b), %v; delta = %b",
    			f, f2, f2, exact, f, f, true, f2-f)
    	}
    }
    
    // delta returns the absolute difference between r and f.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 07 00:15:59 UTC 2022
    - 18.9K bytes
    - Viewed (0)
  4. src/testing/fuzz.go

    			f.mu.RLock()
    			fuzzNotCalled := !f.fuzzCalled && !f.skipped && !f.failed
    			if !f.finished && !f.skipped && !f.failed {
    				err = errNilPanicOrGoexit
    			}
    			f.mu.RUnlock()
    			if fuzzNotCalled && err == nil {
    				f.Error("returned without calling F.Fuzz, F.Fail, or F.Skip")
    			}
    		}
    
    		// Use a deferred call to ensure that we report that the test is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. test/nosplit.go

    start 100 nosplit call f; f 0 call f; REJECT ppc64 ppc64le
    start 104 nosplit call f; f 0 call f; REJECT ppc64 ppc64le amd64 arm64
    start 108 nosplit call f; f 0 call f; REJECT ppc64 ppc64le amd64
    start 112 nosplit call f; f 0 call f; REJECT ppc64 ppc64le amd64 arm64
    start 116 nosplit call f; f 0 call f; REJECT ppc64 ppc64le amd64
    start 120 nosplit call f; f 0 call f; REJECT ppc64 ppc64le amd64 386 arm64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. src/regexp/syntax/compile.go

    	case OpConcat:
    		if len(re.Sub) == 0 {
    			return c.nop()
    		}
    		var f frag
    		for i, sub := range re.Sub {
    			if i == 0 {
    				f = c.compile(sub)
    			} else {
    				f = c.cat(f, c.compile(sub))
    			}
    		}
    		return f
    	case OpAlternate:
    		var f frag
    		for _, sub := range re.Sub {
    			f = c.alt(f, c.compile(sub))
    		}
    		return f
    	}
    	panic("regexp: unhandled case in compile")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  7. test/fixedbugs/bug296.go

    }
    
    type Uint16 uint16
    
    func (x Uint16) m(a, b, c, d, e, f, g, h byte) {
    	check("Uint16", int64(x), 0x0102, a, b, c, d, e, f, g, h)
    }
    
    type Int32 int32
    
    func (x Int32) m(a, b, c, d, e, f, g, h byte) {
    	check("Int32", int64(x), 0x01020304, a, b, c, d, e, f, g, h)
    }
    
    type Uint32 uint32
    
    func (x Uint32) m(a, b, c, d, e, f, g, h byte) {
    	check("Uint32", int64(x), 0x01020304, a, b, c, d, e, f, g, h)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/hkdf/hkdf.go

    			f.expander.Reset()
    		}
    		f.expander.Write(f.prev)
    		f.expander.Write(f.info)
    		f.expander.Write([]byte{f.counter})
    		f.prev = f.expander.Sum(f.prev[:0])
    		f.counter++
    
    		// Copy the new batch into p
    		f.buf = f.prev
    		n = copy(p, f.buf)
    		p = p[n:]
    	}
    	// Save leftovers for next run
    	f.buf = f.buf[n:]
    
    	return need, nil
    }
    
    // Expand returns a Reader, from which keys can be read, using the given
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/FileAttributesTest.java

            try ( SmbResource f = getDefaultShareRoot() ) {
                checkConnection(f);
                if ( f.getType() != SmbConstants.TYPE_FILESYSTEM ) {
                    assertEquals(SmbConstants.TYPE_SHARE, f.getType());
                }
            }
        }
    
    
        @Test
        public void testGetFreeSpace () throws CIFSException, MalformedURLException {
            try ( SmbResource f = getDefaultShareRoot() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. test/typeparam/typeswitch1.go

    package main
    
    func f[T any](i interface{}) {
    	switch i.(type) {
    	case T:
    		println("T")
    	case int:
    		println("int")
    	case int32, int16:
    		println("int32/int16")
    	case struct{ a, b T }:
    		println("struct{T,T}")
    	default:
    		println("other")
    	}
    }
    func main() {
    	f[float64](float64(6))
    	f[float64](int(7))
    	f[float64](int32(8))
    	f[float64](struct{ a, b float64 }{a: 1, b: 2})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 13:47:58 UTC 2022
    - 648 bytes
    - Viewed (0)
Back to top