Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for logpath (0.1 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. 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)
  5. 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)
  6. 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)
  7. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            assertEquals("logs", logFile.getName());
            assertEquals("target", logFile.getParentFile().getName());
            try {
                System.setProperty("fess.log.path", "logpath");
                assertEquals("logpath", systemHelper.getLogFilePath());
            } finally {
                System.clearProperty("fess.log.path");
            }
        }
    
        public void test_getForumLink() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. pkg/kubelet/server/server.go

    		ws := new(restful.WebService)
    		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)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	legacySymlink := legacyLogSymlink(containerID, containerMeta.Name, sandboxMeta.Name,
    		sandboxMeta.Namespace)
    	containerLog := filepath.Join(podSandboxConfig.LogDirectory, containerConfig.LogPath)
    	// only create legacy symlink if containerLog path exists (or the error is not IsNotExist).
    	// Because if containerLog path does not exist, only dangling legacySymlink is created.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    		Labels:      newContainerLabels(container, pod),
    		Annotations: newContainerAnnotations(container, pod, restartCount, opts),
    		Devices:     makeDevices(opts),
    		Mounts:      m.makeMounts(opts, container),
    		LogPath:     containerLogsPath,
    		Stdin:       container.Stdin,
    		StdinOnce:   container.StdinOnce,
    		Tty:         container.TTY,
    		Linux:       l,
    		Envs:        envs,
    		CDIDevices:  makeCDIDevices(opts),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
Back to top