Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 370 for disallows (0.25 sec)

  1. src/internal/types/testdata/check/typeinst0.go

    type T2[P any] struct {
            f P
            g int // int should still be in scope chain
    }
    
    type List[P any] []P
    
    // Pending clarification of #46477 we disallow aliases
    // of generic types.
    type A2 = List // ERROR "cannot use generic type"
    var _ A2[int]
    var _ A2
    
    type A3 = List[int]
    var _ A3
    
    // Parameterized type instantiations
    
    var x int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. internal/http/close.go

    	// connection to the server for a subsequent "keep-alive" request.
    	if respBody != nil {
    		// Drain any remaining Body and then close the connection.
    		// Without this closing connection would disallow re-using
    		// the same connection for future uses.
    		//  - http://stackoverflow.com/a/17961593/4465767
    		defer respBody.Close()
    		xioutil.DiscardReader(respBody)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. test/convert3.go

    // errorcheck
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify allowed and disallowed conversions.
    // Does not compile.
    
    package main
    
    // everything here is legal except the ERROR line
    
    var c chan int
    var d1 chan<- int = c
    var d2 = (chan<- int)(c)
    
    var e *[4]int
    var f1 []int = e[0:]
    var f2 = []int(e[0:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 544 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_invalid_path_plus.txt

    # https://golang.org/issue/44776
    # The '+' character should be disallowed in module paths, but allowed in package
    # paths within valid modules.
    
    # 'go list' accepts package paths with pluses.
    cp go.mod.orig go.mod
    go get example.net/cmd
    go list example.net/cmd/x++
    
    # 'go list -m' rejects module paths with pluses.
    ! go list -versions -m 'example.net/bad++'
    stderr '^go: malformed module path "example.net/bad\+\+": invalid char ''\+''$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 821 bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/SpecificInstallationToolchainSpec.java

            }
        }
    
        private final File javaHome;
    
        @Inject
        public SpecificInstallationToolchainSpec(File javaHome) {
            super();
            this.javaHome = javaHome;
    
            // disallow changing property values
            finalizeProperties();
        }
    
        public static SpecificInstallationToolchainSpec fromJavaHome(ObjectFactory objectFactory, File javaHome) {
            if (javaHome.exists()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. test/interface/struct.go

    	s := &S1{1}
    	var i I1 = s
    	i.Put(2)
    	check(i.Get() == 1, "f3 i")
    	check(s.i == 1, "f3 s")
    }
    
    type S2 struct { i int }
    func (p *S2) Get() int { return p.i }
    func (p *S2) Put(i int) { p.i = i }
    
    // Disallowed by restriction of values going to pointer receivers
    // func f4() {
    //	 s := S2{1}
    //	 var i I1 = s
    //	 i.Put(2)
    //	 check(i.Get() == 2, "f4 i")
    //	 check(s.i == 1, "f4 s")
    // }
    
    func f5() {
    	s := S2{1}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractPolymorphicDomainObjectContainerSpec.groovy

            when:
            container.create("a", container.type, method)
            then:
            noExceptionThrown()
    
            where:
            methods << getQueryMethods() + getMutatingMethods()
        }
    
        def "disallow mutating from register with type actions using #mutatingMethods.key"() {
            setupContainerDefaults()
            String methodUnderTest = mutatingMethods.key
            Closure method = bind(mutatingMethods.value)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestTestResults.groovy

            parser.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false);
            parser.setFeature("http://xml.org/sax/features/namespaces", false)
            parser.setFeature("http://apache.org/xml/features/disallow-doctype-decl", false)
            this.resultsNode = parser.parse(testResultsFile)
    
            resultsNode.testsuite.each { Node suiteNode ->
                def suite = new Suite(suiteNode)
                suites.put(suite.name, suite)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/CachingTaskInputFileCollection.java

    /**
     * A {@link org.gradle.api.file.ConfigurableFileCollection} that can be used as a task input property. Caches the matching set of files during task execution, and discards the result after task execution.
     *
     * TODO - disallow further changes to this collection once task has started
     * TODO - keep the file entries to snapshot later, to avoid a stat on each file during snapshot
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/ExecutionAccessListener.java

    import org.gradle.internal.service.scopes.Scope;
    
    @EventScope(Scope.BuildTree.class)
    public interface ExecutionAccessListener {
    
        /**
         * Called when accessing the injected service of type that disallowed during execution phase (eg. Project).
         */
        void disallowedAtExecutionInjectedServiceAccessed(Class<?> injectedServiceType, String getterName, String consumer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top