Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 162 for exploration (0.15 sec)

  1. cmd/config-current.go

    			Description: "manage Browser HTTP specific features, such as Security headers, etc.",
    			Optional:    true,
    		},
    		config.HelpKV{
    			Key:         config.ILMSubSys,
    			Description: "manage ILM settings for expiration and transition workers",
    			Optional:    true,
    		},
    	}
    
    	if globalIsErasure {
    		helpSubSys = append(helpSubSys, config.HelpKV{
    			Key:         config.StorageClassSubSys,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 28.5K bytes
    - Viewed (0)
  2. cmd/data-scanner.go

    				remainingVersions--
    				size = 0
    			}
    			applyExpiryRule(event, lcEventSrc_Scanner, oi)
    
    		case lifecycle.DeleteVersionAction: // noncurrent versions expiration
    			opts := objOpts[idx]
    			remainingVersions--
    			size = 0
    			toDel = append(toDel, ObjectToDelete{
    				ObjectV: ObjectV{
    					ObjectName: opts.Name,
    					VersionID:  opts.VersionID,
    				},
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 45.5K bytes
    - Viewed (0)
  3. docs/smb3-features/02-persistent-handles-design.md

                new byte[16],
                HandleType.DURABLE_V2,
                1000,  // 1 second timeout
                null
            );
            
            assertFalse(info.isExpired());
            
            // Wait for expiration
            Thread.sleep(1500);
            assertTrue(info.isExpired());
            
            // Persistent handles don't expire
            HandleInfo persistent = new HandleInfo(
                "/test/file2.txt",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        threadPool.awaitTermination(300, SECONDS);
      }
    
      /**
       * Calls get() repeatedly from many different threads, and tests that all of the removed entries
       * (removed because of size limits or expiration) trigger appropriate removal notifications.
       */
      @GwtIncompatible // QueuingRemovalListener
    
      public void testRemovalNotification_get_basher() throws InterruptedException {
        int nTasks = 1000;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        threadPool.awaitTermination(300, SECONDS);
      }
    
      /**
       * Calls get() repeatedly from many different threads, and tests that all of the removed entries
       * (removed because of size limits or expiration) trigger appropriate removal notifications.
       */
      @GwtIncompatible // QueuingRemovalListener
    
      public void testRemovalNotification_get_basher() throws InterruptedException {
        int nTasks = 1000;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25K bytes
    - Viewed (0)
  6. cmd/object-api-listobjects_test.go

    	}
    
    	oneWeekAgo := time.Now().Add(-7 * 24 * time.Hour)
    
    	lifecycleBytes := []byte(`
    <LifecycleConfiguration>
    	<Rule>
    		<Status>Enabled</Status>
    		<Expiration>
    			<Days>1</Days>
    		</Expiration>
    	</Rule>
    </LifecycleConfiguration>
    `)
    
    	lifecycleConfig, err := lifecycle.ParseLifecycleConfig(bytes.NewReader(lifecycleBytes))
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 76.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTransportImpl.java

                DfsReferralDataImpl cur = null;
                final long expiration = System.currentTimeMillis() + ctx.getConfig().getDfsTtl() * 1000;
                final Referral[] refs = dfsResp.getReferrals();
                for (int di = 0; di < rn; di++) {
                    final DfsReferralDataImpl dr = DfsReferralDataImpl.fromReferral(refs[di], path, expiration, dfsResp.getPathConsumed());
                    dr.setDomain(targetDomain);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.33.md

    - kube-apiserver: `--service-account-max-token-expiration` can now be used in combination with an external token signer `--service-account-signing-endpoint`, as long as the `--service-account-max-token-expiration` is not longer than the external token signer's max expiration. ([#129816](https://github.com/kubernetes/kubernetes/pull/129816), [@sambdavidson](https://github.com/sambdavidson)) [SIG API Machinery...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:46:23 UTC 2025
    - 294.3K bytes
    - Viewed (0)
  9. src/main/resources/fess_config.properties

    index.field.favorite_count=favorite_count
    # Field name for click count in the index.
    index.field.click_count=click_count
    # Field name for config ID in the index.
    index.field.config_id=config_id
    # Field name for expiration date in the index.
    index.field.expires=expires
    # Field name for URL in the index.
    index.field.url=url
    # Field name for document ID in the index.
    index.field.doc_id=doc_id
    # Field name for internal ID in the index.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/math/LongMath.java

      // Whenever both tests are cheap and functional, it's faster to use &, | instead of &&, ||
      @SuppressWarnings("ShortCircuitBoolean")
      public static long saturatedMultiply(long a, long b) {
        // see checkedMultiply for explanation
        int leadingZeros =
            Long.numberOfLeadingZeros(a)
                + Long.numberOfLeadingZeros(~a)
                + Long.numberOfLeadingZeros(b)
                + Long.numberOfLeadingZeros(~b);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
Back to top