Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for log (0.2 sec)

  1. src/main/java/jcifs/smb/SmbSessionImpl.java

         * 
         */
        public void release () {
            long usage = this.usageCount.decrementAndGet();
            if ( log.isTraceEnabled() ) {
                log.trace("Release session " + usage + " " + this);
            }
    
            if ( usage == 0 ) {
                if ( log.isDebugEnabled() ) {
                    log.debug("Usage dropped to zero, release connection " + this.transport);
                }
                synchronized ( this ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

                log.warn("Disconnecting transport while still in use " + this + ": " + this.sessions);
                wasInUse = true;
            }
    
            if ( log.isDebugEnabled() ) {
                log.debug("Disconnecting transport " + this);
            }
    
            try {
                if ( log.isTraceEnabled() ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  3. cmd/storage-datatypes_gen_test.go

    			b.Fatal(err)
    		}
    	}
    }
    
    func TestEncodeDecodeBaseOptions(t *testing.T) {
    	v := BaseOptions{}
    	var buf bytes.Buffer
    	msgp.Encode(&buf, &v)
    
    	m := v.Msgsize()
    	if buf.Len() > m {
    		t.Log("WARNING: TestEncodeDecodeBaseOptions Msgsize() is inaccurate")
    	}
    
    	vn := BaseOptions{}
    	err := msgp.Decode(&buf, &vn)
    	if err != nil {
    		t.Error(err)
    	}
    
    	buf.Reset()
    	msgp.Encode(&buf, &v)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 01 23:42:09 GMT 2024
    - 60.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

                    if ( !parent.exists() ) {
                        if ( log.isDebugEnabled() ) {
                            log.debug("Parent does not exist " + p);
                        }
                        parent.mkdirs();
                    }
                }
                catch ( SmbException e ) {
                    if ( log.isDebugEnabled() ) {
                        log.debug("Failed to ensure parent exists " + p, e);
                    }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            setSystemPropertyAsInt(Constants.PURGE_SEARCH_LOG_DAY_PROPERTY, value);
        }
    
        default int getPurgeSearchLogDay() {
            return getSystemPropertyAsInt(Constants.PURGE_SEARCH_LOG_DAY_PROPERTY, DfTypeUtil.toInteger(Constants.DEFAULT_PURGE_DAY));
        }
    
        default void setPurgeJobLogDay(final int value) {
            setSystemPropertyAsInt(Constants.PURGE_JOB_LOG_DAY_PROPERTY, value);
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(2, ((List<?>) pom.getValue("build/plugins[1]/executions")).size());
            assertEquals("log-string", pom.getValue("build/plugins[1]/executions[1]/goals[1]"));
            assertEquals("log-string", pom.getValue("build/plugins[1]/executions[2]/goals[1]"));
        }
    
        @Test
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        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) {
          log.get().log(Level.SEVERE, "UnsafeAtomicHelper is broken!", thrownUnsafeFailure);
          log.get()
              .log(
                  Level.SEVERE,
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsClickLogCQ.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.es.log.cbean.cq.bs;
    
    import java.time.LocalDateTime;
    import java.util.ArrayList;
    import java.util.Collection;
    
    import org.codelibs.fess.es.log.allcommon.EsAbstractConditionQuery;
    import org.codelibs.fess.es.log.cbean.cq.ClickLogCQ;
    import org.dbflute.cbean.ckey.ConditionKey;
    import org.opensearch.index.query.BoolQueryBuilder;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 63.5K bytes
    - Viewed (0)
  9. cmd/admin-handlers.go

    	}
    
    	keepAliveTicker := time.NewTicker(500 * time.Millisecond)
    	defer keepAliveTicker.Stop()
    	for {
    		select {
    		case log, ok := <-encodedCh:
    			if !ok {
    				return
    			}
    			_, err = w.Write(log)
    			if err != nil {
    				return
    			}
    			grid.PutByteBuffer(log)
    			if len(logCh) == 0 {
    				// Flush if nothing is queued
    				w.(http.Flusher).Flush()
    			}
    		case <-keepAliveTicker.C:
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
  10. cmd/iam.go

    	if isWatcher {
    		go func() {
    			ch := watcher.watch(ctx, iamConfigPrefix)
    			for event := range ch {
    				if err := sys.loadWatchedEvent(ctx, event); err != nil {
    					// we simply log errors
    					iamLogIf(ctx, fmt.Errorf("Failure in loading watch event: %v", err), logger.WarningKind)
    				}
    			}
    		}()
    	}
    
    	r := rand.New(rand.NewSource(time.Now().UnixNano()))
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 71.1K bytes
    - Viewed (1)
Back to top