Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // 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
      optional bool allowWatchBookmarks = 9;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // 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
      optional bool allowWatchBookmarks = 9;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    // is stored at the end of a span for small objects and is unrolled at
    // runtime from type metadata for all larger objects. Objects without
    // pointers have neither a bitmap nor associated type metadata.
    //
    // Bits in all cases correspond to words in little-endian order.
    //
    // For small objects, if s is the mspan for the span starting at "start",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.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: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/c/c_api.h

    // * unsigned char is used for booleans (instead of the 'bool' type).
    //   In C++ bool is a keyword while in C99 bool is a macro defined
    //   in stdbool.h. It is possible for the two to be inconsistent.
    //   For example, neither the C99 nor the C++11 standard force a byte
    //   size on the bool type, so the macro defined in stdbool.h could
    //   be inconsistent with the bool keyword in C++. Thus, the use
    //   of stdbool.h is avoided and unsigned char is used instead.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  10. 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)
Back to top