Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 163 for logical (0.6 sec)

  1. src/time/time_test.go

    }{
    	{2011, 11, 6, 1, 0, 0, 0, Local, 1320566400},   // 1:00:00 PDT
    	{2011, 11, 6, 1, 59, 59, 0, Local, 1320569999}, // 1:59:59 PDT
    	{2011, 11, 6, 2, 0, 0, 0, Local, 1320573600},   // 2:00:00 PST
    
    	{2011, 3, 13, 1, 0, 0, 0, Local, 1300006800},   // 1:00:00 PST
    	{2011, 3, 13, 1, 59, 59, 0, Local, 1300010399}, // 1:59:59 PST
    	{2011, 3, 13, 3, 0, 0, 0, Local, 1300010400},   // 3:00:00 PDT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    	klog.V(3).InfoS("Endpoint cleanup", "endpointInfo", ep)
    	if !ep.IsLocal() && ep.refCount != nil {
    		*ep.refCount--
    
    		// Remove the remote hns endpoint, if no service is referring it
    		// Never delete a Local Endpoint. Local Endpoints are already created by other entities.
    		// Remove only remote endpoints created by this service
    		if *ep.refCount <= 0 && !ep.IsLocal() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. .teamcity/test-buckets.json

    					"plugins-java-base",
    					"build-cache",
    					"messaging",
    					"war",
    					"java-platform",
    					"build-profile",
    					"resources-gcs",
    					"ear",
    					"plugins-distribution",
    					"build-cache-local"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"composite-builds",
    					"declarative-dsl-core",
    					"problems",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Ignore configuration inputs sparingly, and only if they do not affect the tasks produced by the configuration logic.
    The support for these options will be removed in future releases.
    
    
    [[config_cache:testing]]
    == Testing your build logic
    
    The Gradle TestKit (a.k.a. just TestKit) is a library that aids in testing Gradle plugins and build logic generally.
    For general guidance on how to use TestKit, see the <<test_kit.adoc#test_kit,dedicated chapter>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context_test.go

    	ps.Mesh = env.Mesh()
    	ps.ServiceIndex.HostnameAndNamespace["svc1.default.cluster.local"] = map[string]*Service{"default": nil}
    	ps.ServiceIndex.HostnameAndNamespace["svc2.nosidecar.cluster.local"] = map[string]*Service{"nosidecar": nil}
    	ps.ServiceIndex.HostnameAndNamespace["svc3.istio-system.cluster.local"] = map[string]*Service{"istio-system": nil}
    
    	configStore := NewFakeStore()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route_test.go

    							Host: "example2.default.svc.cluster.local",
    							Port: &networking.PortSelector{
    								Number: 8484,
    							},
    						},
    					},
    				},
    			},
    			{
    				Name: "route 3",
    				Route: []*networking.HTTPRouteDestination{
    					{
    						Destination: &networking.Destination{
    							Host: "example1.default.svc.cluster.local",
    							Port: &networking.PortSelector{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  7. src/time/format.go

    		t.addSec(-int64(zoneOffset))
    
    		// Look for local zone with the given offset.
    		// If that zone was in effect at the given time, use it.
    		name, offset, _, _, _ := local.lookup(t.unixSec())
    		if offset == zoneOffset && (zoneName == "" || name == zoneName) {
    			t.setLoc(local)
    			return t, nil
    		}
    
    		// Otherwise create fake zone to record offset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. src/time/time.go

    }
    
    func unixTime(sec int64, nsec int32) Time {
    	return Time{uint64(nsec), sec + unixToInternal, Local}
    }
    
    // UTC returns t with the location set to UTC.
    func (t Time) UTC() Time {
    	t.setLoc(&utcLoc)
    	return t
    }
    
    // Local returns t with the location set to local time.
    func (t Time) Local() Time {
    	t.setLoc(Local)
    	return t
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry_logging_test.go

    			assert.Equal(t, first, second)
    		})
    	}
    }
    
    func TestBuildOpenTelemetryAccessLogConfig(t *testing.T) {
    	fakeCluster := "outbound|55680||otel-collector.monitoring.svc.cluster.local"
    	fakeAuthority := "otel-collector.monitoring.svc.cluster.local"
    	for _, tc := range []struct {
    		name        string
    		logName     string
    		clusterName string
    		hostname    string
    		body        string
    		labels      *structpb.Struct
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	localPreboundPVC1a  = makeTestPVC("local-prebound-pvc-1a", "1G", "", pvcPrebound, "local-pv-node1a", "1", &waitClass)
    	localPreboundPVC1b  = makeTestPVC("local-prebound-pvc-1b", "1G", "", pvcPrebound, "local-pv-node1b", "1", &waitClass)
    	localPreboundPVC2a  = makeTestPVC("local-prebound-pvc-2a", "1G", "", pvcPrebound, "local-pv-node2a", "1", &waitClass)
    
    	// PVCs for dynamic provisioning
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top