Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 370 for disallows (0.37 sec)

  1. test/typeparam/aliasimp.dir/main.go

    package main
    
    import "./a"
    
    type R[T any] struct {
    	F T
    }
    
    // type S = R // disallowed for now
    
    type Sint = R[int]
    
    // type Simp = a.Rimp // disallowed for now
    
    // type SimpString Simp[string] // disallowed for now
    type SimpString a.Rimp[string]
    
    func main() {
    	// var s S[int] // disallowed for now
    	var s R[int]
    	if s.F != 0 {
    		panic(s.F)
    	}
    	var s2 Sint
    	if s2.F != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 709 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    			}},
    			ExpectAllow:       true,
    			ExpectAnnotations: map[string]string{"allow.example.com/key1": "value1"},
    		},
    		{
    			Name: "match & disallow",
    			Webhooks: []registrationv1.ValidatingWebhook{{
    				Name:                    "disallow",
    				ClientConfig:            ccfgSVC("disallow"),
    				Rules:                   matchEverythingRules,
    				NamespaceSelector:       &metav1.LabelSelector{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  3. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    05F5..05FF    ; disallowed                             # NA   <reserved-05F5>..<reserved-05FF>
    0600..0603    ; disallowed                             # 4.0  ARABIC NUMBER SIGN..ARABIC SIGN SAFHA
    0604          ; disallowed                             # 6.1  ARABIC SIGN SAMVAT
    0605          ; disallowed                             # 7.0  ARABIC NUMBER MARK ABOVE
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/toonew.go

    			if t := pkg.Scope().Lookup(typename); t != nil && disallowed[t] == "" {
    				obj, _, _ = types.LookupFieldOrMethod(t.Type(), false, pkg, name)
    			}
    
    		case stdlib.Method:
    			ptr, recvname, name := sym.SplitMethod()
    			if t := pkg.Scope().Lookup(recvname); t != nil && disallowed[t] == "" {
    				obj, _, _ = types.LookupFieldOrMethod(t.Type(), ptr, pkg, name)
    			}
    		}
    		if obj != nil {
    			disallowed[obj] = symVersion
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/HierarchicalClassLoaderStructureSerializerTest.groovy

            def classNames = [ 'allowed.Class1', 'allowed.Class2' ]
            def disallowedClassNames = [ 'disallowed.Class1', 'disallowed.Class2' ]
            def packagePrefixes = [ 'allowed.pkgprefix1.', 'allowed.pkgprefix2' ]
            def disallowedPackagePrefixes = [ 'disallowed.pkgprefix1.', 'disallowed.pkgprefix2.' ]
            def packageNames = [ 'allowed.pkg1', 'allowed.pkg2' ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    			expect: authorizer.DecisionAllow,
    		},
    		{
    			name:   "disallowed list many secrets",
    			attrs:  authorizer.AttributesRecord{User: node0, ResourceRequest: true, Verb: "list", Resource: "secrets", Name: "", Namespace: "ns0"},
    			expect: authorizer.DecisionNoOpinion,
    		},
    		{
    			name:   "disallowed watch many secrets",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdversion/stdversion.go

    	// in a given package that are disallowed at the specified Go version.
    	type key struct {
    		pkg     *types.Package
    		version string
    	}
    	memo := make(map[key]map[types.Object]string) // records symbol's minimum Go version
    	disallowedSymbols := func(pkg *types.Package, version string) map[types.Object]string {
    		k := key{pkg, version}
    		disallowed, ok := memo[k]
    		if !ok {
    			disallowed = typesinternal.TooNewStdSymbols(pkg, version)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/FilteringClassLoaderSpecSerializerTest.groovy

            def classNames = [ 'allowed.Class1', 'allowed.Class2' ]
            def disallowedClassNames = [ 'disallowed.Class1', 'disallowed.Class2' ]
            def packagePrefixes = [ 'allowed.pkgprefix1.', 'allowed.pkgprefix2' ]
            def disallowedPackagePrefixes = [ 'disallowed.pkgprefix1.', 'disallowed.pkgprefix2.' ]
            def packageNames = [ 'allowed.pkg1', 'allowed.pkg2' ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/FilteringClassLoaderTest.groovy

        }
    
        void "can disallow packages"() {
            given:
            withSpec { FilteringClassLoader.Spec spec ->
                spec.disallowPackage("org.junit")
            }
    
            expect:
            cannotLoadClass(Test)
            cannotSeePackage("org.junit")
            cannotSeePackage("org.junit.subpackage")
        }
    
        void "disallow wins over allow packages"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/TransportableActionExecutionSpecSerializerTest.groovy

            def classNames = [ 'allowed.Class1', 'allowed.Class2' ]
            def disallowedClassNames = [ 'disallowed.Class1', 'disallowed.Class2' ]
            def packagePrefixes = [ 'allowed.pkgprefix1.', 'allowed.pkgprefix2' ]
            def disallowedPackagePrefixes = [ 'disallowed.pkgprefix1.', 'disallowed.pkgprefix2.' ]
            def packageNames = [ 'allowed.pkg1', 'allowed.pkg2' ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top