Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,363 for inter (1.6 sec)

  1. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    				),
    				nil,
    			},
    			name: "NodeA and nodeB have same topologyKey and label value. NodeA has an existing pod that matches the inter pod affinity rule. The pod can not be scheduled onto nodeA, nodeB, but can be scheduled onto nodeC (NodeC has an existing pod that match the inter pod affinity rule but in different namespace)",
    		},
    		{
    			pod: st.MakePod().Label("foo", "").Obj(),
    			pods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

    import org.apache.maven.project.collector.RequestPomCollectionStrategy;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import static java.util.Comparator.comparing;
    
    /**
     * Builds the {@link ProjectDependencyGraph inter-dependencies graph} between projects in the reactor.
     */
    @Named(GraphBuilder.HINT)
    @Singleton
    public class DefaultGraphBuilder implements GraphBuilder {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  3. cmd/storage-rest_test.go

    	"reflect"
    	"runtime"
    	"testing"
    	"time"
    
    	"github.com/minio/minio/internal/grid"
    	xnet "github.com/minio/pkg/v3/net"
    )
    
    // Storage REST server, storageRESTReceiver and StorageRESTClient are
    // inter-dependent, below test functions are sufficient to test all of them.
    func testStorageAPIDiskInfo(t *testing.T, storage StorageAPI) {
    	testCases := []struct {
    		expectErr bool
    	}{
    		{true},
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    		interfaces, _ := net.Interfaces() //TODO create interfaces
    		for _, inter := range interfaces {
    			addresses, _ := inter.Addrs()
    			for _, addr := range addresses {
    				addrIP, _, _ := netutils.ParseCIDRSloppy(addr.String())
    				if addrIP.String() == nodeIP.String() {
    					klog.V(2).InfoS("Record Host MAC address", "addr", inter.HardwareAddr)
    					hostMac = inter.HardwareAddr.String()
    				}
    			}
    		}
    		if len(hostMac) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

        // arguments must correspond to different resources and we can assign unique
        // IDs.
        assign_unique_id_to_all(func_op.getArguments());
      }
    
      // Since this analysis is neither inter-procedural nor inter-regional,
      // each region attached to Op's within a function is analyzed independently.
      // Seed this analysis for each such region by mapping all resource arguments
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    You will also find it easier to take advantage of Gradle's power features to improve build performance.
    +
    The main downside is the extra work required to perform the migration, particularly if the existing build is complex and has many inter-project dependencies.
    However, these builds often benefit the most from a switch to idiomatic Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_conversion_test.go

    				}
    			}
    			assert.Equal(t, testCase.expectedConvertedObject, outObject)
    		})
    	}
    }
    
    func TestUnstructuredToUnstructuredConversion(t *testing.T) {
    	// eventually, we don't want any inter-unstructured conversion happen, but for now, the conversion
    	// just copy/pastes
    	scheme, _ := test.TestScheme()
    	inUnstructured := &unstructured.Unstructured{
    		Object: map[string]interface{}{
    			"apiVersion": "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 07 15:19:26 UTC 2020
    - 16.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      // Check for presence of unknown side-effecting ops within the while loop
      // body. These ops act as barriers and the optimization would not yield much
      // inter iteration parallelism for this while loop body. So return with
      // warning.
      if (chain_resource_to_ops_map.count(kUnknownResourceAndDevice) > 0) {
        std::set<std::string> blocking_ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. pkg/apis/certificates/types.go

    	//
    	// Users of ClusterTrustBundles, including Kubelet, are free to reorder and
    	// deduplicate certificate blocks in this file according to their own logic,
    	// as well as to drop PEM block headers and inter-block data.
    	TrustBundle string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ClusterTrustBundleList is a collection of ClusterTrustBundle objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/interpodaffinity/scoring.go

    	hasConstraints := hasPreferredAffinityConstraints || hasPreferredAntiAffinityConstraints
    
    	// Optionally ignore calculating preferences of existing pods' affinity rules
    	// if the incoming pod has no inter-pod affinities.
    	if pl.args.IgnorePreferredTermsOfExistingPods && !hasConstraints {
    		return framework.NewStatus(framework.Skip)
    	}
    
    	// Unless the pod being scheduled has preferred affinity terms, we only
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top