Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for logErrs (0.14 sec)

  1. src/time/tick_test.go

    			continue
    		default:
    			// ok
    		}
    
    		// Test passed, so all done.
    		if len(errs) > 0 {
    			t.Logf("saw %d errors, ignoring to avoid flakiness", len(errs))
    			logErrs()
    		}
    
    		return
    	}
    
    	t.Errorf("saw %d errors", len(errs))
    	logErrs()
    }
    
    // Issue 21874
    func TestTickerStopWithDirectInitialization(t *testing.T) {
    	c := make(chan Time)
    	tk := &Ticker{C: c}
    	tk.Stop()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. src/time/sleep_test.go

    			continue
    		}
    
    		// Test passed, so all done.
    		if len(errs) > 0 {
    			t.Logf("saw %d errors, ignoring to avoid flakiness", len(errs))
    			logErrs()
    		}
    
    		return
    	}
    
    	t.Errorf("saw %d errors", len(errs))
    	logErrs()
    }
    
    func TestAfterQueuing(t *testing.T) {
    	t.Run("impl=chan", func(t *testing.T) {
    		testAfterQueuing(t, After)
    	})
    	t.Run("impl=func", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerContext.java

        }
    
        @Override
        public Logger getLogger(String name) {
            Logger logger = loggers.get(name);
            if (logger != null) {
                return logger;
            }
    
            logger = loggers.putIfAbsent(name, new OutputEventListenerBackedLogger(name, this, clock));
            return logger != null ? logger : loggers.get(name);
        }
    
        public void reset() {
            setLevel(DEFAULT_LOG_LEVEL);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/TestWorkerProgressListenerTest.groovy

            testWorkerProgressListener.testWorkerProgressLoggers.get(testEvent.progressLoggerDescription) == testWorkerProgressLogger
        }
    
        def "can register progress loggers for different test workers"() {
            def testWorkerProgressLogger1 = Mock(ProgressLogger)
            def testWorkerProgressLogger2 = Mock(ProgressLogger)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/log/Logger.java

            assertArgumentNotNull("clazz", clazz);
    
            if (!initialized) {
                initialize();
            }
            Logger logger = loggers.get(clazz);
            if (logger == null) {
                logger = new Logger(clazz);
                loggers.put(clazz, logger);
            }
            return logger;
        }
    
        /**
         * フォーマットされたメッセージ文字列を返します。
         *
         * @param messageCode
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. src/net/rpc/server.go

    		return errors.New("rpc: service already defined: " + sname)
    	}
    	return nil
    }
    
    // suitableMethods returns suitable Rpc methods of typ. It will log
    // errors if logErr is true.
    func suitableMethods(typ reflect.Type, logErr bool) map[string]*methodType {
    	methods := make(map[string]*methodType)
    	for m := 0; m < typ.NumMethod(); m++ {
    		method := typ.Method(m)
    		mtype := method.Type
    		mname := method.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

     istioctl ztunnel-config log
    
     # Update levels of the all loggers for a specific Ztunnel pod
     istioctl ztunnel-config log <pod-name[.namespace]> --level off
    
     # Update levels of the specified loggers for all Ztunnl pods
     istioctl ztunnel-config log --level access:debug,info
    
     # Reset levels of all the loggers to default value (warning)  for a specific Ztunnel pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. istioctl/pkg/admin/istiodconfig.go

      istioctl admin l istiod-5c868d8bdd-pmvgg
    
      # Update levels of the specified loggers.
      istioctl admin log --level ads:debug,authorization:debug
    
      # Retrieve information about istiod logging levels for a specified revision.
      istioctl admin log --revision v1
    
      # Reset levels of all the loggers to default value (info).
      istioctl admin log --reset
    `,
    		Aliases: []string{"l"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. istioctl/pkg/proxyconfig/proxyconfig.go

      istioctl proxy-config log <pod-name[.namespace]>
    
      # Update levels of the all loggers
      istioctl proxy-config log <pod-name[.namespace]> --level none
    
      # Update levels of the specified loggers.
      istioctl proxy-config log <pod-name[.namespace]> --level http:debug,redis:debug
    
      # Reset levels of all the loggers to default value (warning).
      istioctl proxy-config log <pod-name[.namespace]> -r
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  10. internal/logger/target/http/http.go

    )
    
    const (
    	// Timeout for the webhook http call
    	webhookCallTimeout = 3 * time.Second
    
    	// maxWorkers is the maximum number of concurrent http loggers
    	maxWorkers = 16
    
    	// maxWorkers is the maximum number of concurrent batch http loggers
    	maxWorkersWithBatchEvents = 4
    
    	// the suffix for the configured queue dir where the logs will be persisted.
    	httpLoggerExtension = ".http.log"
    )
    
    const (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top