Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 444 for NOR (0.02 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.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
    - 6.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

     *       notice, this list of conditions and the following disclaimer in the
     *       documentation and/or other materials provided with the distribution.
     *    3. Neither the name of the copyright holder nor the names of its 
     *       contributors may be used to endorse or promote products derived from 
     *       this software without specific prior written permission.
     * 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. LICENSE

    the above 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 Hamcrest 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 "AS IS" AND ANY
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ContiguousSet.java

      /**
       * Returns a {@code ContiguousSet} containing the same values in the given domain {@linkplain
       * Range#contains contained} by the range.
       *
       * @throws IllegalArgumentException if neither range nor the domain has a lower bound, or if
       *     neither has an upper bound
       * @since 13.0
       */
      public static <C extends Comparable> ContiguousSet<C> create(
          Range<C> range, DiscreteDomain<C> domain) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/StatsTesting.java

       * passes through both {@code (x1, y1)} and {@code (x1 + xDelta, y1 + yDelta)}. Includes
       * assertions about all the public instance methods of {@link LinearTransformation} (on both
       * {@code transformation} and its inverse). Since the transformation is expected to be diagonal,
       * neither {@code xDelta} nor {@code yDelta} may be zero.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 09 22:49:56 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  6. src/cmd/distpack/archive.go

    		return nameLess(a.Files[i].Name, a.Files[j].Name)
    	})
    }
    
    // Clone returns a copy of the Archive.
    // Method calls like Add and Filter invoked on the copy do not affect the original,
    // nor do calls on the original affect the copy.
    func (a *Archive) Clone() *Archive {
    	b := &Archive{
    		Files: make([]File, len(a.Files)),
    	}
    	copy(b.Files, a.Files)
    	return b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 17:37:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/meta.go

    			return nil, PatchMeta{}, errors.New("unexpected slice of slice")
    		}
    	// If t is an pointer, get the underlying element.
    	// If the underlying element is neither an array nor a slice, the pointer is pointing to a slice,
    	// e.g. https://github.com/kubernetes/kubernetes/blob/bc22e206c79282487ea0bf5696d5ccec7e839a76/staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go#L2782-L2822
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. src/encoding/pem/pem.go

    // filter them out here.
    func removeSpacesAndTabs(data []byte) []byte {
    	if !bytes.ContainsAny(data, " \t") {
    		// Fast path; most base64 data within PEM contains newlines, but
    		// no spaces nor tabs. Skip the extra alloc and work.
    		return data
    	}
    	result := make([]byte, len(data))
    	n := 0
    
    	for _, b := range data {
    		if b == ' ' || b == '\t' {
    			continue
    		}
    		result[n] = b
    		n++
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/runtime/sigqueue.go

    //
    // When signal_recv is unblocked, it resets sig.Note and rechecks sig.mask.
    // If several sigsends and signal_recv execute concurrently, it can lead to
    // unnecessary rechecks of sig.mask, but it cannot lead to missed signals
    // nor deadlocks.
    
    //go:build !plan9
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	_ "unsafe" // for go:linkname
    )
    
    // sig handles communication between the signal handler and os/signal.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    // 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
    - 9.2K bytes
    - Viewed (0)
Back to top