Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 175 for logpath (0.16 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppGeneratedPublicHeadersIntegrationTest.groovy

            writeFixtureTo(libraryPath)
        }
    
        private writeLogLibrary(Closure writeFixtureTo = { TestFile logPath -> app.loggerLib.writeToProject(logPath) }) {
            def logPath = testDirectory.file("log")
            logPath.file("build.gradle") << """
                apply plugin: 'cpp-library'
            """
            writeFixtureTo(logPath)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 15:38:28 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftDependenciesIntegrationTest.groovy

        }
    
        private writeLogLibrary() {
            def logPath = file("log")
            def logRepo = GitFileRepository.init(logPath)
            app.logLibrary.writeToProject(logPath)
            logPath.file("build.gradle") << """
                apply plugin: 'swift-library'
                group = 'org.gradle.swift'
                version = '1.0'
            """
            logPath.file("settings.gradle").touch()
            logRepo.commit("initial commit")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftDependenciesCppInteroperabilityIntegrationTest.groovy

        }
    
        private writeCppLogLibrary() {
            def logPath = file("log")
            def logRepo = GitFileRepository.init(logPath)
            app.logLibrary.writeToProject(logPath)
            logPath.file("build.gradle") << """
                apply plugin: 'cpp-library'
                group = 'org.gradle.swift'
                version = '1.0'
            """
            logPath.file("settings.gradle").touch()
            logRepo.commit("initial commit")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/logs_openapi.json

            "responses": {
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "logs"
            ]
          }
        },
        "/logs/{logpath}": {
          "get": {
            "operationId": "logFileHandler",
            "responses": {
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "logs"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 00:49:56 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/legacy.go

    	suffix := fmt.Sprintf(".%s", legacyLogSuffix)
    	logPath := fmt.Sprintf("%s_%s-%s", podFullName, containerName, containerID)
    	// Length of a filename cannot exceed 255 characters in ext4 on Linux.
    	if len(logPath) > ext4MaxFileNameLen-len(suffix) {
    		logPath = logPath[:ext4MaxFileNameLen-len(suffix)]
    	}
    	return filepath.Join(containerLogsDir, logPath+suffix)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_mutator.txt

    import (
    	"flag"
    	"fmt"
    	"os"
    	"testing"
    )
    
    var (
    	logPath = flag.String("log", "", "path to log file")
    	logFile *os.File
    )
    
    func TestMain(m *testing.M) {
    	flag.Parse()
    	var err error
    	logFile, err = os.OpenFile(*logPath, os.O_RDWR|os.O_CREATE|os.O_EXCL, 0666)
    	if os.IsExist(err) {
    		*logPath += ".worker"
    		logFile, err = os.OpenFile(*logPath, os.O_RDWR|os.O_CREATE|os.O_EXCL, 0666)
    	}
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. pkg/routes/logs.go

    func (l Logs) Install(c *restful.Container) {
    	// use restful: ws.Route(ws.GET("/logs/{logpath:*}").To(fileHandler))
    	// See github.com/emicklei/go-restful/blob/master/examples/static/restful-serve-static.go
    	ws := new(restful.WebService)
    	ws.Path("/logs")
    	ws.Doc("get log files")
    	ws.Route(ws.GET("/{logpath:*}").To(logFileHandler).Param(ws.PathParameter("logpath", "path to the log").DataType("string")))
    	ws.Route(ws.GET("/").To(logFileListHandler))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 21 16:25:48 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. pkg/kubelet/logs/container_log_manager_test.go

    				Id:      "container-not-need-rotate",
    				State:   runtimeapi.ContainerState_CONTAINER_RUNNING,
    				LogPath: filepath.Join(dir, testLogs[0]),
    			},
    		},
    		{
    			ContainerStatus: runtimeapi.ContainerStatus{
    				Id:      "container-need-rotate",
    				State:   runtimeapi.ContainerState_CONTAINER_RUNNING,
    				LogPath: filepath.Join(dir, testLogs[1]),
    			},
    		},
    		{
    			ContainerStatus: runtimeapi.ContainerStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppDependenciesIntegrationTest.groovy

                    api 'org.gradle.cpp:log:latest.integration'
                }
            """
        }
    
        private writeLogLibrary(TestFile dir = testDirectory) {
            def logPath = dir.file("log")
            app.loggerLib.writeToProject(logPath)
            logPath.file("build.gradle") << """
                apply plugin: 'cpp-library'
                group = 'org.gradle.cpp'
                version = '1.0'
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. pkg/kubelet/server/auth_test.go

    		"/healthz/log":                        "proxy",
    		"/healthz/ping":                       "proxy",
    		"/healthz/syncloop":                   "proxy",
    		"/logs/":                              "log",
    		"/logs/{logpath:*}":                   "log",
    		"/metrics":                            "metrics",
    		"/metrics/cadvisor":                   "metrics",
    		"/metrics/probes":                     "metrics",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 18:09:38 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top