Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,331 for logb (0.12 sec)

  1. src/main/java/org/codelibs/core/log/JulLoggerAdapter.java

        }
    
        @Override
        public void info(final String message, final Throwable t) {
            logger.logp(Level.INFO, sourceClass, null, message, t);
        }
    
        @Override
        public boolean isDebugEnabled() {
            return logger.isLoggable(Level.FINE);
        }
    
        @Override
        public void debug(final String message) {
            logger.logp(Level.FINE, sourceClass, null, message);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. docs/contribute/debug_logging.md

    OkHttpDebugLogging.enableHttp2()
    OkHttpDebugLogging.enableTaskRunner()
    ```
    
    ### Activating on Android
    
    ```
    $ adb shell setprop log.tag.okhttp.Http2 DEBUG
    $ adb shell setprop log.tag.okhttp.TaskRunner DEBUG
    $ adb logcat '*:E' 'okhttp.Http2:D' 'okhttp.TaskRunner:D'
    ```
    
    ### HTTP/2 Frame Logging
    
    This logs inbound (`<<`) and outbound (`>>`) frames for HTTP/2 connections.
    
    ```
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. src/main/resources/log4j2.xml

    <Configuration status="WARN">
    
    	<Properties>
    		<Property name="domain.name" value="${sys:fess.log.name:-fess}" />
    		<Property name="log.level" value="${sys:fess.log.level:-debug}" />
    		<Property name="root.log.level" value="${sys:fess.log.level:-info}" />
    		<Property name="log.pattern" value="%d [%t] %-5p %msg%n" />
    		<Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" />
    		<Property name="backup.date.suffix" value="_%d{yyyyMMdd}" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 20 13:17:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/encoding/csv/fuzz_test.go

    		buf := new(bytes.Buffer)
    
    		t.Logf("input = %q", in)
    		for _, tt := range []Reader{
    			{Comma: ','},
    			{Comma: ';'},
    			{Comma: '\t'},
    			{Comma: ',', LazyQuotes: true},
    			{Comma: ',', TrimLeadingSpace: true},
    			{Comma: ',', Comment: '#'},
    			{Comma: ',', Comment: ';'},
    		} {
    			t.Logf("With options:")
    			t.Logf("  Comma            = %q", tt.Comma)
    			t.Logf("  LazyQuotes       = %t", tt.LazyQuotes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 01:26:13 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. internal/grid/connection_test.go

    	// 1: Echo
    	errFatal(local.RegisterSingleHandler(handlerTest, func(payload []byte) ([]byte, *RemoteErr) {
    		t.Log("1: server payload: ", len(payload), "bytes.")
    		return append([]byte{}, payload...), nil
    	}))
    	// 2: Return as error
    	errFatal(local.RegisterSingleHandler(handlerTest2, func(payload []byte) ([]byte, *RemoteErr) {
    		t.Log("2: server payload: ", len(payload), "bytes.")
    		err := RemoteErr(payload)
    		return nil, &err
    	}))
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. releasenotes/notes/x-istio-log.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 25276
      - 27797
    releaseNotes:
     - |
       **Added** New command `istioctl experimental istiod log` to enable managing logging levels
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 09 15:17:08 UTC 2020
    - 226 bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    	utilpath "k8s.io/utils/path"
    	utilstrings "k8s.io/utils/strings"
    )
    
    // these interfaces are necessary to keep the structures private
    // and at the same time log them correctly in structured logs.
    var _ logr.Marshaler = podVolume{}
    var _ logr.Marshaler = reconstructedVolume{}
    var _ logr.Marshaler = globalVolumeInfo{}
    
    type podVolume struct {
    	podName        volumetypes.UniquePodName
    	volumeSpecName string
    	volumePath     string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_regexps.txt

    		b.Logf("LOG: Y running N=%d", b.N)
    	})
    }
    -- z_test.go --
    package x
    
    import "testing"
    
    func TestZ(t *testing.T) {
    	t.Logf("LOG: Z running")
    }
    
    func TestXX(t *testing.T) {
    	t.Logf("LOG: XX running")
    }
    
    func BenchmarkZ(b *testing.B) {
    	b.Logf("LOG: Z running N=%d", b.N)
    }
    
    func BenchmarkXX(b *testing.B) {
    	b.Logf("LOG: XX running N=%d", b.N)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  9. src/flag/example_func_test.go

    }
    
    func ExampleBoolFunc() {
    	fs := flag.NewFlagSet("ExampleBoolFunc", flag.ContinueOnError)
    	fs.SetOutput(os.Stdout)
    
    	fs.BoolFunc("log", "logs a dummy message", func(s string) error {
    		fmt.Println("dummy message:", s)
    		return nil
    	})
    	fs.Parse([]string{"-log"})
    	fs.Parse([]string{"-log=0"})
    
    	// Output:
    	// dummy message: true
    	// dummy message: 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:44:21 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/compatibility.go

    			writeFile(t, c.TestDataDirCurrentVersion, gvk, "", "pb", expectedProto)
    			t.Logf("wrote expected compatibility data... verify, commit, and rerun tests")
    		} else {
    			t.Logf("if the diff is expected because of a new type or a new field, re-run with %s=true to update the compatibility data", updateEnvVar)
    		}
    		return
    	}
    
    	emptyObj, err := c.Scheme.New(gvk)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 16:38:32 UTC 2023
    - 17.8K bytes
    - Viewed (0)
Back to top