Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for NOR (0.04 sec)

  1. pkg/proxy/ipvs/proxier.go

    	// externalIPRules adds iptables rules applies to Service ExternalIPs
    	externalIPRules := func(args []string) {
    		// Allow traffic for external IPs that does not come from a bridge (i.e. not from a container)
    		// nor from a local process to be forwarded to the service.
    		// This rule roughly translates to "all traffic from off-machine".
    		// This is imperfect in the face of network plugins that might not use a bridge, but we can revisit that later.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    		}
    		if def := typedef[t.Name]; def != nil {
    			if defgo, ok := def.Go.(*ast.Ident); ok {
    				switch defgo.Name {
    				case "complex64", "complex128":
    					// MSVC does not support the _Complex keyword
    					// nor the complex macro.
    					// Use GoComplex64 and GoComplex128 instead,
    					// which are typedef-ed to a compatible type.
    					// See go.dev/issues/36233.
    					return goTypesFixup(goTypes[defgo.Name])
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            def providerWithSideEffect = Providers.of(someValue()).withSideEffect(sideEffect)
            def property = providerWithNoValue()
    
            when:
            // `PropertyInternal` does not directly provide `convention` nor setter methods,
            // but all user-facing interfaces and their implementations do.
            property.convention(providerWithSideEffect)
            property."$setter"(someOtherValue())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  4. pkg/controller/endpoint/endpoints_controller_test.go

    		},
    		Subsets: []v1.EndpointSubset{{
    			Addresses: []v1.EndpointAddress{{IP: "6.7.8.9", NodeName: &emptyNodeName}},
    			Ports:     []v1.EndpointPort{{Port: 1000, Protocol: "TCP"}},
    		}},
    	})
    	// Neither pod nor service has trigger time, this should cause annotation to be cleared.
    	addPods(endpoints.podStore, ns, 1, 1, 0, ipv4only)
    	endpoints.serviceStore.Add(&v1.Service{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: ns},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    	for i := 0; i < 500 || time.Since(t0) < dur; i++ {
    		accum = f(accum)
    	}
    	*y = accum
    }
    
    var (
    	salt1 = 0
    	salt2 = 0
    )
    
    // The actual CPU hogging function.
    // Must not call other functions nor access heap/globals in the loop,
    // otherwise under race detector the samples will be in the race runtime.
    func cpuHog1(x int) int {
    	return cpuHog0(x, 1e5)
    }
    
    func cpuHog0(x, n int) int {
    	foo := x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. src/testing/testing.go

    		// atomic with respect to the output of other tests, so that we don't end up
    		// with confusing '=== NAME' lines in the middle of our '--- PASS' block.
    		// Neither humans nor cmd/test2json can parse those easily.
    		// (See https://go.dev/issue/40771.)
    		//
    		// If test2json is used, we never flush to parent tests,
    		// so that the json stream shows subtests as they finish.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    //     * Neither the name of Google Inc. nor the names of its
    // contributors may be used to endorse or promote products derived from
    // this software without specific prior written permission.
    //
    // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    //     * Neither the name of Google Inc. nor the names of its
    // contributors may be used to endorse or promote products derived from
    // this software without specific prior written permission.
    //
    // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// Servers that do not implement bookmarks may ignore this flag and
    	// bookmarks are sent at the server's discretion. Clients should not
    	// assume bookmarks are returned at any specific interval, nor may they
    	// assume the server will send any BOOKMARK event during a session.
    	// If this is not a watch, this field is ignored.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    //   [DONE] Lack of tests originally - added TestDeleteWithSuggestion.
    // - https://github.com/kubernetes/kubernetes/pull/40664
    //   [DONE] Irrelevant for delete, as Delete doesn't write data (nor compare it).
    // - https://github.com/kubernetes/kubernetes/pull/47703
    //   [DONE] Irrelevant for delete, because Delete doesn't persist data.
    // - https://github.com/kubernetes/kubernetes/pull/48394/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top