Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 325 for runes (0.07 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

        }
    
        def "extracted stateless rules are cached"() {
            when:
            def fromFirstExtraction = extractor.extract(MutationRules)
            def fromSecondExtraction = extractor.extract(MutationRules)
    
            then:
            fromFirstExtraction.is(fromSecondExtraction)
        }
    
        def "extracted stateless abstract rules are cached"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  2. cmd/batch-expire.go

    			}
    		}
    		return err
    	}
    
    	if len(r.Rules) > maxBatchRules {
    		return batchExpireJobError{
    			Code:           "InvalidArgument",
    			Description:    "Too many rules. Batch expire job can't have more than 100 rules",
    			HTTPStatusCode: http.StatusBadRequest,
    		}
    	}
    
    	for _, rule := range r.Rules {
    		if err := rule.Validate(); err != nil {
    			return batchExpireJobError{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

            """
    
            expect:
            succeeds("some")
    
            and:
            executed ":foo", ":baz", ":fizz", ":fuzz", ":some"
        }
    
        def "can lookup task created by rules"() {
            buildFile << """
                tasks.addRule("create some tasks") { taskName ->
                    if (taskName == "bar") {
                        tasks.register("bar")
                    } else if (taskName == "baz") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1/types.go

    	// +optional
    	TLS []IngressTLS `json:"tls,omitempty" protobuf:"bytes,2,rep,name=tls"`
    
    	// rules is a list of host rules used to configure the Ingress. If unspecified,
    	// or no rule matches, all traffic is sent to the default backend.
    	// +listType=atomic
    	// +optional
    	Rules []IngressRule `json:"rules,omitempty" protobuf:"bytes,3,rep,name=rules"`
    }
    
    // IngressTLS describes the transport layer security associated with an ingress.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. tests/integration/pilot/gateway_test.go

    spec:
      parentRefs:
      - name: gateway
      hostnames: ["bar.example.com"]
      rules:
      - backendRefs:
        - name: b
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-2
    spec:
      parentRefs:
      - name: gateway
      hostnames: ["foo.example.com"]
      rules:
      - backendRefs:
        - name: d
          port: 80
    `).ApplyOrFail(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/build.gradle

                    "snippet-model-rules-basic-rule-source-plugin_groovy_basicRuleSourcePlugin-all.sample",
                    "snippet-model-rules-basic-rule-source-plugin_groovy_basicRuleSourcePlugin-model-task.sample",
                    "snippet-model-rules-configure-as-required_groovy_modelDslConfigureRuleRunWhenRequired.sample",
                    "snippet-model-rules-configure-elements-of-map_groovy_modelDslModelMapNestedAll.sample",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  7. README.md

    ```sh
    firewall-cmd --get-active-zones
    ```
    
    This command gets the active zone(s). Now, apply port rules to the relevant zones returned above. For example if the zone is `public`, use
    
    ```sh
    firewall-cmd --zone=public --add-port=9000/tcp --permanent
    ```
    
    Note that `permanent` makes sure the rules are persistent across firewall start, restart or reload. Finally reload the firewall for changes to take effect.
    
    ```sh
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. src/runtime/mpallocbits.go

    			continue
    		}
    
    		// Strategy: shrink all runs of zeros by max. If any runs of zero
    		// remain, then we've identified a larger maximum zero run.
    		p := most    // number of zeros we still need to shrink by.
    		k := uint(1) // current minimum length of runs of ones in x.
    		for {
    			// Shrink all runs of zeros by p places (except the top zeros).
    			for p > 0 {
    				if p <= k {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    // of the Structural schema and returns a custom resource validator that contains nested
    // validators for all items, properties and additionalProperties that transitively contain validator rules.
    // Returns nil if there are no validator rules in the Structural schema. May return a validator containing only errors.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    ### Fixing sanity check failures after public API changes
    
    If your PR includes any changes to the Gradle Public API, it will cause the binary compatibility check to fail.
    The binary compatibility check runs as a part of the broader sanity check.
    The latter runs on every PR and is a prerequisite for merging.
    
    If you run the sanity check locally with the `./gradlew sanityCheck`, you can see the binary compatibility error in the output.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top