Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for unmatched (0.16 sec)

  1. staging/src/k8s.io/api/networking/v1/types.go

    	PolicyTypes []PolicyType `json:"policyTypes,omitempty" protobuf:"bytes,4,rep,name=policyTypes,casttype=PolicyType"`
    }
    
    // NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods
    // matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.
    type NetworkPolicyIngressRule struct {
    	// ports is a list of ports which should be made accessible on the pods selected for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

                if (versionRangeResult.getHighestVersion() == null) {
                    throw new UnresolvableModelException(
                            String.format(
                                    "No versions matched the requested parent version range '%s'", parent.getVersion()),
                            parent.getGroupId(),
                            parent.getArtifactId(),
                            parent.getVersion());
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. cmd/kubeadm/app/cmd/token_test.go

    	if err != nil {
    		t.Errorf("RunGenerateToken returned an error: %v", err)
    	}
    
    	output := buf.String()
    
    	matched, err := regexp.MatchString(tokenExpectedRegex, output)
    	if err != nil {
    		t.Fatalf("Encountered an error while trying to match RunGenerateToken's output: %v", err)
    	}
    	if !matched {
    		t.Errorf("RunGenerateToken's output did not match expected regex; wanted: [%s], got: [%s]", tokenExpectedRegex, output)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

        // Walk through all policies until we find one that matches the operation.
        bool updated = false;
        for (auto &policy : policies.policies()) {
          auto matched =
              policy->MatchAndUpdateConstraints(op, results, operands.Reset());
          if (succeeded(matched)) {
            updated = true;
            break;
          }
        }
    
        // Signal a failure if could not propagate non-empty constraints on the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. 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)
Back to top