Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Ttl (0.06 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		if ttlFailDone {
    			mile("TTL")
    			return existing, nil
    		}
    		ttlFailDone = true
    		mile("TTLError")
    		return existing, fmt.Errorf("TTL fail")
    	}
    	ttlFailAlways := func(_ runtime.Object, existing uint64, _ bool) (uint64, error) {
    		mile("TTLError")
    		return existing, fmt.Errorf("TTL fail")
    	}
    
    	testCases := []struct {
    		name        string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    kind: DestinationRule
    metadata:
      name: %s
    spec:
      host: %s
      trafficPolicy:
        loadBalancer:
          consistentHash:
            httpCookie:
              name: session-cookie
              ttl: 3600s
    `, svcName, svcName)
    
    			cookieWithoutTTLDest := fmt.Sprintf(`
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: %s
    spec:
      host: %s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    		metric.VariableLabels[k] = v
    	}
    	for k, v := range m.Histogram {
    		metric.Histogram[k] = v
    	}
    	return metric
    }
    
    // Get - returns cached value always upton the configured TTL,
    // once the TTL expires "read()" registered function is called
    // to return the new values and updated.
    func (g *MetricsGroupV2) Get() (metrics []MetricV2) {
    	m, _ := g.metricsCache.Get()
    	if len(m) == 0 {
    		return []MetricV2{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	StringCount uint16
    	StringArray [1]*uint16
    }
    
    type DNSRecord struct {
    	Next     *DNSRecord
    	Name     *uint16
    	Type     uint16
    	Length   uint16
    	Dw       uint32
    	Ttl      uint32
    	Reserved uint32
    	Data     [40]byte
    }
    
    const (
    	TF_DISCONNECT         = 1
    	TF_REUSE_SOCKET       = 2
    	TF_WRITE_BEHIND       = 4
    	TF_USE_DEFAULT_WORKER = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    required: - maglev - required: - ringHash - required: - maglev properties: httpCookie: description: Hash based on HTTP cookie. properties: name: description: Name of the cookie. type: string path: description: Path to set for the cookie. type: string ttl: description: Lifetime of the cookie. type: string required: - name type: object httpHeaderName: description: Hash based on a specific HTTP header. type: string httpQueryParameterNa: description: Hash based on a specific HTTP query parameter. type:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    						MinimumRingSize: 1024,
    						HashKey: &networking.LoadBalancerSettings_ConsistentHashLB_HttpCookie{
    							HttpCookie: &networking.LoadBalancerSettings_ConsistentHashLB_HTTPCookie{
    								Name: "test",
    								Ttl:  &duration,
    							},
    						},
    					},
    				},
    			},
    			valid: true,
    		},
    
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    										HashKey: &networking.LoadBalancerSettings_ConsistentHashLB_HttpCookie{
    											HttpCookie: &networking.LoadBalancerSettings_ConsistentHashLB_HTTPCookie{
    												Name: "hash-cookie",
    												Ttl:  &durationpb.Duration{Nanos: 100},
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				}))
    
    			g.Expect(c.LbPolicy).To(Equal(cluster.Cluster_RING_HASH))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          // each region and the use of TensorList returned using YieldOp.
          if (auto while_region = llvm::dyn_cast<WhileRegionOp>(use.getOwner())) {
            DCOMMENT("\tTL WhileRegion");
            for (auto branch : while_region.getRegions())
              add_to_worklist(branch->getArgument(use.getOperandNumber()));
            continue;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top