Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 587 for Replies (0.13 sec)

  1. pkg/test/framework/components/echo/echotest/filters.go

    	"istio.io/istio/pkg/test/framework/components/echo/match"
    )
    
    type (
    	Filter            func(echo.Instances) echo.Instances
    	CombinationFilter func(from echo.Instance, to echo.Instances) echo.Instances
    )
    
    // From applies each of the filter functions in order to allow removing workloads from the set of clients.
    // Example:
    //
    //	echotest.New(t, apps).
    //	  From(echotest.SimplePodServiceAndAllSpecial, echotest.NoExternalServices).
    //	  Run()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. releasenotes/notes/27771.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 27771
    releaseNotes:
    - |
      **Fixed** how install-cni applies istio-cni plugin configuration,
      Install-cni will now remove existing istio-cni plugins from the CNI config
      before inserting istio-cni plugin configuration (new behaviour)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 27 16:33:23 UTC 2020
    - 399 bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtFlexibleTypeRenderer.kt

            @OptIn(ExperimentalContracts::class)
            private fun isMutabilityFlexibleType(lower: KaType, upper: KaType): Boolean {
                contract {
                    returns(true) implies (lower is KaNonErrorClassType)
                    returns(true) implies (upper is KaNonErrorClassType)
                }
                if (lower !is KaNonErrorClassType || upper !is KaNonErrorClassType) return false
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/integTest/groovy/org/gradle/api/internal/tasks/testing/JULRedirectorIntegrationTest.groovy

            "He's a lumberjack, and He's okay.",
            "He sleeps all night and he works all day."
        ]
        @Rule TestResources testResources = new TestResources(temporaryFolder)
    
        /* Relies on the resources directory:
         * integTest/resources/org/gradle/api/internal/tasks/testing/loggingConfig
         */
        def defaultLoggingConfigNoFineLevel() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. pkg/volume/util/fsquota/common/quota_common_linux.go

    // mechanism supported by Linux
    type LinuxVolumeQuotaApplier interface {
    	// GetQuotaOnDir gets the quota ID (if any) that applies to
    	// this directory
    	GetQuotaOnDir(path string) (QuotaID, error)
    
    	// SetQuotaOnDir applies the specified quota ID to a directory.
    	// Negative value for bytes means that a non-enforcing quota
    	// should be applied (perhaps by setting a quota too large to
    	// be hit)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_wildcard_skip_nonmatching.txt

    # Test that wildcards don't look in useless directories.
    
    # First make sure that badpkg fails the list of '...'.
    ! go list ./...
    stderr badpkg
    
    # Check that the list of './goodpkg...' succeeds. That implies badpkg was skipped.
    go list ./goodpkg...
    
    -- go.mod --
    module m
    
    go 1.16
    -- goodpkg/x.go --
    package goodpkg
    -- badpkg/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 344 bytes
    - Viewed (0)
  7. releasenotes/notes/revision-install-create-istiod-service.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    releaseNotes:
      - |
        **Fixed** a bug resulting in broken resource validation when a fresh Istio installation specified a revision. Note that
        this fix applies only when using the `istioctl` installation method, the manual steps from the [canary upgrade documentation](https://istio.io/latest/docs/setup/upgrade/canary/)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 07 19:41:33 UTC 2021
    - 453 bytes
    - Viewed (0)
  8. hack/testdata/multi-resource-1.yaml

    # Tests that initial failures to not block subsequent applies.
    # Pod must be before namespace, so it initially fails. Second
    # apply of pod should succeed, since namespace finally exists.
    apiVersion: v1
    kind: Pod
    metadata:
      name: test-pod
      namespace: multi-resource-ns
      labels:
        name: test-pod-label
    spec:
      containers:
      - name: kubernetes-pause
        image: registry.k8s.io/pause:3.10
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 462 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenCustomPackagingRealWorldIntegrationTest.groovy

            when:
            succeeds('resolve')
    
            then:
            file('libs').assertHasDescendants('ha-api-3.1.7.jar')
        }
    
        def 'resolve maven module with non-existing custom packaging artifact - applies java plugin'() {
            given:
            buildFile.text = '''plugins {
                id 'java'
            }
            '''.stripIndent() + buildFile.text
    
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. internal/s3select/sql/statement.go

    	default:
    		r := int64(*v.Int)
    		if r < 0 {
    			return -1, errBadLimitSpecified
    		}
    		return r, nil
    	}
    }
    
    // EvalFrom evaluates the From clause on the input record. It only
    // applies to JSON input data format (currently).
    func (e *SelectStatement) EvalFrom(format string, input Record) ([]*Record, error) {
    	if !e.selectAST.From.HasKeypath() {
    		return []*Record{&input}, nil
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 09 17:19:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top