Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 220 for measure (0.26 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // even more welcome!).
    //
    // Note that it is possible that none of the GTEST_OS_* macros are defined.
    //
    // Macros indicating available Google Test features (defined to 1 if
    // the corresponding feature is supported; otherwise undefined):
    //   GTEST_HAS_COMBINE      - the Combine() function (for value-parameterized
    //                            tests)
    //   GTEST_HAS_DEATH_TEST   - death tests
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	kubetypes "k8s.io/apimachinery/pkg/types"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	remote "k8s.io/cri-client/pkg"
    	kubelettypes "k8s.io/kubelet/pkg/types"
    	"k8s.io/kubernetes/pkg/features"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.sendFrame().windowUpdate(3, 5)
        peer.acceptFrame() // DATA STREAM 3 "fghi"
        peer.play()
    
        // Play it back.
        val connection = connect(peer)
        connection.writePingAndAwaitPong() // Ensure the SETTINGS have been received.
        val stream = connection.newStream(headerEntries("a", "android"), true)
        val sink = stream.getSink().buffer()
        sink.writeUtf8("abcdefghi")
        sink.flush()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter_test.go

    			driver:                   "no_selinux",
    			seLinuxLabel:             "s0,c0",
    			volumeContext:            nil,
    			enableSELinuxFeatureGate: true,
    			expectedVolumeContext:    nil,
    		},
    		{
    			name:                     "should not include selinux mount option, if feature gate is enabled but CSIDriver does not exist",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    			accessModes:             []v1.PersistentVolumeAccessMode{v1.ReadWriteMany},
    			newContainerSELinuxOpts: fullOpts,
    			pluginSupportsSELinux:   true,
    			expectedContext:         "", // RWX volumes don't support SELinux
    		},
    		{
    			name:                       "RWX with plugin with SELinux with full context in pod and SELinuxMount feature enabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    	{clusterIPsCheckChain, filterOutputPostDNATChain, "ct state new"},
    }
    
    // ensureChain adds commands to tx to ensure that chain exists and doesn't contain
    // anything from before this transaction (using createdChains to ensure that we don't
    // Flush a chain more than once and lose *new* rules as well.)
    func ensureChain(chain string, tx *knftables.Transaction, createdChains sets.Set[string]) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			// ensure that watchcache is synchronized up to ResourceVersion X (using Get/List requests
    			// with NotOlderThan semantic), the further requests (even specifying earlier resource
    			// version) will also return the result synchronized to at least ResourceVersion X.
    			// By parallelizing test cases we ensure that the order in which test cases are defined
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    		return nil, fmt.Errorf("WinDSR feature gate not enabled")
    	}
    
    	err = hcnImpl.DsrSupported()
    	if isDSR && err != nil {
    		return nil, err
    	}
    
    	var sourceVip string
    	var hostMac string
    	if isOverlay(hnsNetworkInfo) {
    		if !utilfeature.DefaultFeatureGate.Enabled(kubefeatures.WinOverlay) {
    			return nil, fmt.Errorf("WinOverlay feature gate not enabled")
    		}
    		err = hcn.RemoteSubnetSupported()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    To mitigate the security risks and avoid integrating compromised dependencies in your project, Gradle supports _dependency verification_.
    
    --
    Dependency verification is, by nature, an inconvenient feature to use.
    It means that whenever you're going to update a dependency, builds are likely to fail.
    It means that merging branches are going to be harder because each branch can have different dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener.go

    	// listeners for these user specified ports, we will auto generate
    	// configs for other ports if and only if the sidecarConfig has an
    	// egressListener on wildcard port.
    	//
    	// Validation will ensure that we have utmost one wildcard egress listener
    	// occurring in the end
    
    	// Add listeners based on the config in the sidecar.EgressListeners if
    	// no Sidecar CRD is provided for this config namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top