Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 947 for logging (0.2 sec)

  1. tensorflow/c/eager/custom_device_testutil.cc

      *device = custom_device;
      LoggingDevice* logging_device = new LoggingDevice;
      logging_device->arrived_flag = arrived_flag;
      logging_device->executed_flag = executed_flag;
      logging_device->device_name = name;
      logging_device->underlying_device =
          "/job:localhost/replica:0/task:0/device:CPU:0";
      logging_device->strict_scope_placement = true;
      *device_info = reinterpret_cast<void*>(logging_device);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Mar 03 20:47:31 GMT 2021
    - 8.3K bytes
    - Viewed (0)
  2. .github/actions/notify-translations/app/main.py

        return response.data.updateDiscussionComment.comment
    
    
    if __name__ == "__main__":
        settings = Settings()
        if settings.input_debug:
            logging.basicConfig(level=logging.DEBUG)
        else:
            logging.basicConfig(level=logging.INFO)
        logging.debug(f"Using config: {settings.json()}")
        g = Github(settings.input_token.get_secret_value())
        repo = g.get_repo(settings.github_repository)
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Sep 27 23:01:46 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

    getLoggerForComponen(String); public void returnComponentLogge(String); protected String toMapKey(String, String); } org/codehaus/plexus/logging/LogEnabled.class package org.codehaus.plexus.logging; public abstract interface LogEnabled { public abstract void enableLogging(Logger); } org/codehaus/plexus/logging/Logger.class package org.codehaus.plexus.logging; public abstract interface Logger { public static final int LEVEL_DEBUG = 0; public static final int LEVEL_INFO = 1; public static final int LEVEL_WARN...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 35.3K bytes
    - Viewed (0)
  4. native-image-tests/src/main/resources/testlist.txt

    okhttp3.internal.ws.WebSocketExtensionsTest
    okhttp3.internal.ws.WebSocketHttpTest
    okhttp3.internal.ws.WebSocketReaderTest
    okhttp3.internal.ws.WebSocketWriterTest
    okhttp3.logging.HttpLoggingInterceptorTest
    okhttp3.logging.IsProbablyUtf8Test
    okhttp3.logging.LoggingEventListenerTest
    okhttp3.sse.internal.EventSourceHttpTest
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Thu May 11 14:48:57 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  5. istioctl/pkg/proxyconfig/proxyconfig_test.go

    			wantException:  true, // "istioctl proxy-config listeners invalid" should fail
    		},
    		{ // logging empty
    			args:           strings.Split("log", " "),
    			expectedString: "Error: log requires pod name or --selector",
    			wantException:  true, // "istioctl proxy-config logging empty" should fail
    		},
    		{ // logging invalid
    			args:           strings.Split("log invalid", " "),
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Apr 10 21:51:29 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  6. guava-testlib/test/com/google/common/testing/TestLogHandlerTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.testing;
    
    import java.util.logging.Level;
    import java.util.logging.LogRecord;
    import java.util.logging.Logger;
    import junit.framework.TestCase;
    
    /**
     * Unit test for {@link TestLogHandler}.
     *
     * @author kevinb
     */
    public class TestLogHandlerTest extends TestCase {
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 2.8K bytes
    - Viewed (0)
  7. android/guava-testlib/test/com/google/common/testing/TestLogHandlerTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.testing;
    
    import java.util.logging.Level;
    import java.util.logging.LogRecord;
    import java.util.logging.Logger;
    import junit.framework.TestCase;
    
    /**
     * Unit test for {@link TestLogHandler}.
     *
     * @author kevinb
     */
    public class TestLogHandlerTest extends TestCase {
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 2.8K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    getLoggerForComponen(String); public void returnComponentLogge(String); protected String toMapKey(String, String); } org/codehaus/plexus/logging/LogEnabled.class package org.codehaus.plexus.logging; public abstract interface LogEnabled { public abstract void enableLogging(Logger); } org/codehaus/plexus/logging/Logger.class package org.codehaus.plexus.logging; public abstract interface Logger { public static final int LEVEL_DEBUG = 0; public static final int LEVEL_INFO = 1; public static final int LEVEL_WARN...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 32.4K bytes
    - Viewed (0)
  9. okhttp-logging-interceptor/build.gradle.kts

      id("org.jetbrains.dokka")
      id("com.vanniktech.maven.publish.base")
      id("binary-compatibility-validator")
    }
    
    project.applyOsgi(
      "Export-Package: okhttp3.logging",
      "Automatic-Module-Name: okhttp3.logging",
      "Bundle-SymbolicName: com.squareup.okhttp3.logging"
    )
    
    dependencies {
      api(projects.okhttp)
      compileOnly(libs.findbugs.jsr305)
    
      testCompileOnly(libs.findbugs.jsr305)
      testImplementation(libs.junit)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Thu Jan 04 05:32:07 GMT 2024
    - 842 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/log/JclLoggerAdapter.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.log;
    
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    
    /**
     * (Jakarta) Commons Loggingのロガーを利用するアダプタです。
     *
     * @author koichik
     */
    class JclLoggerAdapter implements LoggerAdapter {
    
        protected final String sourceClass;
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.6K bytes
    - Viewed (0)
Back to top