Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for disallow (0.25 sec)

  1. 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)
  2. src/cmd/go/internal/work/security.go

    				return fmt.Errorf("parsing $CGO_%s_DISALLOW: %v", name, err)
    			}
    			disallow = r
    		}
    	}
    
    Args:
    	for i := 0; i < len(list); i++ {
    		arg := list[i]
    		if disallow != nil && disallow.FindString(arg) == arg {
    			goto Bad
    		}
    		if allow != nil && allow.FindString(arg) == arg {
    			continue Args
    		}
    		for _, re := range invalid {
    			if re.FindString(arg) == arg { // must be complete match
    				goto Bad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/jcifs/config/BaseConfiguration.java

            if ( prop == null ) {
                return;
            }
            Set<String> disallow = new HashSet<>();
            StringTokenizer st = new StringTokenizer(prop, ",");
            while ( st.hasMoreTokens() ) {
                disallow.add(st.nextToken().trim());
            }
            this.disallowCompound = disallow;
        }
    
    
        protected void initDefaults () throws CIFSException {
    
            try {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

            }
            if (type.getSuperclass() != null) {
                visitFields(type.getSuperclass(), collector);
            }
    
            // Disallow instance fields. This doesn't guarantee that the object is immutable, just makes it less likely
            // We might tighten this constraint to also disallow any _code_ on immutable types that reaches out to static state
            for (Field field : type.getDeclaredFields()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/module/module.go

    		// Entire set of ASCII punctuation, from which we remove characters:
    		//     ! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~
    		// We disallow some shell special characters: " ' * < > ? ` |
    		// (Note that some of those are disallowed by the Windows file system as well.)
    		// We also disallow path separators / : and \ (fileNameOK is only called on path element characters).
    		// We allow spaces (U+0020) in file names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. hack/update-vendor.sh

        xargs -L 100 go mod edit -fmt
    
        go mod tidy -v
    
        # disallow transitive dependencies on k8s.io/kubernetes
        loopback_deps=()
        kube::util::read-array loopback_deps < <(go list all 2>/dev/null | grep k8s.io/kubernetes/ || true)
        if (( "${#loopback_deps[@]}" > 0 )); then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    //
    // The remote service is expected to fill the SubjectAccessReviewStatus field to either allow or
    // disallow access. A permissive response would return:
    //
    //	{
    //	  "apiVersion": "authorization.k8s.io/v1beta1",
    //	  "kind": "SubjectAccessReview",
    //	  "status": {
    //	    "allowed": true
    //	  }
    //	}
    //
    // To disallow access, the remote service would return:
    //
    //	{
    //	  "apiVersion": "authorization.k8s.io/v1beta1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationQueue.java

                    workerLeases.runAsWorkerThread(() -> {
                        if (allowAccessToProjectState) {
                            return doRunBatch(firstOperation);
                        } else {
                            // Disallow this thread from making any changes to the project locks while it is running the work. This implies that this thread will not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 31 15:18:20 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionLifecycleIntegrationTest.groovy

            """
    
            when:
            fails('broken')
    
            then:
            failure.assertHasCause("The value for this file collection is final and cannot be changed any further.")
        }
    
        def "can disallow changes to file collection without finalizing value"() {
            buildFile """
                def files = objects.fileCollection()
                def name = 'other'
                files.from { name }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 10:55:07 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top