Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for unmatched (0.16 sec)

  1. hack/golangci.yaml

          description: structured logging checker
          original-url: k8s.io/logtools/logcheck
          settings:
            config: |
              # hack/logcheck.conf contains regular expressions that are matched against <pkg>/<file>,
              # for example k8s.io/cmd/kube-scheduler/app/config/config.go.
              #
              # By default, structured logging call parameters are checked, but usage of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. schema/relationship.go

    				matched := true
    				for idx, ref := range r.References {
    					if !(rel.References[idx].PrimaryKey == ref.PrimaryKey && rel.References[idx].ForeignKey == ref.ForeignKey &&
    						rel.References[idx].PrimaryValue == ref.PrimaryValue) {
    						matched = false
    					}
    				}
    
    				if matched {
    					return nil
    				}
    			}
    		}
    	}
    
    	var (
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set.go

    	return cm.ClaimPods(ctx, pods, filter)
    }
    
    // If any adoptions are attempted, we should first recheck for deletion with
    // an uncached quorum read sometime after listing Pods/ControllerRevisions (see #42639).
    func (ssc *StatefulSetController) canAdoptFunc(ctx context.Context, set *apps.StatefulSet) func(ctx2 context.Context) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. tests/scan_test.go

    				t.Errorf("Failed, expected %v, got %v", address1.Name, info.Address.Name)
    			}
    		}
    	}
    
    	if !personMatched {
    		t.Errorf("Failed, no person matched")
    	}
    	if !addressMatched {
    		t.Errorf("Failed, no address matched")
    	}
    
    	personDupField := Person{ID: person1.ID}
    	if err := DB.Select("people.id, people.*").
    		First(&personDupField).Error; err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar.go

    	if service == nil {
    		return nil
    	}
    	matched := make([]NamespacedHostname, 0, len(service.Attributes.Aliases))
    	for _, alias := range service.Attributes.Aliases {
    		if importedHosts.Matches(alias.Hostname) {
    			matched = append(matched, alias)
    		}
    	}
    
    	if len(matched) == len(service.Attributes.Aliases) {
    		return service
    	}
    	service = service.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	fmt.Fprintln(w, legend)
    	var flatSum int64
    
    	rx := rpt.options.Symbol
    	matched := 0
    	for _, n := range g.Nodes {
    		name, flat, cum := n.Info.PrintableName(), n.FlatValue(), n.CumValue()
    
    		// Skip any entries that do not match the regexp (for the "peek" command).
    		if rx != nil && !rx.MatchString(name) {
    			continue
    		}
    		matched++
    
    		fmt.Fprintln(w, separator)
    		// Print incoming edges.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. src/crypto/x509/verify.go

    func validHostnameInput(host string) bool   { return validHostname(host, false) }
    
    // validHostname reports whether host is a valid hostname that can be matched or
    // matched against according to RFC 6125 2.2, with some leniency to accommodate
    // legacy values.
    func validHostname(host string, isPattern bool) bool {
    	if !isPattern {
    		host = strings.TrimSuffix(host, ".")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcher.java

     * This class has two public APIs:
     *
     * <ul>
     * <li>Judge whether a test class might be included. For example, class 'org.gradle.Test' can't
     * be included by pattern 'org.apache.Test'
     * <li>Judge whether a test method is matched exactly.
     * </ul>
     *
     * In both cases, if the pattern starts with an upper-case letter, it will be used to match
     * simple class name;
     * otherwise, it will be used to match full qualified class name.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

                    projectPath = Path.ROOT;
                } else {
                    projectPath = projectPath.removeFirstSegments(1);
                }
            }
            LOGGER.info("Task path '{}' matched project '{}'", context.getOriginalPath(), matchingProject.getIdentityPath());
            return new ProjectResolutionResult(matchingProject.getOwner(), matchingProject, false, path.getName());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

            val expectedKind = expectedType.toConstantValueKind()
            // Note that the resolved type for the const expression is not always matched with the const kind. For example,
            //   fun foo(x: Int) {
            //     when (x) {
            //       -2_147_483_628 -> ...
            //   } }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top