Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for seem (0.35 sec)

  1. 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)
  2. 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)
  3. src/image/internal/imageutil/gen.go

    	// This function exists in the image/internal/imageutil package because it
    	// is needed by both the image/draw and image/jpeg packages, but it doesn't
    	// seem right for one of those two to depend on the other.
    	//
    	// Another option is to have this code be exported in the image package,
    	// but we'd need to make sure we're totally happy with the API (for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/maven/ApiMavenResolver.groovy

                }
            })
    
            // Setup local cache repository
            // We cannot reuse this repository between tests since it will contain artifacts from the test repo.
            // There does not seem to be a way to get Maven to avoid caching artifacts from the test repo.
            LocalRepository localRepo = new LocalRepository(localRepoDir)
            LocalRepositoryManager lrm = repoSystem.newLocalRepositoryManager(session, localRepo)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. src/os/timeout_test.go

    	switch runtime.GOOS {
    	case "openbsd", "netbsd":
    		// NetBSD and OpenBSD seem to be unable to reliably hit deadlines even when
    		// the absolute durations are long.
    		// In https://build.golang.org/log/c34f8685d020b98377dd4988cd38f0c5bd72267e,
    		// we observed that an openbsd-amd64-68 builder took 4.090948779s for a
    		// 2.983020682s timeout (37.1% overhead).
    		// (See https://go.dev/issue/50189 for further detail.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/common.py

      """
      if exported_names is None:
        exported_names = []
    
      # Make LOG(ERROR) in C++ code show up on the console.
      # All `Status` passed around in the C++ API seem to eventually go into
      # `LOG(ERROR)`, so this makes them print out by default.
      logging.set_stderrthreshold('error')
    
      # In true TF2 releases, v2 behavior is enabled as part of module __init__. In
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 23:49:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/dependencies/sub-dependencies.md

    But still, it is very powerful, and allows you to declare arbitrarily deeply nested dependency "graphs" (trees).
    
    !!! tip
        All this might not seem as useful with these simple examples.
    
        But you will see how useful it is in the chapters about **security**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top