Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for getLogs (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/audit/policy/checker_test.go

    	test(t, "nonResource", audit.LevelRequestResponse, stages, stages, "getLogs", "getClusterRoles", "default")
    	test(t, "nonResource", audit.LevelNone, stages, stages, "getPodLogs", "getPods")
    
    	test(t, "subresource", audit.LevelRequest, stages, stages, "getPodLogs", "getPods")
    	test(t, "subresource", audit.LevelRequest, stages, stages, "getPodWildcardMatching")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 12 15:06:14 UTC 2021
    - 15.1K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server.go

    		ws.Path(logsPath)
    		ws.Route(ws.GET("").
    			To(s.getLogs).
    			Operation("getLogs"))
    		if !enableSystemLogQuery {
    			ws.Route(ws.GET("/{logpath:*}").
    				To(s.getLogs).
    				Operation("getLogs").
    				Param(ws.PathParameter("logpath", "path to the log").DataType("string")))
    		} else {
    			ws.Route(ws.GET("/{logpath:*}").
    				To(s.getLogs).
    				Operation("getLogs").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  3. pkg/kube/client.go

    	opts := &v1.PodLogOptions{
    		Container: container,
    		Previous:  previousLog,
    	}
    	res, err := c.kube.CoreV1().Pods(podNamespace).GetLogs(podName, opts).Stream(ctx)
    	if err != nil {
    		return "", err
    	}
    	defer closeQuietly(res)
    
    	builder := &strings.Builder{}
    	if _, err = io.Copy(builder, res); err != nil {
    		return "", err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

          tensorflow::XlaCallModuleLoader::Create(
              context, static_cast<int>(op.getVersion()), op.getModule().str(),
              std::move(disabled_checks), std::move(platforms),
              /*num_invocation_args=*/op.getArgs().size(),
              op.getHasTokenInputOutput()));
      return std::move(*loader).module();
    }
    
    // Renames functions in the stablehlo module to avoid naming conflicts with
    // existing functions in the tf module.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

                                  TF::XlaCallModuleOp xla_call_module_op) {
      SmallVector<Type> arg_types;
      SmallVector<Location> arg_locs;
      for (const Value arg : xla_call_module_op.getArgs()) {
        arg_types.push_back(arg.getType());
        arg_locs.push_back(arg.getLoc());
      }
    
      SmallVector<Type> output_types;
      for (const Value output : xla_call_module_op.getOutput()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/podresources/testing/provider_mock.go

    }
    
    // GetPods mocks base method.
    func (m *MockPodsProvider) GetPods() []*v1.Pod {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetPods")
    	ret0, _ := ret[0].([]*v1.Pod)
    	return ret0
    }
    
    // GetPods indicates an expected call of GetPods.
    func (mr *MockPodsProviderMockRecorder) GetPods() *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

                    return block.getPos().compareTo(block1.getPos());
                }
            });
    
            for (int i = 0; i < blocks.size() - 1; i++) {
                Block b1 = blocks.get(i).getBlock();
                Block b2 = blocks.get(i + 1).getBlock();
                if (b1.getPos().getPos() + b1.getSize() > b2.getPos().getPos()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  8. pkg/kubelet/server/stats/testing/mock_stats_provider.go

    }
    
    // GetPods mocks base method.
    func (m *MockProvider) GetPods() []*v10.Pod {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetPods")
    	ret0, _ := ret[0].([]*v10.Pod)
    	return ret0
    }
    
    // GetPods indicates an expected call of GetPods.
    func (mr *MockProviderMockRecorder) GetPods() *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.cc

        ModuleOp module = op->getParentOfType<ModuleOp>();
        SymbolTable symbol_table(module);
        func::FuncOp float_func =
            dyn_cast<func::FuncOp>(symbol_table.lookup(function_name));
        OperandRange func_args = op.getArgs();
        func::FuncOp new_float_func = float_func.clone();
    
        SmallVector<Value> new_float_func_args{func_args.begin(), func_args.end()};
        new_float_func_args[weight_operand_idx] = reshape_op;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.cc

        << ") cost(" << op->getAttrOfType<mlir::IntegerAttr>("_tfrt_cost").getInt()
        << ") device(" << op->getAttr("device") << ") " << op->getAttr("op_name")
        << '(' << op.getArgs() << ')';
    
      fallback_common::PrintExecuteOpCommon(p, op);
      fallback_common::PrintExecuteOpFuncAttribute(p, op);
      if (!op.getResults().empty()) p << " : " << op.getResults().size();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 15.6K bytes
    - Viewed (0)
Back to top