Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 9,491 for one8 (0.05 sec)

  1. docs/bucket/lifecycle/README.md

    ```
    mc ilm rule add --noncurrent-expire-days 365 --prefix "user-uploads/" myminio/mydata
    ```
    
    ### 3.2 Automatic removal of noncurrent versions keeping only most recent ones after noncurrent days
    
    It is possible to configure automatic removal of older noncurrent versions keeping only the most recent `N` using `NewerNoncurrentVersions`.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    	// Merge all the import declarations into the first one.
    	var first *ast.GenDecl
    	for i := 0; i < len(f.Decls); i++ {
    		decl := f.Decls[i]
    		gen, ok := decl.(*ast.GenDecl)
    		if !ok || gen.Tok != token.IMPORT || declImports(gen, "C") {
    			continue
    		}
    		if first == nil {
    			first = gen
    			continue // Don't touch the first one.
    		}
    		// We now know there is more than one package in this import
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/classpath/GroovyDynamicDispatchingInterceptingTest.groovy

            thrown(RuntimeException)
    
            when: 'another closure is called that makes a potentially intercepted call, which should turn all closures "on the stack" into effectively instrumented ones'
            transformedInterceptedClosure()
    
            then: 'the closure that threw an exception should not have become effectively instrumented'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:44:54 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. android/guava-tests/benchmark/com/google/common/cache/LoadingCacheSingleThreadBenchmark.java

         * the uniformly-distributed random integer, then truncates any fractional
         * part, so higher integers would appear (in this case linearly) more often
         * than lower ones.
         */
        return (int) Math.pow(a, 1.0 / concentration);
      }
    
      @AfterExperiment
      void tearDown() {
        double req = requests.get();
        double hit = req - misses.get();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/io/src/test/groovy/org/gradle/internal/io/StreamByteBufferTest.groovy

            input.read() == 1
            input.read() == 2
            input.read() == 3
            input.read() == 255
            input.read() == -1
            input.close()
        }
    
        def "can write array and read one-by-one"() {
            given:
            def streamBuf = new StreamByteBuffer(32000)
            def output = streamBuf.getOutputStream()
            byte[] bytes = [(byte) 1, (byte) 2, (byte) 3] as byte[]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 13:06:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta1/types.go

    }
    
    type DeploymentStrategyType string
    
    const (
    	// Kill all existing pods before creating new ones.
    	RecreateDeploymentStrategyType DeploymentStrategyType = "Recreate"
    
    	// Replace the old ReplicaSets by new one using rolling update i.e gradually scale down the old ReplicaSets and scale up the new one.
    	RollingUpdateDeploymentStrategyType DeploymentStrategyType = "RollingUpdate"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  7. src/reflect/deepequal.go

    	// hard(v1, v2) needs to return true for at least one of the types in the cycle,
    	// and it's safe and valid to get Value's internal pointer.
    	hard := func(v1, v2 Value) bool {
    		switch v1.Kind() {
    		case Pointer:
    			if !v1.typ().Pointers() {
    				// not-in-heap pointers can't be cyclic.
    				// At least, all of our current uses of runtime/internal/sys.NotInHeap
    				// have that property. The runtime ones aren't cyclic (and we don't use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"template":                "Template describes the pods that will be created. The only allowed template.spec.restartPolicy value is \"Always\".",
    	"strategy":                "The deployment strategy to use to replace existing pods with new ones.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"template":                "Template describes the pods that will be created. The only allowed template.spec.restartPolicy value is \"Always\".",
    	"strategy":                "The deployment strategy to use to replace existing pods with new ones.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/concepts.md

    In this case, it would be better to get **one extra server** and run some processes on it so that they all have **enough RAM and CPU time**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top