Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for seem (0.09 sec)

  1. src/cmd/internal/objabi/pkgspecial.go

    	// instrumentation when used from the runtime while keeping race
    	// instrumentation when used from user code. Somehow this doesn't seem to
    	// cause problems, though we may be skating on thin ice. See #61204.
    	"-internal/bytealg",
    }
    
    var noRaceFuncPkgs = []string{"sync", "sync/atomic", "internal/runtime/atomic"}
    
    var allowAsmABIPkgs = []string{
    	"runtime",
    	"reflect",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libexport/load.h

      // rather than adding abstraction on top.  We may later find we would like an
      // intermediate abstraction layer to make traversal easier, but for now the
      // extra complexity doesn't seem justified.  Regardless of what we choose,
      // that logic should live outside this class; this class should continue to
      // have the clearly-defined, singular responsibility of reading and parsing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. src/math/rand/v2/pcg.go

    	hi uint64
    	lo uint64
    }
    
    // NewPCG returns a new PCG seeded with the given values.
    func NewPCG(seed1, seed2 uint64) *PCG {
    	return &PCG{seed1, seed2}
    }
    
    // Seed resets the PCG to behave the same way as NewPCG(seed1, seed2).
    func (p *PCG) Seed(seed1, seed2 uint64) {
    	p.hi = seed1
    	p.lo = seed2
    }
    
    // MarshalBinary implements the encoding.BinaryMarshaler interface.
    func (p *PCG) MarshalBinary() ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/str/path.go

    	pv := filepath.VolumeName(prefix)
    
    	// Strip the volume from both paths before canonicalizing sv and pv:
    	// it's unlikely that strings.ToUpper will change the length of the string,
    	// but doesn't seem impossible.
    	s = s[len(sv):]
    	prefix = prefix[len(pv):]
    
    	// Always treat Windows volume names as case-insensitive, even though
    	// we don't treat the rest of the path as such.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. docs/hotfixes.md

    usually applies fine on the hotfix branch during backports as long it is self contained. There are situations however this may lead to conflicts and the patch will not cleanly apply. Conflicts might be trivial which can be resolved easily, when conflicts seem to be non-trivial or touches the part of the code-base the developer is not confident - to get additional clarity reach out to #hack on MinIOHQ slack channel. Hasty changes must be avoided, minor fixes and logs may be added to hotfix branches but this...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/feature_enhancement_request.yaml

        validations:
          required: true
    
      - type: markdown
        attributes:
          value: >
            Did you *actually* encounter the need for this enhancement in a real-world scenario, or does
            it just seem like a sensible behavior for the feature to have?
    
    
            Before we make significant changes to existing features in Guava, we really want to be sure
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/mvs/errors.go

    	return e.stack[len(e.stack)-1].m
    }
    
    func (e *BuildListError) Error() string {
    	b := &strings.Builder{}
    	stack := e.stack
    
    	// Don't print modules at the beginning of the chain without a
    	// version. These always seem to be the main module or a
    	// synthetic module ("target@").
    	for len(stack) > 0 && stack[0].m.Version == "" {
    		stack = stack[1:]
    	}
    
    	if len(stack) == 0 {
    		b.WriteString(e.Err.Error())
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 17:22:28 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

                append(uniqueProblemCount)
                append(" of which ")
                append(if (uniqueProblemCount == 1) "seems unique" else "seem unique")
            }
            append(".")
        }
    
        private
        fun buildSummaryReportLink(reportFile: File) =
            "See the complete report at ${clickableUrlFor(reportFile)}"
    
        private
        fun clickableUrlFor(file: File) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/RegularImmutableTable.java

      /** @throws IllegalArgumentException if {@code existingValue} is not null. */
      /*
       * We could have declared this method 'static' but the additional compile-time checks achieved by
       * referencing the type variables seem worthwhile.
       */
      final void checkNoDuplicate(R rowKey, C columnKey, @CheckForNull V existingValue, V newValue) {
        checkArgument(
            existingValue == null,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. pkg/test/framework/tools/featuresgen/cmd/root.go

    	if err != nil {
    		pwd, _ := os.Getwd()
    		fmt.Println("Error running featuresgen on file: ", pwd, "/", input)
    		panic(err)
    	}
    
    	constants := readVal(m, make([]string, 0))
    	// The parsing of the yaml file doesn't seem to happen in a consistent order. To avoid a different file every time 'make gen' is run, we sort the list.
    	sort.Strings(constants)
    	return strings.Join(constants, "\n")
    }
    
    func check(err error) {
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top