Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 629 for leastOf (0.47 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/deployment/internal/DeploymentHandle.java

     */
    
    package org.gradle.deployment.internal;
    
    import javax.inject.Inject;
    
    /**
     * Controls starting and stopping a deployment.
     *
     * Implementations of this interface should annotate at least one constructor with {@link Inject}, if
     * the implementation requires parameters.
     *
     * @since 4.2
     */
    public interface DeploymentHandle {
        /**
         * Returns true if the deployment is still running.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/validation.go

    		if !labels.IsDNS1123Label(part) {
    			errs = multierror.Append(errs, fmt.Errorf("invalid hostname part: %q", part))
    		}
    	}
    
    	// Require at least one port
    	if len(s.Ports) == 0 {
    		errs = multierror.Append(errs, fmt.Errorf("service must have at least one declared port"))
    	}
    
    	// Port names can be empty if there exists only one port
    	for _, port := range s.Ports {
    		if port.Name == "" {
    			if len(s.Ports) > 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileAccess.java

         * @throws FileIntegrityViolationException If the integrity of the file cannot be guaranteed (i.e. {@link #writeFile(Runnable)} has never been called)
         * @throws InsufficientLockModeException If the held lock is not at least a shared lock (e.g. LockMode.NONE)
         */
        <T> T readFile(Callable<? extends T> action) throws LockTimeoutException, FileIntegrityViolationException, InsufficientLockModeException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/CopySpecMatchingTest.groovy

            when:
            copySpec.filesMatching([], matchingAction)
    
            then:
            def exception = thrown(InvalidUserDataException)
            exception.message == 'must provide at least one pattern to match'
        }
    
        def canNotMatchFiles() {
            given:
            FileCopyDetails details1 = details('path/abc.txt')
            FileCopyDetails details2 = details('path/bcd.txt')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/SECURITY.md

    Please disclose it at [security advisory](https://github.com/ianlancetaylor/demangle/security/advisories/new).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 686 bytes
    - Viewed (0)
Back to top