Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,694 for u$ (0.06 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    		return u.conn.Write(b)
    	}
    	if u.err != nil {
    		return 0, u.err
    	}
    	return 0, fmt.Errorf("Write called before Initialize")
    }
    func (u *tunnelingWebsocketUpgraderConn) Close() error {
    	u.lock.Lock()
    	defer u.lock.Unlock()
    	if u.conn != nil {
    		return u.conn.Close()
    	}
    	if u.err != nil {
    		return u.err
    	}
    	// record that we closed so we don't write again or try to initialize
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. src/os/user/lookup_stubs.go

    			u.Username = "android"
    		}
    	}
    	// cgo isn't available, but if we found the minimum information
    	// without it, use it:
    	if u.Uid != "" && u.Username != "" && u.HomeDir != "" {
    		return u, nil
    	}
    	var missing string
    	if u.Username == "" {
    		missing = "$USER"
    	}
    	if u.HomeDir == "" {
    		if missing != "" {
    			missing += ", "
    		}
    		missing += "$HOME"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 16:09:09 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. tests/fuzz/testdata/FuzzParseInputs/4863517148708864

    [[  [ [[[ [[ !!$$$&)& [ [[[[ ! [ [[[ [[ !!$$$&)&&&&&&[![[ [ ! [[ [[ !&&&u$$$$&)&&&&&&[[[ [[[ [ ! [[[[ ! [ [[[ [[ !!$$$&)&&&&&&[[[ [[[ ![[ [[  ![[![ [ [! [ [[[ [[ [ [[  [ [[[ [[ !!$$$&)& [ [[[[ ! [ [[[ [[ !!$$$&)&&&&&&[![[ [ ! [[ [[ !&&&u$$$$&)&&&&&&[[[ [[[ ! [ [[[[ ! [ [[[ [[ !!$$$&)&&&&&&[ [ [[ [[ !&&&u$$$$&)&& [ [[[ [[ !!$$$&)&&&&&&[[[ [[[ ![[ [[ ! [[![ [[  [ [[[ [[ !!$$$&)& [ [[[[ ! [ [[[ [[ !!$$$&)&&&&&&[![[ [ ! [[ [[ !&&&u$$$$&)&&&&&&[[[ [[[ ! [ [[[[ ! [ [[[ [[ !!$$$&)&&&&&&[[[ [[[ ![[ [[ ! [[![...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 07 16:09:38 UTC 2021
    - 518.2K bytes
    - Viewed (0)
  4. test/escape_struct_return.go

    	u := A(sp, spp)
    	_ = u
    	println(s)
    }
    
    func tA2() {
    	s := "cat"
    	sp := &s
    	spp := &sp
    	u := A(sp, spp)
    	println(*u._sp)
    }
    
    func tA3() {
    	s := "cat"
    	sp := &s
    	spp := &sp
    	u := A(sp, spp)
    	println(**u._spp)
    }
    
    func tB1() {
    	s := "cat"
    	sp := &s
    	spp := &sp
    	u := B(spp)
    	_ = u
    	println(s)
    }
    
    func tB2() {
    	s := "cat"
    	sp := &s
    	spp := &sp
    	u := B(spp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 1K bytes
    - Viewed (0)
  5. src/runtime/defs_plan9_386.go

    func dumpregs(u *ureg) {
    	print("ax    ", hex(u.ax), "\n")
    	print("bx    ", hex(u.bx), "\n")
    	print("cx    ", hex(u.cx), "\n")
    	print("dx    ", hex(u.dx), "\n")
    	print("di    ", hex(u.di), "\n")
    	print("si    ", hex(u.si), "\n")
    	print("bp    ", hex(u.bp), "\n")
    	print("sp    ", hex(u.sp), "\n")
    	print("pc    ", hex(u.pc), "\n")
    	print("flags ", hex(u.flags), "\n")
    	print("cs    ", hex(u.cs), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Either.java

            @Override
            public <U, V> Either<U, V> mapLeft(Function<? super L, ? extends U> f) {
                return (Either<U, V>) this;
            }
    
            @Override
            public <U, V> Either<U, V> mapRight(Function<? super R, ? extends V> f) {
                return new Right<>(f.apply(value));
            }
    
            @Override
            public <U> U fold(Function<? super L, ? extends U> l, Function<? super R, ? extends U> r) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/DefaultPolymorphicDomainObjectContainer.java

        }
    
        @Override
        protected <U extends T> U doCreate(String name, Class<U> type) {
            return namedEntityInstantiator.create(name, type);
        }
    
        public <U extends T> void registerDefaultFactory(NamedDomainObjectFactory<U> factory) {
            Class<T> castType = Cast.uncheckedCast(getType());
            registerFactory(castType, factory);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 5K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/types.go

    // the result into u.
    //
    // The full process is performed atomically.
    //
    //go:nosplit
    func (u *Uint32) And(value uint32) {
    	And(&u.value, value)
    }
    
    // Or takes value and performs a bit-wise
    // "or" operation with the value of u, storing
    // the result into u.
    //
    // The full process is performed atomically.
    //
    //go:nosplit
    func (u *Uint32) Or(value uint32) {
    	Or(&u.value, value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

            int idx = 0;
            String u = url;
            if (u.startsWith("https:") || u.startsWith("http:")) {
                idx = u.lastIndexOf('?');
                if (idx >= 0) {
                    u = u.substring(0, idx);
                }
    
                idx = u.lastIndexOf('#');
                if (idx >= 0) {
                    u = u.substring(0, idx);
                }
            }
            u = decodeUrlAsName(u, u.startsWith("file:"));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/plugins/form-validator/lang/nl.js

    t wachtwoord is niet veilig genoeg",badTelephone:"U heeft een onjuist telefoonnummer ingevoerd",badTime:"U heeft een incorrecte tijd aangegeven",badUrl:"De ingevoerde waarde is geen correcte URL",badreCaptcha:"Bevestig a.u.b. dat u geen robot bent",errorTitle:"Indienen van formulier mislukt!",groupCheckedEnd:" item(s)",groupCheckedRangeStart:"Kies a.u.b. tussen ",groupCheckedTooFewStart:"Kies a.u.b. ten minste ",groupCheckedTooManyStart:"Kies a.u.b. maximaal ",imageRatioNotAccepted:"De afbeeldingsverhouding...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.4K bytes
    - Viewed (0)
Back to top