Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,054 for inter (0.05 sec)

  1. pkg/scheduler/internal/cache/snapshot.go

    }
    
    // HavePodsWithAffinityList returns the list of nodes with at least one pod with inter-pod affinity
    func (s *Snapshot) HavePodsWithAffinityList() ([]*framework.NodeInfo, error) {
    	return s.havePodsWithAffinityNodeInfoList, nil
    }
    
    // HavePodsWithRequiredAntiAffinityList returns the list of nodes with at least one pod with
    // required inter-pod anti-affinity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h

    }  // namespace detail
    
    // An analysis that runs on a module and maps each resource-type value to a
    // set of unique IDs representing the possible resources it could alias.
    //
    // Note that this is not an inter-procedural or inter-regional analysis, i.e.,
    // each function and region are handled separately and cross-function or cross-
    // region aliasing cannot be checked by this analysis.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/preemption/preemption_test.go

    			expected: sets.New("node1", "node4"),
    		},
    		{
    			name: "ErrReasonAffinityRulesNotMatch should not be tried as it indicates that the pod is unschedulable due to inter-pod affinity, but ErrReasonAntiAffinityRulesNotMatch should be tried as it indicates that the pod is unschedulable due to inter-pod anti-affinity",
    			nodesStatuses: framework.NodeToStatusMap{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. src/cmd/doc/pkg.go

    				found = true
    			}
    		}
    		if found {
    			pkg.Printf("type %s ", spec.Name)
    			inter.Methods.List, methods = methods, inter.Methods.List
    			err := format.Node(&pkg.buf, pkg.fs, inter)
    			if err != nil {
    				log.Fatal(err)
    			}
    			pkg.newlines(1)
    			// Restore the original methods.
    			inter.Methods.List = methods
    		}
    	}
    	return found
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/basic.mlir

    // RUN: tf-tfrt-opt -pass-pipeline='builtin.module(func.func(tf-tensor-device-copy),tfrt-lower-tf-savedmodel{hoist-invariant-ops=true},tf-to-tfrt{tfrt-cost-threshold=1024 tfrt-merge-inter-dependent-streams=true})' %s | FileCheck %s --dump-input-filter=all
    
    // CHECK-NOT: tf_saved_model.semantics
    // CHECK: tfrt.cost_threshold = 1024
    // CHECK-SAME: tfrt.merge_inter_dependent_streams = true
    module attributes {tf_saved_model.semantics} {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/interpodaffinity/plugin.go

    var _ framework.PreScorePlugin = &InterPodAffinity{}
    var _ framework.ScorePlugin = &InterPodAffinity{}
    var _ framework.EnqueueExtensions = &InterPodAffinity{}
    
    // InterPodAffinity is a plugin that checks inter pod affinity
    type InterPodAffinity struct {
    	parallelizer parallelize.Parallelizer
    	args         config.InterPodAffinityArgs
    	sharedLister framework.SharedLister
    	nsLister     listersv1.NamespaceLister
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 03:08:44 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/certificates/v1alpha1/generated.proto

      //
      // 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.
      optional string trustBundle = 2;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

      //
      // 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.
      optional string trustBundle = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func convT64(val uint64) unsafe.Pointer
    func convTstring(val string) unsafe.Pointer
    func convTslice(val []uint8) unsafe.Pointer
    
    // interface type assertions x.(T)
    func assertE2I(inter *byte, typ *byte) *byte
    func assertE2I2(inter *byte, typ *byte) *byte
    func panicdottypeE(have, want, iface *byte)
    func panicdottypeI(have, want, iface *byte)
    func panicnildottype(want *byte)
    func typeAssert(s *byte, typ *byte) *byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

      }
      return island;
    }
    
    // A struct that contains the operations in an island that need explicit control
    // dependencies added going into and out of the island to capture inter-island
    // dependencies properly.
    struct IslandSourcesAndSinks {
      // Sub-ops that need a control dependency going into the island. This includes
      // sub-ops that do not depend on other sub-ops in the island and functional
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
Back to top