Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,046 for u$ (0.04 sec)

  1. docs/en/data/github_sponsors.yml

        url: https://github.com/mikeckennedy
      - login: ndimares
        avatarUrl: https://avatars.githubusercontent.com/u/6267663?u=cfb27efde7a7212be8142abb6c058a1aeadb41b1&v=4
        url: https://github.com/ndimares
    - - login: takashi-yoneya
        avatarUrl: https://avatars.githubusercontent.com/u/33813153?u=2d0522bceba0b8b69adf1f2db866503bd96f944e&v=4
        url: https://github.com/takashi-yoneya
      - login: xoflare
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

            polymorphicDomainObjectContainer().create(name, type)
    
        override fun <U : T> create(name: String, type: Class<U>, configuration: Action<in U>): U =
            polymorphicDomainObjectContainer().create(name, type, configuration)
    
        override fun <U : T> maybeCreate(name: String, type: Class<U>): U =
            polymorphicDomainObjectContainer().maybeCreate(name, type)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/AbstractPolymorphicDomainObjectContainer.java

        }
    
        protected abstract <U extends T> U doCreate(String name, Class<U> type);
    
        @Override
        public <U extends T> U create(String name, Class<U> type) {
            assertMutable("create(String, Class)");
            return create(name, type, null);
        }
    
        @Override
        public <U extends T> U maybeCreate(String name, Class<U> type) throws InvalidUserDataException {
            T item = findByName(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. docs/en/data/people.yml

      avatarUrl: https://avatars.githubusercontent.com/u/1326112?u=740f11212a731f56798f558ceddb0bd07642afa7&v=4
      url: https://github.com/tiangolo
    experts:
    - login: Kludex
      count: 608
      avatarUrl: https://avatars.githubusercontent.com/u/7353520?u=62adc405ef418f4b6c8caa93d3eb8ab107bc4927&v=4
      url: https://github.com/Kludex
    - login: dmontagu
      count: 241
      avatarUrl: https://avatars.githubusercontent.com/u/35119617?u=540f30c937a6450812628b9592a1dfe91bbe148e&v=4
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Try.java

            @Override
            public <U> Try<U> flatMap(Function<? super T, Try<U>> f) {
                return (Try<U>) this;
            }
    
            @SuppressWarnings("unchecked")
            @Override
            public <U> Try<U> map(Function<? super T, U> f) {
                return (Try<U>) this;
            }
    
            @SuppressWarnings("unchecked")
            @Override
            public <U> Try<U> tryMap(Function<? super T, U> f) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    func (u *uploader) createReport(start time.Time, expiryDate string, countFiles []string, lastWeek string) (string, error) {
    	uploadOK := true
    	mode, asof := u.dir.Mode()
    	if mode != "on" {
    		u.logger.Printf("No upload config or mode %q is not 'on'", mode)
    		uploadOK = false // no config, nothing to upload
    	}
    	if u.tooOld(expiryDate, u.startTime) {
    		u.logger.Printf("Expiry date %s is too old", expiryDate)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top