Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 303 for getLogs (0.22 sec)

  1. pkg/kubelet/server/stats/handler.go

    	// ListBlockVolumesForPod returns the stats of the volume used by the
    	// pod with the podUID.
    	ListBlockVolumesForPod(podUID types.UID) (map[string]volume.BlockVolume, bool)
    	// GetPods returns the specs of all the pods running on this node.
    	GetPods() []*v1.Pod
    
    	// RlimitStats returns the rlimit stats of system.
    	RlimitStats() (*statsapi.RlimitStats, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 21:31:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/DefaultCommandLineToolInvocation.java

            this.workDirectory = workDirectory;
            this.args = args;
            this.context = context;
            this.oplogger = oplogger;
        }
    
        @Override
        public Iterable<String> getArgs() {
            return args;
        }
    
        @Override
        public BuildOperationLogger getLogger() {
            return oplogger;
        }
    
        @Override
        public File getWorkDirectory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/bugreport/bugreport.go

    		}()
    
    		clog, _, _, err := getLog(runner, resources, config, namespace, pod, "")
    		appendGlobalErr(err)
    		writeFile(filepath.Join(archive.CniPath(tempDir, pod), "cni.log"), clog, config.DryRun)
    		log.Infof("Done with CNI logs %v", pod)
    	}()
    }
    
    // getLog fetches the logs for the given namespace/pod/container and returns the log text and stats for it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultWorkInProgressFormatterTest.groovy

            given:
            def operation = new ProgressOperation("these are more than 10 characters", "VARIANT_CATEGORY", new OperationIdentifier(1), null)
    
            when:
            _ * consoleMetaData.getCols() >> 10
    
            then:
            statusBarFormatter.format(operation).first().text == "> these a"
        }
    
        def "placeholder is used when message is empty"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/strip_noinline_attribute.cc

     public:
      // void runOnOperation() override;
      void runOnOperation() override {
        // Strip the "tf._noinline" attribute from top-level functions.
        for (auto func_op : getOperation().getOps<func::FuncOp>())
          func_op->removeAttr("tf._noinline");
      }
    };
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateStripNoinlineAttributePass() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java

         *
         * @return メッセージコード
         */
        public String getMessageCode() {
            return messageCode;
        }
    
        /**
         * 引数の配列を返します。
         *
         * @return 引数の配列
         */
        public Object[] getArgs() {
            return args;
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. pkg/kubelet/pod/testing/fake_mirror_client.go

    }
    
    func (fmc *FakeMirrorClient) NumOfPods() int {
    	fmc.mirrorPodLock.RLock()
    	defer fmc.mirrorPodLock.RUnlock()
    	return fmc.mirrorPods.Len()
    }
    
    func (fmc *FakeMirrorClient) GetPods() []string {
    	fmc.mirrorPodLock.RLock()
    	defer fmc.mirrorPodLock.RUnlock()
    	return sets.List(fmc.mirrorPods)
    }
    
    func (fmc *FakeMirrorClient) GetCounts(podFullName string) (int, int) {
    	fmc.mirrorPodLock.RLock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/initialize_variables_in_session_init.cc

        return failure();
      }
    
      // Fetch all VarHandleOp.
      llvm::StringSet<> variable_names;
      llvm::SmallVector<TF::VarHandleOp, 4> var_ops;
      for (auto func_op : module.getOps<func::FuncOp>()) {
        for (auto var_handle_op : func_op.getOps<TF::VarHandleOp>()) {
          auto variable_name = GetVariableName(var_handle_op);
          if (variable_names.count(variable_name)) continue;
          var_ops.emplace_back(var_handle_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/LogContent.java

            try {
                AnsiConsole console = interpretAnsiChars();
                DiagnosticConsole diagnosticConsole = new DiagnosticConsole();
                for (int i = 0; i < console.getRows().size(); i++) {
                    AnsiConsole.Row row = console.getRows().get(i);
                    if (i > 0) {
                        diagnosticConsole.visit(NewLine.INSTANCE);
                    }
                    row.visit(diagnosticConsole);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/project/TestAntTask.java

     */
    
    package org.gradle.api.internal.project;
    
    import org.apache.tools.ant.Task;
    
    public class TestAntTask extends Task {
        @Override
        public void execute() {
            org.apache.commons.logging.LogFactory.getLog("ant-test").info("a jcl log message");
            org.slf4j.LoggerFactory.getLogger("ant-test").info("an slf4j log message");
            org.apache.log4j.Logger.getLogger("ant-test").info("a log4j log message");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 23 15:32:00 UTC 2018
    - 1K bytes
    - Viewed (0)
Back to top