Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,879 for forSet (0.31 sec)

  1. pkg/kube/inject/testdata/inject/format-duration.yaml

    John Howard <******@****.***> 1565919828 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 460 bytes
    - Viewed (0)
  2. operator/pkg/object/testdata/well-formed.yaml

    Xiaopeng Han <******@****.***> 1690313976 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 305 bytes
    - Viewed (0)
  3. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/unsupported-format.toml

    [metadata]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 38 bytes
    - Viewed (0)
  4. cmd/format-erasure_test.go

    func TestFormatErasureEmpty(t *testing.T) {
    	format := newFormatErasureV3(1, 16)
    	format.Erasure.DistributionAlgo = formatErasureVersionV2DistributionAlgoV1
    	formats := make([]*formatErasureV3, 16)
    
    	for j := 0; j < 16; j++ {
    		newFormat := format.Clone()
    		newFormat.Erasure.This = format.Erasure.Sets[0][j]
    		formats[j] = newFormat
    	}
    
    	// empty format to indicate disk not found, but this
    	// empty should return false.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 08:25:46 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v2-legacy.go

    			}
    		}
    		if val, ok := j.DeleteMarker.MetaSys[ReservedMetadataPrefixLower+ReplicaTimestamp]; ok {
    			tm, err := time.Parse(time.RFC3339Nano, string(val))
    			if err == nil {
    				j.DeleteMarker.MetaSys[ReservedMetadataPrefixLower+ReplicaTimestamp] = []byte(tm.UTC().Format(time.RFC3339Nano))
    			}
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 16:43:43 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. common/config/.golangci-format.yml

    Istio Automation <******@****.***> 1712286157 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 03:02:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. test/fixedbugs/bug467.go

    // compiledir
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Exported data for inlining could forget types of
    // local variables declared in inlinable bodies.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 293 bytes
    - Viewed (0)
  8. src/math/big/prime.go

    // Miller-Rabin primality test, using pseudo-randomly chosen bases.
    // If force2 is true, one of the rounds is forced to use base 2.
    // See Handbook of Applied Cryptography, p. 139, Algorithm 4.24.
    // The number n is known to be non-zero.
    func (n nat) probablyPrimeMillerRabin(reps int, force2 bool) bool {
    	nm1 := nat(nil).sub(n, natOne)
    	// determine q, k such that nm1 = q << k
    	k := nm1.trailingZeroBits()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/format-duration.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. pkg/kube/controllers/queue.go

    			q.queue.AddRateLimited(key)
    			// Return early, so we do not call Forget(), allowing the rate limiting to backoff
    			return true
    		}
    		q.log.Errorf("error handling %v, and retry budget exceeded: %v", formatKey(key), err)
    	}
    	// 'Forget indicates that an item is finished being retried.' - should be called whenever we do not want to backoff on this key.
    	q.queue.Forget(key)
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top