Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for unmatched (0.75 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailure.java

            Set<String> unmatched = new LinkedHashSet<>();
            for (Problem problem : problems) {
                if (matcher.matches(problem.description)) {
                    problemsNotChecked.remove(problem);
                } else {
                    unmatched.add(problem.description);
                }
            }
            if (!unmatched.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/cmd/vet/vet_test.go

    	}
    	if s[len(prefix)] == ':' {
    		return true
    	}
    	return false
    }
    
    func partitionStrings(prefix string, strs []string) (matched, unmatched []string) {
    	for _, s := range strs {
    		if matchPrefix(s, prefix) {
    			matched = append(matched, s)
    		} else {
    			unmatched = append(unmatched, s)
    		}
    	}
    	return
    }
    
    type wantedError struct {
    	reStr   string
    	re      *regexp.Regexp
    	lineNum int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. pilot/pkg/xds/proxy_dependencies_test.go

    			true,
    		},
    		{"mixture matched and unmatched config for sidecar", sidecar, sets.New(
    			model.ConfigKey{Kind: kind.DestinationRule, Name: drName, Namespace: nsName},
    			model.ConfigKey{Kind: kind.ServiceEntry, Name: svcName + invalidNameSuffix, Namespace: nsName},
    		), true},
    		{"mixture unmatched and unmatched config for sidecar", sidecar, sets.New(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/accesslog_test.go

    						Name:       wellknown.FileAccessLog,
    						ConfigType: &accesslog.AccessLog_TypedConfig{TypedConfig: protoconv.MessageToAny(defaultJSONLabelsOut)},
    					},
    				},
    			},
    		},
    		{
    			name: "log-selector-unmatched-telemetry",
    			push: env.PushContext(),
    			proxy: &model.Proxy{
    				ConfigNamespace: "default",
    				Labels:          map[string]string{"app": "test-with-server-accesslog-filter"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. security/pkg/pki/util/crypto_test.go

    			}
    		} else if err != nil {
    			t.Errorf(`%s: Unexpected error: "%s"`, id, err)
    		} else if keyType := reflect.TypeOf(key); keyType != c.keyType {
    			t.Errorf(`%s: Unmatched key type: expected "%v" but got "%v"`, id, c.keyType, keyType)
    		}
    	}
    }
    
    func TestGetRSAKeySize(t *testing.T) {
    	testCases := map[string]struct {
    		pem    string
    		size   int
    		errMsg string
    	}{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

            'compatible platforms, but additional attributes unmatched' | [platform: JavaVersion.JAVA8]                 | [platform: JavaVersion.JAVA6, flavor: 'free'] | [platform: JavaVersion.JAVA6, flavor: 'paid'] | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

                  - Unmatched attributes:
                      - Provides opacity 'transparent' but the consumer didn't ask for it
                      - Provides shape 'round' but the consumer didn't ask for it
              - Variant 'blueSquareOpaqueElements' capability :${temporaryFolder.getTestDirectory().getName()}:unspecified declares attribute 'color' with value 'blue':
                  - Unmatched attributes:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. pkg/config/analysis/msg/messages.yaml

        code: IST0150
        level: Warning
        description: "Proxy may prevent tcp named ports and unmatched traffic for ports serving TCP protocol from being forwarded correctly for ExternalName services."
        template: "Port name for ExternalName service is invalid. Proxy may prevent tcp named ports and unmatched traffic for ports serving TCP protocol from being forwarded correctly"
    
      - name: "EnvoyFilterUsesRelativeOperation"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_inbound.go

    	// only configures TLS overrides.
    	tlsSettings *networking.ServerTLSSettings
    
    	// passthrough should be set to true for the 'passthrough' chains, which are the chains always
    	// present to handle all unmatched traffic. These have a few naming and quirks that require
    	// different configuration.
    	passthrough bool
    
    	// bindToPort determines if this chain should form a real listener that actually binds to a real port,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    # that process (while maintaining the separation between arguments), and wrap
    # the whole thing up as a single "set" statement.
    #
    # This will of course break if any of these variables contains a newline or
    # an unmatched quote.
    #
    
    eval "set -- \$(
            printf '%s\\n' "\$DEFAULT_JVM_OPTS \$JAVA_OPTS \$${optsEnvironmentVar}" |
            xargs -n1 |
            sed ' s~[^-[:alnum:]+,./:=@_]~\\\\&~g; ' |
            tr '\\n' ' '
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top