Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for precision (0.33 sec)

  1. cmd/object-handlers-common.go

    	return false
    }
    
    // returns true if object was modified after givenTime.
    func ifModifiedSince(objTime time.Time, givenTime time.Time) bool {
    	// The Date-Modified header truncates sub-second precision, so
    	// use mtime < t+1s instead of mtime <= t to check for unmodified.
    	return objTime.After(givenTime.Add(1 * time.Second))
    }
    
    // canonicalizeETag returns ETag with leading and trailing double-quotes removed,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server_test.go

    	tests := []struct {
    		name             string
    		customHost       string
    		discoveryAddress string
    		revision         string
    		sans             []string
    	}{
    		{
    			name:             "no customHost",
    			customHost:       "",
    			discoveryAddress: "istiod.istio-system.svc.cluster.local",
    			revision:         "default",
    			sans: []string{
    				"istio-pilot.istio-system.svc",
    				"istiod-remote.istio-system.svc",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crdclient/client.go

    	// Note: this must be a subset of the schemas defined in the codegen
    	schemas collection.Schemas
    
    	// domainSuffix for the config metadata
    	domainSuffix string
    
    	// revision for this control plane instance. We will only read configs that match this revision.
    	revision string
    
    	// kinds keeps track of all cache handlers for known types
    	kinds   map[config.GroupVersionKind]kclient.Untyped
    	kindsMu sync.RWMutex
    	queue   queue.Instance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. cmd/bucket-replication-utils.go

    	d := replicateTargetDecision{
    		Replicate:   replicate,
    		Synchronous: sync,
    		Arn:         arn,
    	}
    	return d
    }
    
    // ReplicateDecision represents replication decision for each target
    type ReplicateDecision struct {
    	targetsMap map[string]replicateTargetDecision
    }
    
    // ReplicateAny returns true if at least one target qualifies for replication
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server.go

    	// In some conditions, pilot address for sds is different from other xds,
    	// like multi-cluster primary-remote mode with revision.
    	if args.Revision != "" && args.Revision != "default" {
    		knownHosts = append(knownHosts, "istiod"+"-"+args.Revision)
    	}
    	knownSans := make([]string, 0, 2*len(knownHosts))
    	for _, altName := range knownHosts {
    		knownSans = append(knownSans,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. cni/pkg/cmd/root.go

    			ambientAgent, err := nodeagent.NewServer(ctx, watchServerReady, cfg.InstallConfig.CNIEventAddress,
    				nodeagent.AmbientArgs{
    					SystemNamespace: nodeagent.SystemNamespace,
    					Revision:        nodeagent.Revision,
    					ServerSocket:    cfg.InstallConfig.ZtunnelUDSAddress,
    					DNSCapture:      cfg.InstallConfig.AmbientDNSCapture,
    					EnableIPv6:      cfg.InstallConfig.AmbientIPv6,
    				})
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

     * domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/test/tck-jsr166e/AtomicDoubleArrayTest.java?revision=1.13
     * (Modified to adapt to guava coding conventions)
     */
    
    package com.google.common.util.concurrent;
    
    import static org.junit.Assert.assertThrows;
    
    import com.google.common.annotations.GwtIncompatible;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    					b.Errorf("Unexpected List error: %v", err)
    				}
    				listObject := list.(*examplev1.PodList)
    				if originalRevision != listObject.GetResourceVersion() {
    					b.Fatalf("original revision (%s) did not match final revision after linearized reads (%s)", originalRevision, listObject.GetResourceVersion())
    				}
    				if len(listObject.Items) != tc.expectNum {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/Striped64.java

     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/Striped64.java?revision=1.9
     */
    
    package com.google.common.hash;
    
    import com.google.common.annotations.GwtIncompatible;
    import java.util.Random;
    import javax.annotation.CheckForNull;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/Striped64.java

     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/Striped64.java?revision=1.9
     */
    
    package com.google.common.hash;
    
    import com.google.common.annotations.GwtIncompatible;
    import java.util.Random;
    import javax.annotation.CheckForNull;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top