Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for sec (0.01 sec)

  1. lib/wasm/wasm_exec.js

    					},
    
    					// func nanotime1() int64
    					"runtime.nanotime1": (sp) => {
    						sp >>>= 0;
    						setInt64(sp + 8, (timeOrigin + performance.now()) * 1000000);
    					},
    
    					// func walltime() (sec int64, nsec int32)
    					"runtime.walltime": (sp) => {
    						sp >>>= 0;
    						const msec = (new Date).getTime();
    						setInt64(sp + 8, msec / 1000);
    						this.mem.setInt32(sp + 16, (msec % 1000) * 1000000, true);
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Aug 30 19:15:21 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                        final long interval = updateInterval - updateTime;
                        if (interval > 0) {
                            // sleep
                            ThreadUtil.sleep(interval); // 10 sec (default)
                        }
    
                        systemHelper.calibrateCpuLoad();
                        systemHelper.waitForNoWaitingThreads();
    
                        intervalControlHelper.delayByRules();
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

                    byte[] clientChallenge = new byte[24];
                    RANDOM.nextBytes(clientChallenge);
                    java.util.Arrays.fill(clientChallenge, 8, 24, (byte)0x00);
    
    // NTLMv1 w/ NTLM2 session sec and key exch all been verified with a debug build of smbclient
    
                    byte[] responseKeyNT = NtlmPasswordAuthentication.nTOWFv1(password);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.9K bytes
    - Viewed (0)
  4. cmd/admin-handlers-site-replication.go

    		atomic.AddUint64(&globalSiteNetPerfRX.RX, uint64(n))
    		if err != nil && err != io.EOF && err != io.ErrUnexpectedEOF {
    			// If there is a disconnection before globalNetPerfMinDuration (we give a margin of error of 1 sec)
    			// would mean the network is not stable. Logging here will help in debugging network issues.
    			if time.Since(connectTime) < (globalNetPerfMinDuration - time.Second) {
    				adminLogIf(ctx, err)
    			}
    		}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. api/go1.3.txt

    pkg syscall (openbsd-386), type Termios struct, Oflag uint32
    pkg syscall (openbsd-386), type Termios struct, Ospeed int32
    pkg syscall (openbsd-386), type Timespec struct, Sec int64
    pkg syscall (openbsd-386), type Timeval struct, Sec int64
    pkg syscall (openbsd-386-cgo), const BIOCGRTIMEOUT = 1074545262
    pkg syscall (openbsd-386-cgo), const BIOCSRTIMEOUT = 2148287085
    pkg syscall (openbsd-386-cgo), const IPPROTO_DIVERT_INIT = 2
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_en.properties

    labels.search_result_status_over=Results <b>{2}</b><span class="hidden-phone"> -</span> <b>{3}</b> of about <b>{1}</b> for <b>{0}</b>
    labels.search_result_time=({0} sec)
    labels.prev_page=Prev
    labels.next_page=Next
    labels.did_not_match=Your search - <b>{0}</b> - did not match any documents.
    labels.search_title=Fess
    labels.search_popular_word_word=Popular Words:
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/IntsTest.java

            .isEqualTo(0xFFEEDDCC);
      }
    
      public void testByteArrayRoundTrips() {
        Random r = new Random(5);
        byte[] b = new byte[Ints.BYTES];
    
        // total overkill, but, it takes 0.1 sec so why not...
        for (int i = 0; i < 10000; i++) {
          int num = r.nextInt();
          assertThat(Ints.fromByteArray(Ints.toByteArray(num))).isEqualTo(num);
    
          r.nextBytes(b);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  8. docs/en/data/external_links.yml

    author: Sebastián Ramírez (tiangolo) author_link: https://twitter.com/tiangolo link: https://dev.to/tiangolo/build-a-web-api-from-scratch-with-fastapi-the-workshop-2ehe title: Build a web API from scratch with FastAPI - the workshop - author: Paul Sec author_link: https://twitter.com/PaulWebSec link: https://paulsec.github.io/posts/fastapi_plus_zeit_serverless_fu/ title: FastAPI + Zeit.co = 🚀 - author: cuongld2 author_link: https://dev.to/cuongld2 link: https://dev.to/cuongld2/build-simple-api-...
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Oct 24 18:39:34 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. cmd/metrics-v2.go

    		Help:      "Average replication transfer rate in bytes/sec",
    		Type:      gaugeMetric,
    	}
    }
    
    func getClusterReplMaxTransferRateMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: replicationSubsystem,
    		Name:      maxTransferRate,
    		Help:      "Maximum replication transfer rate in bytes/sec seen since server uptime",
    		Type:      gaugeMetric,
    	}
    }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_ru.properties

    labels.search=Поиск
    labels.search_result_status=Results <b>{2}</b><span class="hidden-phone"> -</span> <b>{3}</b> of <b>{1}</b> for <b>{0}</b>
    labels.search_result_time=({0} sec)
    labels.prev_page=Назад
    labels.next_page=Вперед
    labels.did_not_match=По запросу - <b>{0}</b> - совпадений не найдено.
    labels.search_title=Fess
    labels.search_popular_word_word=Популярные слова:
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 45.6K bytes
    - Viewed (0)
Back to top