Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 792 for mean_t (0.12 sec)

  1. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/ModelBlockTransformer.java

            This means we actually have to execute the code block in order to find the rule information within.
            This is also problematic because it means we have to serialize this information into some form that fits into annotations.
    
            Later, we will extract all the “up-front” information we need to know during compile time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/attributeMatching/kotlin/build.gradle.kts

    configurations {
        // A configuration meant for consumers that need the API of this component
        create("exposedApi") {
            // This configuration is an "outgoing" configuration, it's not meant to be resolved
            isCanBeResolved = false
            // As an outgoing configuration, explain that consumers may want to consume it
            assert(isCanBeConsumed)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRolesForMigration.java

     * from one role to another by marking usages which are present in the current role but not present in the eventual role
     * as deprecated.
     *
     * <p>The roles here are all meant to be temporary roles used for migration only, to be removed in Gradle 9.0.</p>
     *
     * <p>This is meant to only support <strong>narrowing migrations</strong>, that restrict usage that was previously
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/notfoundhandler/not_found_handler.go

    )
    
    // New returns an HTTP handler that is meant to be executed at the end of the delegation chain.
    // It checks if the request have been made before the server has installed all known HTTP paths.
    // In that case it returns a 503 response otherwise it returns a 404.
    //
    // Note that we don't want to add additional checks to the readyz path as it might prevent fixing bricked clusters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 21 13:25:33 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  5. src/math/big/floatconv.go

    	}
    
    	// mantissa
    	var fcount int // fractional digit count; valid if <= 0
    	z.mant, b, fcount, err = z.mant.scan(r, base, true)
    	if err != nil {
    		return
    	}
    
    	// exponent
    	var exp int64
    	var ebase int
    	exp, ebase, err = scanExponent(r, true, base == 0)
    	if err != nil {
    		return
    	}
    
    	// special-case 0
    	if len(z.mant) == 0 {
    		z.prec = prec
    		z.acc = Exact
    		z.form = zero
    		f = z
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/nodes.go

    	ImportDecl struct {
    		Group        *Group // nil means not part of a group
    		Pragma       Pragma
    		LocalPkgName *Name     // including "."; nil means no rename present
    		Path         *BasicLit // Path.Bad || Path.Kind == StringLit; nil means no path
    		decl
    	}
    
    	// NameList
    	// NameList      = Values
    	// NameList Type = Values
    	ConstDecl struct {
    		Group    *Group // nil means not part of a group
    		Pragma   Pragma
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/with_retry_after.go

    		if !send || isRequestExemptFn(req) {
    			handler.ServeHTTP(w, req)
    			return
    		}
    
    		// If we are here this means it's time to send Retry-After response
    		//
    		// Copied from net/http2 library
    		// "Connection" headers aren't allowed in HTTP/2 (RFC 7540, 8.1.2.2),
    		// but respect "Connection" == "close" to mean sending a GOAWAY and tearing
    		// down the TCP connection when idle, like we do for HTTP/1.
    		if params.TearDownConnection {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 31 14:10:46 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testsanitizers/testdata/msan4.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // The memory profiler can call copy from a slice on the system stack,
    // which msan used to think meant a reference to uninitialized memory.
    
    /*
    #include <time.h>
    #include <unistd.h>
    
    extern void Nop(char*);
    
    // Use weak as a hack to permit defining a function even though we use export.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 878 bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/format/LogHeaderFormatter.java

    import org.gradle.internal.logging.events.StyledTextOutputEvent;
    
    import java.util.List;
    
    public interface LogHeaderFormatter {
        /**
         * Given a message, return possibly-styled output for displaying message meant to categorize
         * other messages "below" it, if any.
         */
        List<StyledTextOutputEvent.Span> format(String description, String status, boolean failed);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. src/compress/lzw/reader.go

    import (
    	"bufio"
    	"errors"
    	"fmt"
    	"io"
    )
    
    // Order specifies the bit ordering in an LZW data stream.
    type Order int
    
    const (
    	// LSB means Least Significant Bits first, as used in the GIF file format.
    	LSB Order = iota
    	// MSB means Most Significant Bits first, as used in the TIFF and PDF
    	// file formats.
    	MSB
    )
    
    const (
    	maxWidth           = 12
    	decoderInvalidCode = 0xffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:39 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top