Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,586 for better (2.44 sec)

  1. src/internal/types/testdata/fixedbugs/issue51472.go

            _ = x /* ERROR "empty type set" */ == x
    }
    
    // TODO(gri) The error message here should be better. See issue #51525.
    func _[T interface{comparable; ~int; ~string}](x T) {
            _ = x /* ERROR "empty type set" */ == x
    }
    
    // TODO(gri) The error message here should be better. See issue #51525.
    func _[T interface{~int; ~string}](x T) {
            _ = x /* ERROR "empty type set" */ == x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 22:48:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/SampleElements.java

      public static class Chars extends SampleElements<Character> {
        public Chars() {
          // elements aren't sorted, to better test SortedSet iteration ordering
          super('b', 'a', 'c', 'd', 'e');
        }
      }
    
      public static class Enums extends SampleElements<AnEnum> {
        public Enums() {
          // elements aren't sorted, to better test SortedSet iteration ordering
          super(AnEnum.B, AnEnum.A, AnEnum.C, AnEnum.D, AnEnum.E);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/Cast.java

    public abstract class Cast {
    
        /**
         * Casts the given object to the given type, providing a better error message than the default.
         *
         * The standard {@link Class#cast(Object)} method produces unsatisfactory error messages on some platforms
         * when it fails. All this method does is provide a better, consistent, error message.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/SampleElements.java

      public static class Chars extends SampleElements<Character> {
        public Chars() {
          // elements aren't sorted, to better test SortedSet iteration ordering
          super('b', 'a', 'c', 'd', 'e');
        }
      }
    
      public static class Enums extends SampleElements<AnEnum> {
        public Enums() {
          // elements aren't sorted, to better test SortedSet iteration ordering
          super(AnEnum.B, AnEnum.A, AnEnum.C, AnEnum.D, AnEnum.E);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. docs/en/docs/help-fastapi.md

    * Then check if the question (the vast majority are questions) is **clear**.
    
    * In many cases the question asked is about an imaginary solution from the user, but there might be a **better** one. If you can understand the problem and use case better, you might be able to suggest a better **alternative solution**.
    
    * If you can't understand the question, ask for more **details**.
    
    ### Reproduce the problem
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/transforms/passes.h

        const TacModule* module);
    
    // Create an instance of the RaiseTargetSubgraphsPass. If `skip_raise_cpu_ops`,
    // we skip clustering for CPU ops for better clustering of ops running on other
    // ML accelerators. When `ignore_inference_type` is set to true, the inference
    // types are set to "NOT_CARE" for better clustering.
    std::unique_ptr<OperationPass<ModuleOp>> CreateRaiseTargetSubgraphsPass(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/PublishArtifactLocalArtifactMetadataCodec.kt

     *
     * A better change would be to split an immutable id type out of PublishArtifactLocalArtifactMetadata (or reuse one of the existing
     * implementations). However, the Eclipse tooling model builder assumes that the id and metadata objects are the same and also that
     * the metadata object provides access to the backing PublishArtifact. This makes the better change too large to undertake at this point,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/scope.go

    }
    
    // It would be better to implement this function in topologymanager instead of scope
    // but topologymanager do not track mapping anymore
    func (s *scope) AddContainer(pod *v1.Pod, container *v1.Container, containerID string) {
    	s.mutex.Lock()
    	defer s.mutex.Unlock()
    
    	s.podMap.Add(string(pod.UID), container.Name, containerID)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue45985.go

    package issue45985
    
    func app[S interface{ ~[]T }, T any](s S, e T) S {
    	return append(s, e)
    }
    
    func _() {
    	_ = app /* ERROR "S (type int) does not satisfy interface{~[]T}" */ [int] // TODO(gri) better error message
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 22:48:09 UTC 2023
    - 377 bytes
    - Viewed (0)
  10. build-logic/documentation/src/test/groovy/gradlebuild/docs/FindBrokenInternalLinksTest.groovy

            """
    
            when:
            run('checkDeadInternalLinks').buildAndFail()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 28 22:01:54 UTC 2022
    - 7.8K bytes
    - Viewed (0)
Back to top