Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for preferGo (0.17 sec)

  1. src/time/format.go

    // This choice means that such a time can be parsed and reformatted with the
    // same layout losslessly, but the exact instant used in the representation will
    // differ by the actual zone offset. To avoid such problems, prefer time layouts
    // that use a numeric zone offset, or use [ParseInLocation].
    func Parse(layout, value string) (Time, error) {
    	// Optimize for RFC3339 as it accounts for over half of all representations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * method is invoked automatically by a successful call to {@link #cancel(boolean) cancel(true)}.
       *
       * <p>The default implementation does nothing.
       *
       * <p>This method is likely to be deprecated. Prefer to override {@link #afterDone}, consulting
       * {@link #wasInterrupted} to decide whether to interrupt your task.
       *
       * @since 10.0
       */
      protected void interruptTask() {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * method is invoked automatically by a successful call to {@link #cancel(boolean) cancel(true)}.
       *
       * <p>The default implementation does nothing.
       *
       * <p>This method is likely to be deprecated. Prefer to override {@link #afterDone}, checking
       * {@link #wasInterrupted} to decide whether to interrupt your task.
       *
       * @since 10.0
       */
      protected void interruptTask() {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  4. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          System.arraycopy(other.values, 0, this.values, this.size, other.size);
          size += other.size;
          return this;
        }
    
        /**
         * Returns a newly-created immutable sorted map.
         *
         * <p>Prefer the equivalent method {@link #buildOrThrow()} to make it explicit that the method
         * will throw an exception if there are duplicate keys. The {@code build()} method will soon be
         * deprecated.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    			if env := os.Getenv(envName + "_FOR_" + goos + "_" + goarch); env != "" {
    				m[goos+"/"+goarch] = env
    			}
    		}
    	}
    
    	return m
    }
    
    // clangos lists the operating systems where we prefer clang to gcc.
    var clangos = []string{
    	"darwin", "ios", // macOS 10.9 and later require clang
    	"freebsd", // FreeBSD 10 and later do not ship gcc
    	"openbsd", // OpenBSD ships with GCC 4.2, which is now quite old.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/net/http/request.go

    	}
    	closed := false
    	defer func() {
    		if closed {
    			return
    		}
    		if closeErr := r.closeBody(); closeErr != nil && err == nil {
    			err = closeErr
    		}
    	}()
    
    	// Find the target host. Prefer the Host: header, but if that
    	// is not given, use the host from the request URL.
    	//
    	// Clean the host, in case it arrives with unexpected stuff in it.
    	host := r.Host
    	if host == "" {
    		if r.URL == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    		state.putPtr(uintptr(unsafe.Pointer(gp._panic)), false)
    	}
    
    	// Find and scan all reachable stack objects.
    	//
    	// The state's pointer queue prioritizes precise pointers over
    	// conservative pointers so that we'll prefer scanning stack
    	// objects precisely.
    	state.buildIndex()
    	for {
    		p, conservative := state.getPtr()
    		if p == 0 {
    			break
    		}
    		obj := state.findObject(p)
    		if obj == nil {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    	//
    	// Once that is done, we may still need to add more roots to cover upgraded or
    	// otherwise-missing test dependencies for packages in "all". For those test
    	// dependencies, we prefer to add roots for packages with shorter import
    	// stacks first, on the theory that the module requirements for those will
    	// tend to fill in the requirements for their transitive imports (which have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    	//
    	// We print the first tracebackInnerFrames frames, and the last
    	// tracebackOuterFrames frames. There are many possible approaches to this.
    	// There are various complications to this:
    	//
    	// - We'd prefer to walk the stack once because in really bad situations
    	//   traceback may crash (and we want as much output as possible) or the stack
    	//   may be changing.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    For example, some third-party plugins written in Groovy expect closure arguments.
    
    NOTE: Gradle plugins written in any language should prefer the type `Action<T>` type in place of closures. Groovy closures and Kotlin lambdas are automatically mapped to arguments of that type.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top