Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for shortened (0.26 sec)

  1. src/go/types/exprstring.go

    )
    
    // ExprString returns the (possibly shortened) string representation for x.
    // Shortened representations are suitable for user interfaces but may not
    // necessarily follow Go syntax.
    func ExprString(x ast.Expr) string {
    	var buf bytes.Buffer
    	WriteExpr(&buf, x)
    	return buf.String()
    }
    
    // WriteExpr writes the (possibly shortened) string representation for x to buf.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 19:31:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/phi_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // Test to make sure spills of cast-shortened values
    // don't end up spilling the pre-shortened size instead
    // of the post-shortened size.
    
    import (
    	"runtime"
    	"testing"
    )
    
    var data1 [26]int32
    var data2 [26]int64
    
    func init() {
    	for i := 0; i < 26; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

    public interface KaReferenceShortenerMixIn : KaSessionMixIn {
    
        /**
         * Collects possible references to shorten. By default, it shortens a fully-qualified members to the outermost class and does not
         * shorten enum entries.  In case of KDoc shortens reference only if it is already imported.
         *
         * N.B. This API is not implemented for the FE10 implementation!
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestWorkerFunctionalTest.groovy

            JavaTestClass.PRESERVED_TEST1 | JavaTestClass.PRESERVED_TEST2 | 'preserved'
            JavaTestClass.SHORTENED_TEST1 | JavaTestClass.SHORTENED_TEST2 | 'shortened'
        }
    
        def "shows test class execution #description test class name in work-in-progress area of console for multi-project build"() {
            given:
            settingsFile << "include 'project1', 'project2'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/report/shortnames.go

    package report
    
    import (
    	"regexp"
    
    	"github.com/google/pprof/internal/graph"
    )
    
    var sepRE = regexp.MustCompile(`::|\.`)
    
    // shortNameList returns a non-empty sequence of shortened names
    // (in decreasing preference) that can be used to represent name.
    func shortNameList(name string) []string {
    	name = graph.ShortenFunctionName(name)
    	seps := sepRE.FindAllStringIndex(name, -1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. cmd/bucket-object-lock.go

    			// or deleted by any user, including the root user in your AWS account.
    			// When an object is locked in compliance mode, its retention mode can't
    			// be changed, and its retention period can't be shortened. Compliance mode
    			// ensures that an object version can't be overwritten or deleted for the
    			// duration of the retention period.
    			t, err := objectlock.UTCNowNTP()
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildInitDependency.java

    import org.gradle.api.NonNullApi;
    
    import javax.annotation.Nullable;
    
    /**
     * Data object for use with version catalog generation to encode module, version and if generated aliases should be shortened or qualified.
     */
    @NonNullApi
    public class BuildInitDependency {
        final String module;
        final String version;
        private BuildInitDependency(String module, @Nullable String version) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/VersionCatalogDependencyRegistryTest.groovy

            true | "com.example.group:artifact" | "libs.com.example.group.artifact"
            false | "com.example.group:artifact" | "libs.artifact"
        }
    
        @Unroll
        def "fully qualified or shortened plugins"() {
            expect:
            new VersionCatalogDependencyRegistry(fullyQualify).registerPlugin(module, "42") == alias
    
            where:
            fullyQualify | module || alias
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

     * For example, an elements with the name segments <code>root:impl:impl-simple</code> would initially get the name
     * <code>root-impl-impl-simple</code> and would then be shortened to <code>root-impl-simple</code>
     * This shortening is of course only applied if it does not introduce a new name conflict.
     *
     * @param <T> the type of element to de-duplicate
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/cache/expiring.go

    	}
    	return e.val, true
    }
    
    // Set sets a key/value/expiry entry in the map, overwriting any previous entry
    // with the same key. The entry expires at the given expiry time, but its TTL
    // may be lengthened or shortened by additional calls to Set(). Garbage
    // collection of expired entries occurs during calls to Set(), however calls to
    // Get() will not return expired entries that have not yet been garbage
    // collected.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 22 15:51:23 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top