Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,259 for light (0.09 sec)

  1. src/go/build/deps_test.go

    	  unicode,
    	  unicode/utf8,
    	  unicode/utf16;
    
    	internal/goarch < internal/abi;
    	internal/byteorder, internal/goarch < internal/chacha8rand;
    
    	# RUNTIME is the core runtime group of packages, all of them very light-weight.
    	internal/abi,
    	internal/chacha8rand,
    	internal/coverage/rtcov,
    	internal/cpu,
    	internal/goarch,
    	internal/godebugs,
    	internal/goexperiment,
    	internal/goos,
    	internal/profilerecord,
    	math/bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/writebarrier.go

    	base *Value
    	mask uint64
    }
    
    // mightBeHeapPointer reports whether v might point to the heap.
    // v must have pointer type.
    func mightBeHeapPointer(v *Value) bool {
    	if IsGlobalAddr(v) {
    		return false
    	}
    	return true
    }
    
    // mightContainHeapPointer reports whether the data currently at addresses
    // [ptr,ptr+size) might contain heap pointers. "currently" means at memory state mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

     * Green background — you can declare dependencies against the configuration.
     * Blue-gray background — the configuration is for consumption by tasks, not for you to declare dependencies.
     * Light blue background with monospace text — a task.
    
    .Java plugin - _main_ source set dependency configurations
    image::java-main-configurations.png[]
    
    .Java plugin - _test_ source set dependency configurations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. src/cmd/link/link_test.go

    	principle int `text:"The one great principle of the English law is, to make business for itself. There is no other principle distinctly, certainly, and consistently maintained through all its narrow turnings. Viewed by this light it becomes a coherent scheme, and not the monstrous maze the laity are apt to think it. Let them but once clearly perceive that its grand principle is to make business for itself at their expense, and surely they will cease to grumble."`
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  5. docs/en/docs/help-fastapi.md

    ### Suggest solutions
    
    * After being able to understand the question, you can give them a possible **answer**.
    
    * In many cases, it's better to understand their **underlying problem or use case**, because there might be a better way to solve it than what they are trying to do.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

                        // this block and discard the left sibling. Might also need to merge the parent
                        left.mergeFrom(this);
                        parent.maybeMerge();
                        return;
                    }
                }
    
                // Attempt to merge with the right sibling
                IndexBlock right = parent.getNext(this);
                if (right != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TopKSelector.java

        int left = 0;
        int right = 2 * k - 1;
    
        int minThresholdPosition = 0;
        // The leftmost position at which the greatest of the k lower elements
        // -- the new value of threshold -- might be found.
    
        int iterations = 0;
        int maxIterations = IntMath.log2(right - left, RoundingMode.CEILING) * 3;
        while (left < right) {
          int pivotIndex = (left + right + 1) >>> 1;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/TopKSelector.java

        int left = 0;
        int right = 2 * k - 1;
    
        int minThresholdPosition = 0;
        // The leftmost position at which the greatest of the k lower elements
        // -- the new value of threshold -- might be found.
    
        int iterations = 0;
        int maxIterations = IntMath.log2(right - left, RoundingMode.CEILING) * 3;
        while (left < right) {
          int pivotIndex = (left + right + 1) >>> 1;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     * </p>
     *
     * <ul>
     *     <li>"any state". The provider will return the value and make no guarantees about the content. This might be used, for example, when generating IDE configuration files or models.
     *     The task that generates the configuration file might only care where some output file will end up and not care whether or not that file has been built yet.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/runtime/netpoll_solaris.go

    // passing the correct type of event set (POLLIN/POLLOUT). As we made
    // sure to have already associated the file descriptor with the port,
    // when we now call port_associate, we will unblock the main poller
    // loop (in runtime·netpoll) right away if the socket is actually
    // ready for I/O.
    //
    // The main poller loop runs in its own thread waiting for events
    // using port_getn. When an event happens, it will tell the scheduler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top