Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 162 for logical (0.66 sec)

  1. pilot/pkg/model/virtualservice_test.go

    	}
    	virtualServiceSpec5 := &networking.VirtualService{
    		Hosts:    []string{"test-svc.testns.svc.cluster.local"},
    		Gateways: []string{"mesh"},
    		Http: []*networking.HTTPRoute{
    			{
    				Route: []*networking.HTTPRouteDestination{
    					{
    						Destination: &networking.Destination{
    							Host: "test-svc.testn.svc.cluster.local",
    						},
    						Weight: 100,
    					},
    				},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	computeZoneStateFunc       func(nodeConditions []*v1.NodeCondition) (int, ZoneState)
    
    	knownNodeSet map[string]*v1.Node
    	// per Node map storing last observed health together with a local time when it was observed.
    	nodeHealthMap *nodeHealthMap
    
    	// evictorLock protects zonePodEvictor and zoneNoExecuteTainter.
    	evictorLock sync.Mutex
    	// workers that are responsible for tainting nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	SECURITY_AUTHENTICATED_USER_RID     = 0xb
    	SECURITY_RESTRICTED_CODE_RID        = 0xc
    	SECURITY_NT_NON_UNIQUE_RID          = 0x15
    )
    
    // Predefined domain-relative RIDs for local groups.
    // See https://msdn.microsoft.com/en-us/library/windows/desktop/aa379649(v=vs.85).aspx
    const (
    	DOMAIN_ALIAS_RID_ADMINS                         = 0x220
    	DOMAIN_ALIAS_RID_USERS                          = 0x221
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                if ("local".equals(repository.getId())) {
                    addViolation(
                            problems,
                            errOn31,
                            Version.V20,
                            prefix + "id",
                            null,
                            "must not be 'local'" + ", this identifier is reserved for the local repository"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Kube-controller-manager removes deprecated command flags: --volume-host-cidr-denylist and --volume-host-allow-local-loopback ([#124017](https://github.com/kubernetes/kubernetes/pull/124017), [@carlory](https://github.com/carlory)) [SIG API Machinery, Apps, Cloud Provider and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

     public:
      virtual ~ThreadLocalValueHolderBase() {}
    };
    
    // Called by pthread to delete thread-local data stored by
    // pthread_setspecific().
    extern "C" inline void DeleteThreadLocalValue(void* value_holder) {
      delete static_cast<ThreadLocalValueHolderBase*>(value_holder);
    }
    
    // Implements thread-local storage on pthreads-based systems.
    //
    //   // Thread 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                if ("local".equals(repository.getId())) {
                    addViolation(
                            problems,
                            errOn31,
                            Version.V20,
                            prefix + "id",
                            null,
                            "must not be 'local'" + ", this identifier is reserved for the local repository"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	nwmCurrentVer = 2
    
    	nwmTCPConnType     = 1
    	nwmGlobalStatsType = 14
    
    	// nwmFilter constants
    	nwmFilterLclAddrMask = 0x20000000 // Local address
    	nwmFilterSrcAddrMask = 0x20000000 // Source address
    	nwmFilterLclPortMask = 0x10000000 // Local port
    	nwmFilterSrcPortMask = 0x10000000 // Source port
    
    	// nwmConnEntry constants
    	nwmTCPStateClosed   = 1
    	nwmTCPStateListen   = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener.go

    	TCPOverAuto
    	// AutoOverHTTP represents incoming AUTO existing HTTP
    	AutoOverHTTP
    	// AutoOverTCP represents incoming AUTO existing TCP
    	AutoOverTCP
    )
    
    // A set of pre-allocated variables related to protocol sniffing logic for
    // propagating the ALPN to upstreams
    var (
    	// These are sniffed by the HTTP Inspector in the outbound listener
    	// We need to forward these ALPNs to upstream so that the upstream can
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. pkg/apis/core/v1/defaults_test.go

    				},
    			},
    		},
    		{
    			name:                          "must not set default internalTrafficPolicy when it's local",
    			expectedInternalTrafficPolicy: &local,
    			svc: v1.Service{
    				Spec: v1.ServiceSpec{
    					InternalTrafficPolicy: &local,
    				},
    			},
    		},
    	}
    	for _, test := range testCases {
    		t.Run(test.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top