Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,810 for leastOf (0.2 sec)

  1. src/runtime/tagptr.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    // taggedPointer is a pointer with a numeric tag.
    // The size of the numeric tag is GOARCH-dependent,
    // currently at least 10 bits.
    // This should only be used with pointers allocated outside the Go heap.
    type taggedPointer uint64
    
    // minTagBits is the minimum number of tag bits that we expect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:22:50 UTC 2023
    - 496 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-substitutionRule/kotlin/build.gradle.kts

    // Need to have at least one configuration declared, otherwise the rules are never evaluated
    val conf by configurations.creating
    
    // tag::module_to_project_substitution[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute(module("org.utils:api"))
                .using(project(":api")).because("we work with the unreleased development version")
            substitute(module("org.utils:util:2.5")).using(project(":util"))
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 796 bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/authz-b.yaml

          "istio": {{.GatewayIstioLabel | default "ingressgateway"}}
      rules:
      - to:
        - operation:
            ports: ["100"]
      - to:
        - operation:
            ports: ["100"]
    ---
    # Make sure listener has a least one listener, otherwise there may be no policies
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: gateway
    spec:
      selector:
        istio: {{.GatewayIstioLabel | default "ingressgateway"}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 941 bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/RuleDefinitionRuleExtractorTest.groovy

    - Method broken1(java.lang.String, ${RuleSource.name}) is not a valid rule method: The first parameter of a method annotated with @Rules must be a subtype of ${RuleSource.name}
    - Method broken2() is not a valid rule method: A method annotated with @Rules must have at least two parameters"""
        }
    
        static class SomeRuleSource extends RuleSource {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/wait/loop.go

    // If immediate is false the first delay happens before any call to condition, if
    // immediate is true the condition will be invoked before waiting and guarantees that
    // the condition is invoked at least once, regardless of whether the context has been
    // cancelled. The returned error is the error returned by the last condition or the
    // context error if the context was terminated.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 02:47:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/telemetry/selector.go

    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    // SelectorAnalyzer validates, per namespace, that:
    // * telemetry resources that define a workload selector match at least one pod
    // * there aren't multiple telemetry resources that select overlapping pods
    type SelectorAnalyzer struct{}
    
    var _ analysis.Analyzer = &SelectorAnalyzer{}
    
    // Metadata implements Analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PluginVariantResolveIntegrationTest.groovy

            buildFile << """
                ${pluginsBlock.replace('%repoloc%', repoLoc)}
            """
    
            when:
            fails ':help'
    
            then:
            failure.assertHasErrorOutput("Dependency requires at least JVM runtime version ${JavaVersion.VERSION_HIGHER.majorVersion}. This build uses a Java ${JavaVersion.current().majorVersion} JVM.")
    
            where:
            id                  | pluginsBlock
            "plugins block"     | """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 12:51:28 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // daemon pod and have one or more of the daemon pod running and
      // available (ready for at least spec.minReadySeconds)
      // +optional
      optional int32 numberAvailable = 7;
    
      // The number of nodes that should be running the
      // daemon pod and have none of the daemon pod running and available
      // (ready for at least spec.minReadySeconds)
      // +optional
      optional int32 numberUnavailable = 8;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1/generated.proto

      // empty or missing, this rule matches all ports (traffic not restricted by port).
      // If this field is present and contains at least one item, then this rule allows
      // traffic only if the traffic matches at least one port in the list.
      // +optional
      // +listType=atomic
      repeated NetworkPolicyPort ports = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation_test.go

    					`<nil>: Invalid value: "": "field" must validate at least one schema (anyOf)`,
    					`field: Invalid value: "boolean": field in body must be of type integer,string: "boolean"`,
    					`field: Invalid value: "boolean": field in body must be of type integer: "boolean"`,
    				}},
    				{object: map[string]interface{}{"field": 1.2}, expectErrs: []string{
    					`<nil>: Invalid value: "": "field" must validate at least one schema (anyOf)`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 04:49:59 UTC 2023
    - 24.8K bytes
    - Viewed (0)
Back to top