Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 249 for pcount (0.36 sec)

  1. android/guava/src/com/google/common/base/CharMatcher.java

       *
       * <p>Counts 2 per supplementary character, such as for {@link #whitespace}().{@link #negate}().
       */
      public int countIn(CharSequence sequence) {
        int count = 0;
        for (int i = 0; i < sequence.length(); i++) {
          if (matches(sequence.charAt(i))) {
            count++;
          }
        }
        return count;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

        return simplified_ops[0];
      }
    
      // Simplify "A&~A=>False" and "A|~A=>True".
      absl::flat_hash_set<Predicate*> negated_ops;
      for (Predicate* op : simplified_ops) {
        if (negated_ops.count(op)) {
          // Simple case:
          //
          //   A & ~A & ... == False
          //   A | ~A | ... == True
          return is_and ? MakeFalse() : MakeTrue();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Adds a test part result to the list.
      void AddTestPartResult(const TestPartResult& test_part_result);
    
      // Returns the death test count.
      int death_test_count() const { return death_test_count_; }
    
      // Increments the death test count, returning the new count.
      int increment_death_test_count() { return ++death_test_count_; }
    
      // Clears the test part results.
      void ClearTestPartResults();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		}
    	}
    
    	resourceACountGot, err := store.Count(resourceA)
    	if err != nil {
    		t.Fatalf("store.Count failed: %v", err)
    	}
    
    	// count for resourceA should not include the objects for resourceB
    	// even though resourceA is a prefix of resourceB.
    	if int64(resourceACountExpected) != resourceACountGot {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/CharMatcher.java

       *
       * <p>Counts 2 per supplementary character, such as for {@link #whitespace}().{@link #negate}().
       */
      public int countIn(CharSequence sequence) {
        int count = 0;
        for (int i = 0; i < sequence.length(); i++) {
          if (matches(sequence.charAt(i))) {
            count++;
          }
        }
        return count;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Adds a test part result to the list.
      void AddTestPartResult(const TestPartResult& test_part_result);
    
      // Returns the death test count.
      int death_test_count() const { return death_test_count_; }
    
      // Increments the death test count, returning the new count.
      int increment_death_test_count() { return ++death_test_count_; }
    
      // Clears the test part results.
      void ClearTestPartResults();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    inline int FClose(FILE* fp) { return fclose(fp); }
    #if !GTEST_OS_WINDOWS_MOBILE
    inline int Read(int fd, void* buf, unsigned int count) {
      return static_cast<int>(read(fd, buf, count));
    }
    inline int Write(int fd, const void* buf, unsigned int count) {
      return static_cast<int>(write(fd, buf, count));
    }
    inline int Close(int fd) { return close(fd); }
    inline const char* StrError(int errnum) { return strerror(errnum); }
    #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    	// mark the pod as started
    	status.startedAt = p.clock.Now()
    	status.mergeLastUpdate(update.Options)
    
    	// If we are admitting the pod and it is new, record the count of containers
    	// TODO: We should probably move this into syncPod and add an execution count
    	// to the syncPod arguments, and this should be recorded on the first sync.
    	// Leaving it here complicates a particularly important loop.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    inline int FClose(FILE* fp) { return fclose(fp); }
    #if !GTEST_OS_WINDOWS_MOBILE
    inline int Read(int fd, void* buf, unsigned int count) {
      return static_cast<int>(read(fd, buf, count));
    }
    inline int Write(int fd, const void* buf, unsigned int count) {
      return static_cast<int>(write(fd, buf, count));
    }
    inline int Close(int fd) { return close(fd); }
    inline const char* StrError(int errnum) { return strerror(errnum); }
    #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            return copiedConfiguration;
        }
    
        private String getNameWithCopySuffix() {
            int count = copyCount.incrementAndGet();
            String copyName = name + "Copy";
            return count == 1
                ? copyName
                : copyName + count;
        }
    
        @Override
        public Configuration copy(Closure dependencySpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
Back to top