Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for Forbid (0.39 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

            expect(path, false, ['HEAD'], fileHandler(path, srcFile), new DefaultPasswordCredentials(username, password))
        }
    
        /**
         * Forbids one GET request for the given URL.
         */
        HttpResourceInteraction forbidGet(String path) {
            return forbid(path, false, ['GET'], ok())
        }
    
        /**
         * Allows one GET request for the given URL. Reads the request content from the given file.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/cronjob_controllerv2.go

    		// As long the as the invocations are "far enough apart in time", this usually won't happen.
    		//
    		// TODO: for Forbid, we could use the same name for every execution, as a lock.
    		// With replace, we could use a name that is deterministic per execution time.
    		// But that would mean that you could not inspect prior successes or failures of Forbid jobs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    	if v == nil {
    		return nil
    	}
    
    	allErrs := field.ErrorList{}
    
    	// We still unconditionally forbid XValidations in quantifiers, the only
    	// quantifier that is allowed to have right now is AllOf. This is due to
    	// implementation constraints - the SchemaValidator would need to become
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

                    constraint("org:bar:{strictly 1.0}", "org:bar:1.0")
                }
            }
        }
    
        // TODO: This is not desired behavior. We should deprecate and forbid this.
        def "can consume non-consumable project configuration when substituted as a transitive dependency"() {
    
            file("included/settings.gradle") << """
                rootProject.name = "transitive"
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheStrategy.kt

            HTTP_BAD_METHOD,
            HTTP_GONE,
            HTTP_REQ_TOO_LONG,
            HTTP_NOT_IMPLEMENTED,
            HTTP_PERM_REDIRECT,
            -> {
              // These codes can be cached unless headers forbid it.
            }
    
            HTTP_MOVED_TEMP,
            HTTP_TEMP_REDIRECT,
            -> {
              // These codes can only be cached with the right response headers.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. hack/golangci.yaml

              # this restriction. Whether we then do a global search/replace remains
              # to be decided.
              with-helpers .*
      forbidigo:
        analyze-types: true
        forbid:
        - p: ^managedfields\.ExtractInto$
          pkg: ^k8s\.io/apimachinery/pkg/util/managedfields$
          msg: should not be used because managedFields was removed
        - p: \.Extract
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. plugin/pkg/admission/noderestriction/admission.go

    	for label := range modifiedLabels {
    		namespace := getLabelNamespace(label)
    		// forbid kubelets from setting node-restriction labels
    		if namespace == v1.LabelNamespaceNodeRestriction || strings.HasSuffix(namespace, "."+v1.LabelNamespaceNodeRestriction) {
    			forbiddenLabels.Insert(label)
    		}
    		// forbid kubelets from setting unknown kubernetes.io and k8s.io labels on update
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

         * by concurrently running mojo executions. To prevent race conditions, an aggregating execution will block
         * all other executions until finished.
         * We also lock on a given project to forbid a forked lifecycle to be executed concurrently with the project.
         * TODO: ideally, the builder should take care of the ordering in a smarter way
         * TODO: and concurrency issues fixed with MNG-7157
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    				Resource:        "pods",
    				Subresource:     "status",
    				Name:            "mypods",
    				Namespace:       "myns",
    				APIGroup:        "",
    				APIVersion:      "v1",
    			},
    		},
    		{
    			"forbid educate dolphins",
    			authorizer.AttributesRecord{
    				ResourceRequest: true,
    				User:            nodeUser,
    				Verb:            "educate",
    				Resource:        "dolphins",
    				Subresource:     "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  10. pkg/apis/batch/types.go

    	// +optional
    	StartingDeadlineSeconds *int64
    
    	// Specifies how to treat concurrent executions of a Job.
    	// Valid values are:
    	//
    	// - "Allow" (default): allows CronJobs to run concurrently;
    	// - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet;
    	// - "Replace": cancels currently running job and replaces it with a new one
    	// +optional
    	ConcurrencyPolicy ConcurrencyPolicy
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top