Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for getLogs (0.53 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      LogicalResult UnifyReplicationInfo(func::FuncOp func) {
        auto new_repl_info =
            builder.getStringAttr(func.getSymName().str() + "_repl_info");
        for (auto& op : func.getRegion().getOps()) {
          if (auto compile_op = llvm::dyn_cast<TF::TPUCompilationResultOp>(op)) {
            UpdateReplicationAttr(compile_op, new_repl_info);
          } else {
            UpdateReplicationAttr(&op, new_repl_info);
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      std::unique_ptr<OpQuantSpec> spec = GetTFOpQuantSpec(call_op);
    
      for (int32_t cur_idx = 0; cur_idx < call_op.getArgs().size(); cur_idx++) {
        // Check if the only the weight index has QuantizeCastOp.
        auto cur_op = dyn_cast_or_null<quantfork::QuantizeCastOp>(
            call_op.getArgs()[cur_idx].getDefiningOp());
        if (!cur_op && spec->quantizable_operands.contains(cur_idx)) {
          return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      OpBuilder builder(call_op);
      // Now use the filtered original operands, which will be replaced by
      // AddLoadsStoresOutsideControlFlowOp().
      auto new_operands = FilterRange<Value, OperandRange>(call_op.getArgs(),
                                                           lifting_info.use_info);
      auto new_call = builder.create<CallOpType>(
          call_op.getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                        buf.append(",\"labels\":[");
                        for (int i = 0; i < item.getTags().length; i++) {
                            if (i > 0) {
                                buf.append(',');
                            }
                            buf.append('\"').append(StringEscapeUtils.escapeJson(item.getTags()[i])).append('\"');
                        }
                        buf.append(']');
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      );
    
      let results = (outs
        Variadic<TF_Tensor>:$output
      );
    
      let extraClassDeclaration = [{
        // Gets the argument operands to the called function.
        operand_range getArgOperands() { return getArgs(); }
        MutableOperandRange getArgOperandsMutable() {
          return getArgsMutable();
        }
    
        // Returns the callee of this operation.
        CallInterfaceCallable getCallableForCallee() { return getFAttr(); }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.AbstractCopyTask.isCaseSensitive()> does not have raw return type assignable to org.gradle.api.provider.Property in (AbstractCopyTask.java:0)
    Method <org.gradle.api.tasks.AbstractExecTask.getArgs()> does not have raw return type assignable to org.gradle.api.provider.Property in (AbstractExecTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	}
    	return toKubeRuntimeStatus(resp.GetStatus(), resp.GetRuntimeHandlers()), nil
    }
    
    // GetPods returns a list of containers grouped by pods. The boolean parameter
    // specifies whether the runtime returns all containers including those already
    // exited and dead containers (used for garbage collection).
    func (m *kubeGenericRuntimeManager) GetPods(ctx context.Context, all bool) ([]*kubecontainer.Pod, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            protected Map<String, String> getEnvironmentVars() {
                return environmentVars;
            }
    
            protected List<String> getArgs() {
                return args;
            }
    
            protected List<String> getBuildJvmArgs() {
                return buildJvmArgs;
            }
    
            protected List<String> getLauncherJvmArgs() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			CreatedAt:  uint64(fakeSandbox.CreatedAt),
    			Containers: []*kubecontainer.Container{containers[0], containers[1]},
    			Sandboxes:  []*kubecontainer.Container{sandbox},
    		},
    	}
    
    	actual, err := m.GetPods(ctx, false)
    	assert.NoError(t, err)
    
    	if !verifyPods(expected, actual) {
    		t.Errorf("expected %#v, got %#v", expected, actual)
    	}
    }
    
    func TestGetPodsSorted(t *testing.T) {
    	ctx := context.Background()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    			case Other:
    				break
    			}
    
    			dswp.hasAddedPods = tc.hasAddedPods
    			// Action
    			dswp.findAndAddNewPods()
    
    			// Verify
    			podsInDSW := dswp.desiredStateOfWorld.GetPods()
    			found := false
    			if podsInDSW[types.UniquePodName(pod.UID)] {
    				found = true
    			}
    
    			if found != tc.expectedFound {
    				t.Fatalf(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top