Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Matcher (0.24 sec)

  1. ChangeLog.md

    - [`KT-59369`](https://youtrack.jetbrains.com/issue/KT-59369) K2: Missing BUILDER_INFERENCE_STUB_RECEIVER
    - [`KT-62590`](https://youtrack.jetbrains.com/issue/KT-62590) Split expect/actual matcher-checker machinery in two separate components: matcher and checker
    - [`KT-63732`](https://youtrack.jetbrains.com/issue/KT-63732) K1: False positive OUTER_CLASS_ARGUMENTS_REQUIRED inside anonymous object
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. prow/config/calico.yaml

                    description: BPFMapSizeIPSets sets the size for ipsets map.  The IP
                      sets map must be large enough to hold an entry for each endpoint
                      matched by every selector in the source/destination matches in network
                      policy.  Selectors such as "all()" can result in large numbers of
                      entries (one entry per endpoint in that case).
                    type: integer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      // CHECK: return %2 : tensor<5x4x1x8192xf32>
    }
    
    // CHECK-LABEL: @FuseReshapeAroundBMMNagativeTest2
    // Checks that the pattern matcher FuseReshapesAroundBatchMatMulLHS does not get
    // applied for this case that does not pass the constraint around input rank.
    func.func @FuseReshapeAroundBMMNagativeTest2(%arg0: tensor<2x1536xf32>) -> tensor<2x768xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier_test.go

    			t.Errorf("Bad CIDR in kube-proxy output: %v", err)
    		}
    		matches = cidr.Contains(ip)
    	} else {
    		ip2 := netutils.ParseIPSloppy(address.Value)
    		if ip2 == nil {
    			t.Errorf("Bad IP/CIDR in kube-proxy output: %s", address.Value)
    		}
    		matches = ip.Equal(ip2)
    	}
    	return (!address.Negated && matches) || (address.Negated && !matches)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - Ensure Job status updates are batched by 1s. This fixes an unlikely scenario when a sequence of immediately 
      completing pods could trigger a sequence of non-batched Job status updates. ([#118470](https://github.com/kubernetes/kubernetes/pull/118470), [@mimowo](https://github.com/mimowo)) [SIG Apps]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

    - Kube-scheduler now retries scheduling Pods rejected by the PodTopologySpread plugin when related Pods are created, deleted, updated, or when a node matches the specified topologyKey. ([#122195](https://github.com/k...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
    	// node(s) with the highest sum are the most preferred.
    	// +optional
    	PreferredDuringSchedulingIgnoredDuringExecution []WeightedPodAffinityTerm
    }
    
    // WeightedPodAffinityTerm represents the weights of all of the matched WeightedPodAffinityTerm
    // fields are added per-node to find the most preferred node(s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"labelSelector":     "A label query over a set of resources, in this case pods. If it's null, this PodAffinityTerm matches with no Pods.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    // where co-located is defined as running on a node whose value of
    // the label with key <topologyKey> matches that of any node on which
    // a pod of the set of pods is running
    type PodAffinityTerm struct {
    	// A label query over a set of resources, in this case pods.
    	// If it's null, this PodAffinityTerm matches with no Pods.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

    // where co-located is defined as running on a node whose value of
    // the label with key <topologyKey> matches that of any node on which
    // a pod of the set of pods is running
    message PodAffinityTerm {
      // A label query over a set of resources, in this case pods.
      // If it's null, this PodAffinityTerm matches with no Pods.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector labelSelector = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top