Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for aloop (0.22 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    	{ALODSL, ynone, Px, opBytes{0xad}},
    	{ALODSQ, ynone, Pw, opBytes{0xad}},
    	{ALODSW, ynone, Pe, opBytes{0xad}},
    	{ALONG, ybyte, Px, opBytes{4}},
    	{ALOOP, yloop, Px, opBytes{0xe2}},
    	{ALOOPEQ, yloop, Px, opBytes{0xe1}},
    	{ALOOPNE, yloop, Px, opBytes{0xe0}},
    	{ALTR, ydivl, Pm, opBytes{0x00, 03}},
    	{ALZCNTL, yml_rl, Pf3, opBytes{0xbd}},
    	{ALZCNTQ, yml_rl, Pfw, opBytes{0xbd}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier_test.go

    		assert.NotNil(t, fp.ipsetList["KUBE-LOOP-BACK"])
    
    		activeEntries1 := fp.ipsetList["KUBE-LOOP-BACK"].activeEntries
    
    		if tc.expectLocalEntries {
    			assert.Equal(t, 1, activeEntries1.Len(), "Expected 1 active entry in KUBE-LOOP-BACK")
    		} else {
    			assert.Equal(t, 0, activeEntries1.Len(), "Expected no active entry in KUBE-LOOP-BACK")
    		}
    
    		if tc.expectVirtualServer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      }];
      let constructor = "TF::CreateRemoveUnusedWhileResultsPass()";
    }
    
    def HoistLoopInvariantPass : Pass<"tf-hoist-loop-invariant", "mlir::func::FuncOp"> {
      let summary = "Hoists loop invariant ops to the outside of the loop";
       let description = [{
          Hoists loop invariant to the outside of the loop. The pass is similar to
          LoopInvariantCodeMotion pass, but it also hoists ReadVariableOps,
          if the variable is read only.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	// Manager of non-Runtime containers.
    	containerManager cm.ContainerManager
    
    	// Maximum Number of Pods which can be run by this Kubelet
    	maxPods int
    
    	// Monitor Kubelet's sync loop
    	syncLoopMonitor atomic.Value
    
    	// Container restart Backoff
    	backOff *flowcontrol.Backoff
    
    	// Information about the ports which are opened by daemons on Node running this Kubelet server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

          %ne = "tf.NotEqual"(%carg1, %zero) : (tensor<i32>, tensor<i32>) -> tensor<i1>
          "tf.Yield"(%ne, %carg0, %carg1) : (tensor<i1>, tensor<*xf32>, tensor<i32>) -> ()
        },
        {
          // loop body
          ^bb0(%barg0: tensor<*xf32>, %barg1: tensor<i32>):
          %one = arith.constant dense<1> : tensor<i32>
          %sub = "tf.Sub"(%barg1, %one) : (tensor<i32>, tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_node_status_test.go

    		{
    			name:            "timeout after third loop",
    			beforeMarkReady: 9,
    			beforeNextReady: 9,
    			beforeTimeout:   2,
    			wantCalls:       3,
    		},
    		{
    			name:            "already ready on third loop",
    			beforeMarkReady: 9,
    			beforeNextReady: 1,
    			beforeTimeout:   9,
    			wantCalls:       2,
    		},
    		{
    			name:            "turns ready on third loop",
    			beforeMarkReady: 2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    	}
    
    	// Test that deletes from a nil map succeed.
    	mv.SetMapIndex(ValueOf("hi"), Value{})
    }
    
    func TestChan(t *testing.T) {
    	for loop := 0; loop < 2; loop++ {
    		var c chan int
    		var cv Value
    
    		// check both ways to allocate channels
    		switch loop {
    		case 1:
    			c = make(chan int, 1)
    			cv = ValueOf(c)
    		case 0:
    			cv = MakeChan(TypeOf(c), 1)
    			c = cv.Interface().(chan int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    		// scheduler state, so we didn't gcstopm in findRunnable, but
    		// also don't want to allow new goroutines to run.
    		//
    		// Deadlock here rather than in the findRunnable loop so if
    		// findRunnable is stuck in a loop we don't perturb that
    		// either.
    		lock(&deadlock)
    		lock(&deadlock)
    	}
    
    	// This thread is going to run a goroutine and is not spinning anymore,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    	if outer != 0 {
    		off += ldr.SymValue(s) - ldr.SymValue(outer)
    		s = outer
    	}
    	return s, off
    }
    
    // relocsym resolve relocations in "s", updating the symbol's content
    // in "P".
    // The main loop walks through the list of relocations attached to "s"
    // and resolves them where applicable. Relocations are often
    // architecture-specific, requiring calls into the 'archreloc' and/or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.cc

      TF_ImportGraphDefResults* results =
          TF_GraphImportGraphDefWithResults(graph, graph_def, options, status);
      TF_DeleteImportGraphDefResults(results);
    }
    
    // While loop functions -------------------------------------------------------
    
    namespace {
    
    #if !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top