Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 123 for integ (0.07 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	Prefix   Prefixes // Prefixes applied to the instruction.
    	Op       Op       // Opcode mnemonic
    	Opcode   uint32   // Encoded opcode bits, left aligned (first byte is Opcode>>24, etc)
    	Args     Args     // Instruction arguments, in Intel order
    	Mode     int      // processor mode in bits: 16, 32, or 64
    	AddrSize int      // address size in bits: 16, 32, or 64
    	DataSize int      // operand size in bits: 16, 32, or 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Indicates whether the model building should happen in two phases. If enabled, the initial invocation of the model
         * builder will only produce an interim result which may be used to analyze inter-model dependencies before the
         * final invocation of the model builder is performed.
         *
         * @return {@code true} if two-phase building is enabled, {@code false} if the model should be build in a single
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	case FDIV, FDIVR, FSUB, FSUBR, FDIVP, FDIVRP, FSUBP, FSUBRP:
    		// DC E0, DC F0: libopcodes swaps FSUBR/FSUB and FDIVR/FDIV, at least
    		// if you believe the Intel manual is correct (the encoding is irregular as given;
    		// libopcodes uses the more regular expected encoding).
    		// TODO(rsc): Test to ensure Intel manuals are correct and report to libopcodes maintainers?
    		// NOTE: iant thinks this is deliberate, but we can't find the history.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

      let summary = "Moves a broadcast from host into XLA, encoded as XlaAllReduce";
    
      let description = [{
        This pass moves brodcasts from host TF ops into XLA. This enables use of
        the inter-device network, which is faster than the inter-host network.
        Broadcasts in XLA are encoded as XlaAllReduce. An all_reduce with all 0
        inputs except for one real input produces the same result as a broadcast.
    
        For example, the following:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. src/internal/reflectlite/all_test.go

    	etyp := typ.Elem()
    	testType(t, 4, etyp, "struct { c chan *int32; d float32 }")
    }
    
    func TestInterfaceValue(t *testing.T) {
    	var inter struct {
    		E any
    	}
    	inter.E = 123.456
    	v1 := ValueOf(&inter)
    	v2 := Field(v1.Elem(), 0)
    	// assert(t, TypeString(v2.Type()), "interface {}")
    	v3 := v2.Elem()
    	assert(t, TypeString(v3.Type()), "float64")
    
    	i3 := ToInterface(v2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  9. src/runtime/race/testdata/mop_test.go

    func TestRaceInterCall(t *testing.T) {
    	c := make(chan bool, 1)
    	p := InterImpl{}
    	var x Inter = p
    	go func() {
    		p2 := InterImpl{}
    		x = p2
    		c <- true
    	}()
    	x.Foo(0)
    	<-c
    }
    
    func TestRaceInterCall2(t *testing.T) {
    	c := make(chan bool, 1)
    	p := InterImpl{}
    	var x Inter = p
    	z := 0
    	go func() {
    		z = 42
    		c <- true
    	}()
    	x.Foo(z)
    	<-c
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 16:46:25 UTC 2023
    - 28.9K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    												Key:      "GPU",
    												Operator: v1.NodeSelectorOpExists,
    											}, {
    												Key:      "GPU",
    												Operator: v1.NodeSelectorOpNotIn,
    												Values:   []string{"AMD", "INTER"},
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    			labels: map[string]string{
    				"GPU": "NVIDIA-GRID-K1",
    			},
    			runPreFilter: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
Back to top