Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 303 for getLogs (0.25 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonFeedbackIntegrationSpec.groovy

            daemon.abort()
        }
    
        List<File> getLogs(File baseDir) {
            //the gradle version dir
            def daemonDir = new File(baseDir, GradleVersion.current().version)
            assert daemonDir.exists()
            daemonDir.listFiles().findAll { it.name.endsWith('.log') }
        }
    
        String readLog(File baseDir) {
            def logs = getLogs(baseDir)
    
            //assert single log
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/console/NativePlatformConsoleMetaData.java

        }
    
        @Override
        public boolean isStdErr() {
            return stderr;
        }
    
        @Override
        public int getCols() {
            return terminal.getTerminalSize().getCols();
        }
    
        @Override
        public int getRows() {
            return terminal.getTerminalSize().getRows();
        }
    
        @Override
        public boolean isWrapStreams() {
            return true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/console/FallbackConsoleMetaData.java

            return attached;
        }
    
        @Override
        public boolean isStdErr() {
            return attached;
        }
    
        @Override
        public int getCols() {
            return 0;
        }
    
        @Override
        public int getRows() {
            return 0;
        }
    
        @Override
        public boolean isWrapStreams() {
            return attached;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/console/ConsoleMetaData.java

         * @return The number of columns available in the console. If no information is available return 0.
         */
        int getCols();
    
        /**
         * <p>Returns the number of rows available in the console.</p>
         *
         * @return The height of the console (rows). If no information is available return 0.
         */
        int getRows();
    
        boolean isWrapStreams();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/console/TestConsoleMetadata.java

            return attachedToStdout;
        }
    
        @Override
        public boolean isStdErr() {
            return attachedToStderr;
        }
    
        @Override
        public int getCols() {
            return 130;
        }
    
        @Override
        public int getRows() {
            return 40;
        }
    
        @Override
        public boolean isWrapStreams() {
            return false;
        }
    
        public String getCommandLineArgument() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. 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)
  10. pkg/kubelet/container/testing/mock_runtime_cache.go

    }
    
    // GetPods mocks base method.
    func (m *MockRuntimeCache) GetPods(arg0 context.Context) ([]*container.Pod, error) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetPods", arg0)
    	ret0, _ := ret[0].([]*container.Pod)
    	ret1, _ := ret[1].(error)
    	return ret0, ret1
    }
    
    // GetPods indicates an expected call of GetPods.
    func (mr *MockRuntimeCacheMockRecorder) GetPods(arg0 any) *gomock.Call {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top