Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 74 for movbeq (0.25 sec)

  1. cmd/kubeadm/app/componentconfigs/fakeconfig_test.go

    //   This, often times, requires that the PR that introduces such new fields to touch kubeadm test code.
    //   Doing so, requires more work on the part of developers and reviewers. When kubeadm moves out of k/k
    //   this would allow for more sporadic breaks in kubeadm tests as PRs that merge in k/k and introduce
    //   new fields won't be able to fix the tests in kubeadm.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

        for (auto it : llvm::enumerate(identity_n.getResults()))
          yield.setOperand(it.index(), it.value());
      }
    }
    
    // Helper that creates an island. If `sub_op` is not nullptr, it will be moved
    // to the island. Otherwise a NoOp will be added to the island.
    tf_executor::IslandOp CreateIsland(TypeRange result_types,
                                       ValueRange control_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/Ints.java

          int tmp = array[i];
          array[i] = array[j];
          array[j] = tmp;
        }
      }
    
      /**
       * Performs a right rotation of {@code array} of "distance" places, so that the first element is
       * moved to index "distance", and the element at index {@code i} ends up at index {@code (distance
       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Ints.asList(array),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/types.go

    	// increase the computing pressure in requeueing unless you really need it.
    	//
    	// Meanwhile, if the coming clusterEvent is a wildcard one, all pods
    	// will be moved from unschedulablePod pool to activeQ/backoffQ forcibly.
    	WildCard GVK = "*"
    )
    
    type ClusterEventWithHint struct {
    	Event ClusterEvent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

          result.replaceAllUsesWith(transposed_res);
          transposed_res.setOperand(0, result);
        }
      });
    }
    
    // Move Transpose operations that permute `op` results before the `op`.
    void MoveTransposeBefore(Operation* op, SmallVector<Operation*, 8>* work_list) {
      // TODO(ezhulenev): Move transpose across layout sensitive operations.
      if (!op->hasTrait<OpTrait::TF::LayoutAgnostic>()) return;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. src/runtime/runtime2.go

    	// not owned *except* that a channel operation may read or
    	// write parts of the stack under the appropriate channel
    	// lock. Otherwise, it is not safe to access the stack after a
    	// goroutine enters _Gwaiting (e.g., it may get moved).
    	_Gwaiting // 4
    
    	// _Gmoribund_unused is currently unused, but hardcoded in gdb
    	// scripts.
    	_Gmoribund_unused // 5
    
    	// _Gdead means this goroutine is currently unused. It may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  7. pkg/scheduler/scheduler.go

    			continue
    		}
    
    		// Note: Rarely, a plugin implements EnqueueExtensions but returns nil.
    		// We treat it as: the plugin is not interested in any event, and hence pod failed by that plugin
    		// cannot be moved by any regular cluster event.
    		// So, we can just ignore such EventsToRegister here.
    
    		registerNodeAdded := false
    		registerNodeTaintUpdated := false
    		for _, event := range events {
    			fn := event.QueueingHintFn
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/DuplexTest.kt

            }
          }
        client =
          client.newBuilder()
            .eventListener(listener)
            .build()
        val body =
          MockStreamHandler()
            .sendResponse("/a has moved!\n", duplexResponseSent)
            .requestIOException()
            .exhaustResponse()
        server.enqueue(
          MockResponse.Builder()
            .clearHeaders()
            .code(HttpURLConnection.HTTP_MOVED_PERM)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_compiler.h

            persistor,
        std::unique_ptr<DeviceCompilerClient<ExecutableType, ClientType>>
            compiler_client)
        : persistor_(std::move(persistor)),
          compiler_client_(std::move(compiler_client)) {
      cache_ = std::make_unique<DeviceCompilationCache<ExecutableType>>();
      async_compiler_threads_ = std::make_unique<tensorflow::thread::ThreadPool>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/Booleans.java

          boolean tmp = array[i];
          array[i] = array[j];
          array[j] = tmp;
        }
      }
    
      /**
       * Performs a right rotation of {@code array} of "distance" places, so that the first element is
       * moved to index "distance", and the element at index {@code i} ends up at index {@code (distance
       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Booleans.asList(array),
       * distance)}, but is somewhat faster.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top