Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 691 for partially (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultClasspathBuilder.java

     * <p>
     * If you execute work where output integrity and atomicity is enforced (e.g. with execution engine) you should prefer {@link InPlaceClasspathBuilder},
     * otherwise this implementation can help you to avoid having partially written files.
     */
    @NonNullApi
    @ServiceScope(Scope.UserHome.class)
    public class DefaultClasspathBuilder implements ClasspathBuilder {
    
        private final TemporaryFileProvider temporaryFileProvider;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/runtime/mgcwork.go

    }
    
    // putfull puts the workbuf on the work.full list for the GC.
    // putfull accepts partially full buffers so the GC can avoid competing
    // with the mutators for ownership of partially full buffers.
    //
    //go:nowritebarrier
    func putfull(b *workbuf) {
    	b.checknonempty()
    	work.full.push(&b.node)
    }
    
    // trygetfull tries to get a full or partially empty workbuffer.
    // If one is not immediately available return nil.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval_test.go

    			eventsAddedToWatchcache: 0,
    			intervalStartIndex:      0,
    		},
    		{
    			name:                    "watchCache partially propagated, eventsAddedToWatchcache < capacity",
    			eventsAddedToWatchcache: bufferSize,
    			intervalStartIndex:      0,
    		},
    		{
    			name:                    "watchCache partially propagated, eventsAddedToWatchcache < capacity, intervalStartIndex at some offset",
    			eventsAddedToWatchcache: bufferSize,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_find.txt

    go mod init
    rm go.mod
    
    # GOPATH/src/link where GOPATH and link are both symlinks
    cd $GOPATH/src/link
    go mod init
    stderr link
    rm go.mod
    
    # Too hard: doesn't match unevaluated nor completely evaluated. (Only partially evaluated.)
    # Whether this works depends on which OS we are running on.
    # cd $WORK/gopath/src/link
    # ! go mod init
    
    -- $WORK/x/x.go --
    package x // import "x"
    
    -- $GOPATH/src/example.com/x/y/y.go --
    package y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:14 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgram.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.execution
    
    
    /**
     * The result of partially evaluating a Kotlin DSL [program][Program] of a certain [kind][ProgramKind]
     * against a given [target][ProgramTarget].
     *
     * @see PartialEvaluator.reduce
     */
    internal
    sealed class ResidualProgram {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/ReferenceEntry.java

     *   <li>Live: valid key/value are set
     *   <li>Loading: loading is pending
     * </ul>
     *
     * <p>Invalid:
     *
     * <ul>
     *   <li>Expired: time expired (key/value may still be set)
     *   <li>Collected: key/value was partially collected, but not yet cleaned up
     *   <li>Unset: marked as unset, awaiting cleanup or reuse
     * </ul>
     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    interface ReferenceEntry<K, V> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/syntax.go

    // Parse parses a single Go source file from src and returns the corresponding
    // syntax tree. If there are errors, Parse will return the first error found,
    // and a possibly partially constructed syntax tree, or nil.
    //
    // If errh != nil, it is called with each error encountered, and Parse will
    // process as much source as possible. In this case, the returned syntax tree
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. test/codegen/stack.go

    // arm64:"TEXT\t.*, [$]0-"
    // mips:"TEXT\t.*, [$]-4-"
    // ppc64x:"TEXT\t.*, [$]0-"
    // s390x:"TEXT\t.*, [$]0-"
    func ZeroLargeStruct(x *T) {
    	t := T{}
    	*x = t
    }
    
    // Check that structs are partially initialised directly (issue #24386).
    
    // Notes:
    // - 386 fails due to spilling a register
    // amd64:"TEXT\t.*, [$]0-"
    // arm:"TEXT\t.*, [$]0-" (spills return address)
    // arm64:"TEXT\t.*, [$]0-"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    // sanitized domain name in case of errors. Browsers sometimes use a partially
    // evaluated string as lookup.
    // TODO: the current error handling is, in my opinion, the least opinionated.
    // Other strategies are also viable, though:
    // Option 1) Return an empty string in case of error, but allow the user to
    //    specify explicitly which errors to ignore.
    // Option 2) Return the partially evaluated string if it is itself a valid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/schema/group_version.go

    	}
    
    	return gvk, ParseGroupKind(arg)
    }
    
    // GroupResource specifies a Group and a Resource, but does not force a version.  This is useful for identifying
    // concepts during lookup stages without having partially valid types
    type GroupResource struct {
    	Group    string
    	Resource string
    }
    
    func (gr GroupResource) WithVersion(version string) GroupVersionResource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 30 09:08:59 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top