Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 71 for loggers (0.28 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails.
    	// If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced
    	// as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // See: https://bugs.openjdk.java.net/browse/JDK-8074773
        @SuppressWarnings("unused")
        Class<?> ensureLoaded = LockSupport.class;
    
        // Log after all static init is finished; if an installed logger uses any Futures methods, it
        // shouldn't break in cases where reflection is missing/broken.
        if (thrownAtomicReferenceFieldUpdaterFailure != null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // See: https://bugs.openjdk.java.net/browse/JDK-8074773
        @SuppressWarnings("unused")
        Class<?> ensureLoaded = LockSupport.class;
    
        // Log after all static init is finished; if an installed logger uses any Futures methods, it
        // shouldn't break in cases where reflection is missing/broken.
        if (thrownAtomicReferenceFieldUpdaterFailure != null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  4. pkg/proxy/winkernel/proxier.go

    	return metaproxier.NewMetaProxier(ipv4Proxier, ipv6Proxier), nil
    }
    
    // CleanupLeftovers removes all hns rules created by the Proxier
    // It returns true if an error was encountered. Errors are logged.
    func CleanupLeftovers() (encounteredError bool) {
    	// Delete all Hns Load Balancer Policies
    	newHcnImpl().DeleteAllHnsLoadBalancerPolicy()
    	// TODO
    	// Delete all Hns Remote endpoints
    
    	return encounteredError
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. src/main/webapp/css/font-awesome.min.css

    -tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{c...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    		Error:    func(err error) { t.Log(err) }, // don't exit after first error
    		Importer: imports,
    	}
    	makePkg := func(path, src string) {
    		imports[path], _ = conf.Check(path, []*syntax.File{mustParse(src)}, nil) // errors logged via conf.Error
    	}
    
    	const libSrc = `
    package a
    import "missing"
    const C1 = foo
    const C2 = missing.C
    `
    
    	const mainSrc = `
    package main
    import "a"
    var _ = a.C1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. src/main/webapp/css/admin/font-awesome.min.css

    -tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{c...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Component-base/logs: when compiled with Go >= 1.21, component-base will automatically configure the slog default logger together with initializing klog. ([#120696](https://github.com/kubernetes/kubernetes/pull/120696), [@pohly](https://github.com/pohly)) [SIG API Machinery, Architecture, Auth, CLI, Cloud Provider, Cluster Lifecycle, Instrumentation, Network, Storage...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/Futures.java

       * thrown during {@code Executor.execute} (e.g., a {@code RejectedExecutionException} or an
       * exception thrown by {@linkplain MoreExecutors#directExecutor direct execution}) will be caught
       * and logged.
       *
       * <p>Example:
       *
       * <pre>{@code
       * ListenableFuture<QueryResult> future = ...;
       * Executor e = ...
       * addCallback(future,
       *     new FutureCallback<QueryResult>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // because of (2).
      //
      // TODO(b/113100872): This can be fixed if the TensorFlow representation for
      // TensorArray and Stack on the XLA_{C|G}PU devices were the same in XLA; then
      // (2) would no longer hold.
    
      if (n.assigned_device_name().empty()) {
        *ignore = false;
        return absl::OkStatus();
      }
    
      TF_ASSIGN_OR_RETURN(
          const XlaOpRegistry::DeviceRegistration* registration,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top