Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 648 for unmatched (0.13 sec)

  1. pkg/kube/krt/krttest/helpers.go

    	return krt.NewStatic(slices.First(t))
    }
    
    func extractType[T any](items *[]any) []T {
    	var matched []T
    	var unmatched []any
    	arr := *items
    	for _, val := range arr {
    		if c, ok := val.(T); ok {
    			matched = append(matched, c)
    		} else {
    			unmatched = append(unmatched, val)
    		}
    	}
    
    	*items = unmatched
    	return matched
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 19:33:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/syscall/wtf8_windows_test.go

    	},
    	{
    		// "High surrogate followed by a symbol that is not a surrogate"
    		str:  string([]byte{0xED, 0xA0, 0x80, 0xA}),
    		wstr: []uint16{0xD800, 0xA},
    	},
    	{
    		// "Unmatched high surrogate, followed by a surrogate pair, followed by an unmatched high surrogate"
    		str:  string([]byte{0xED, 0xA0, 0x80, 0xF0, 0x9D, 0x8C, 0x86, 0xED, 0xA0, 0x80}),
    		wstr: []uint16{0xD800, 0xD834, 0xDF06, 0xD800},
    	},
    	{
    		str:  "\xED\xA6\xAF",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 09:26:16 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AnyOrderOutputMatcher.groovy

                }
            }
    
            if (!(ignoreExtraLines || unmatchedLines.empty)) {
                def unmatched = unmatchedLines.join(NL)
                Assert.fail("Extra lines in output.${NL}${unmatched}${NL}---${NL}Actual output:${NL}$actual${NL}---")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. 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)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableComponentIdResolveResult.java

         * version which can match, but we actually select (or reject) more before selecting.
         *
         * @param unmatchedVersions a collection of unmatched versions
         */
        void unmatched(Collection<String> unmatchedVersions);
    
        /**
         * Registers the list of rejections that happened during resolution for this module.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. 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)
  7. pkg/config/security/security_test.go

    			values:    []string{"/{*}/foo/{temp"},
    			wantError: true,
    		},
    		{
    			name:      "unsupported path template - matchOneTemplate with unmatched closed curly brace",
    			values:    []string{"/{*}/foo/temp}/bar"},
    			wantError: true,
    		},
    		{
    			name:      "unsupported path template - matchOneTemplate with unmatched closed curly brace and `*`",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. 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)
  9. test/fixedbugs/issue21576.go

    	if err == nil {
    		log.Fatalf("Passed, expected an error")
    	}
    
    	want := []byte("fatal error: all goroutines are asleep - deadlock!")
    	if !bytes.Contains(output, want) {
    		log.Fatalf("Unmatched error message %q:\nin\n%s\nError: %v", want, output, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_patterns.txt

    stdout 'index/suffixarray: \[\.\.\.\]'
    stdout 'cmd/pprof: \[\.\.\.\]'
    
    stderr -count=1 '^go: warning: "./xyz..." matched no packages$'
    
    # 'go list ./...' should not try to resolve the main module.
    cd ../empty
    go list -deps ./...
    ! stdout .
    ! stderr 'finding'
    stderr -count=1 '^go: warning: "./..." matched no packages'
    
    # disabling cgo should drop useC
    [short] skip
    env CGO_ENABLED=0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 2.4K bytes
    - Viewed (0)
Back to top