Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 871 for Cint (0.07 sec)

  1. src/sort/gen_sort_variants.go

    	if {{Less "data" "b" "a"}} {
    		*swaps++
    		return b, a
    	}
    	return a, b
    }
    
    // median{{.FuncSuffix}} returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c.
    func median{{.FuncSuffix}}{{.TypeParam}}(data {{.DataType}}, a, b, c int, swaps *int {{.ExtraParam}}) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_function_lib.pyi

    class PyFunctionLibrary:
    
      # LINT.IfChange(save_exported_model)
      def save_exported_model(
          self,
          dst_saved_model_path: str,
          exported_model_serialized: bytes,
          src_saved_model_path: str,
          tags: set[str],
          serialized_signature_def_map: dict[str, bytes],
      ) -> Optional[bool]: ...
      # LINT.ThenChange()
    
      # LINT.IfChange(run_calibration)
      def run_calibration(
          self,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. security/pkg/pki/testdata/multilevelpki/ecc-int-cert.pem

    jacob-delgado <******@****.***> 1588995233 -0600
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 09 03:33:53 UTC 2020
    - 749 bytes
    - Viewed (0)
  4. maven-compat/src/test/resources/org/apache/maven/artifact/resolver/ArtifactResolverTest.xml

              <role-hint>default</role-hint>
              <field-name>container</field-name>
            </requirement>
            <requirement>
              <role>org.apache.maven.plugin.LegacySupport</role>
              <role-hint>default</role-hint>
              <field-name>legacySupport</field-name>
            </requirement>
            <requirement>
              <role>org.eclipse.aether.RepositorySystem</role>
              <role-hint>default</role-hint>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 30 20:43:28 UTC 2011
    - 2.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/dirent.go

    	case 1:
    		return uint64(b[0])
    	case 2:
    		_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    		return uint64(b[0]) | uint64(b[1])<<8
    	case 4:
    		_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
    		return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24
    	case 8:
    		_ = b[7] // bounds check hint to compiler; see golang.org/issue/14808
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. hack/golangci-hints.yaml

              #
              # Remember to clean the golangci-lint cache when changing the configuration and
              # running the verify-golangci-lint.sh script multiple times, otherwise
              # golangci-lint will report stale results:
              #    _output/local/bin/golangci-lint cache clean
              
              # At this point we don't enforce the usage structured logging calls except in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. maven-builder-support/src/main/java/org/apache/maven/building/Problem.java

         * creator of the problem, the general expectation is that the hint provides sufficient information to the user to
         * track the problem back to its origin. A concrete example for such a source hint can be the file path or URL from
         * which the settings were read.
         *
         * @return The hint about the source of the problem or an empty string if unknown, never {@code null}.
         */
        String getSource();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/topology_manager.go

    	// concrete resource allocations in terms of NUMA locality hints. Each hint
    	// is optionally marked "preferred" and indicates the set of NUMA nodes
    	// involved in the hypothetical allocation. The topology manager calls
    	// this function for each hint provider, and merges the hints to produce
    	// a consensus "best" hint. The hint providers may subsequently query the
    	// topology manager to influence actual resource assignment.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 12:43:16 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/Origin.java

        }
    
        public abstract void handleInvalidValue(String value, String hint);
    
        public void handleInvalidValue(String value) {
            handleInvalidValue(value, null);
        }
    
        String hintMessage(String hint) {
            if (TextUtil.isBlank(hint)) {
                return "";
            }
            return String.format(" (%s)", hint);
        }
    
        private static class GradlePropertyOrigin extends Origin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. hack/verify-shellcheck.sh

    # disabled lints
    disabled=(
      # this lint disallows non-constant source, which we use extensively without
      # any known bugs
      1090
      # this lint warns when shellcheck cannot find a sourced file
      # this wouldn't be a bad idea to warn on, but it fails on lots of path
      # dependent sourcing, so just disable enforcing it
      1091
      # this lint prefers command -v to which, they are not the same
      2230
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top