Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,782 for better (0.09 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors_test.go

    	).Error()
    	t.Logf("message: %v", s)
    	for _, part := range []string{
    		"foo", ErrorTypeInvalid.String(),
    		"Baz", "Qux", "Inner", "KV", "detail",
    		"1", "aoeu", "Billy", "2",
    		// "asdf", TODO: re-enable once we have a better nested printer
    	} {
    		if !strings.Contains(s, part) {
    			t.Errorf("error message did not contain expected part '%v'", part)
    		}
    	}
    }
    
    func TestToAggregate(t *testing.T) {
    	testCases := struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/contracts/firContractUtils.kt

                }
            else firFunctionSymbol.valueParameters[valueParameterReference.parameterIndex]
        )
    
        // Util function to avoid hard coding names of the classes. Type inference will do a better job figuring out the best type to cast to.
        // This visitor isn't type-safe anyway
        private inline fun <reified T> ConeContractDescriptionElement.accept() =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/universe.go

    		sameas := s.sameas32
    		if PtrSize == 8 {
    			sameas = s.sameas64
    		}
    		SimType[s.etype] = sameas
    
    		Types[s.etype] = defBasic(s.etype, BuiltinPkg, s.name)
    	}
    
    	// We create separate byte and rune types for better error messages
    	// rather than just creating type alias *Sym's for the uint8 and
    	// int32  Hence, (bytetype|runtype).Sym.isAlias() is false.
    	// TODO(gri) Should we get rid of this special case (at the cost
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts

             * The keys to the map parameter are used as the names of the files to which to apply the transform - there is only one entry.
             * It would perhaps be better to do this more selectively instead of applying this transform so broadly and having
             * it just no-op in most cases.
             */
            registerTransform(Minify::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/SingleFileTreeElementMatcher.java

        public SingleFileTreeElementMatcher(Stat stat) {
            this.stat = stat;
        }
    
        public boolean elementWithRelativePathMatches(Spec<FileTreeElement> filter, File element, String relativePathString) {
            // A better solution for output files would be to record the type of the output file and then using this type here instead of looking at the disk.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependencySuccessorsOnlyNodeSet.java

        public DependencySuccessorsOnlyNodeSet addDependency(Node node) {
            orderedDependencies.add(node);
            if (waitingFor == null) {
                waitingFor = new HashSet<>();
            }
            // It would be better to discard dependencies that have already completed at this point, rather than collecting them and checking their state later
            // However, it is not always known whether a dependency will be scheduled or not when it is added here.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/NtlmAuthenticator.groovy

        // There is absolutely no doubt that no one should ever on a map like that
        // and that a proper implementation of an NTLM authenticator shouldn't do this
        // but those are test fixtures and I couldn't find a better way to do this
        // without deeper understanding of the Jetty APIs. Feel free to provide an
        // alternate solution
        private final Map<HttpConnection, NtlmConnectionAuthentication> connections = [:]
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/sync/mutex.go

    // Package sync provides basic synchronization primitives such as mutual
    // exclusion locks. Other than the [Once] and [WaitGroup] types, most are intended
    // for use by low-level library routines. Higher-level synchronization is
    // better done via channels and communication.
    //
    // Values containing the types defined in this package should not be copied.
    package sync
    
    import (
    	"internal/race"
    	"sync/atomic"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. src/internal/bytealg/equal_arm64.s

    eq:
    	MOVD	$1, R0
    	RET
    
    // input:
    // R0: pointer a
    // R1: pointer b
    // R2: data len
    // at return: result in R0
    TEXT memeqbody<>(SB),NOSPLIT,$0
    	CMP	$1, R2
    	// handle 1-byte special case for better performance
    	BEQ	one
    	CMP	$16, R2
    	// handle specially if length < 16
    	BLO	tail
    	BIC	$0x3f, R2, R3
    	CBZ	R3, chunk16
    	// work with 64-byte chunks
    	ADD	R3, R0, R6	// end of chunks
    chunk64_loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 16:07:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/NativeCompiler.java

            super.execute(spec);
    
            return WorkResults.didWork(!transformedSpec.getSourceFiles().isEmpty());
        }
    
        // TODO(daniel): Should support in a better way multi file invocation.
        @Override
        protected Action<BuildOperationQueue<CommandLineToolInvocation>> newInvocationAction(final T spec, final List<String> genericArgs) {
            final File objectDir = spec.getObjectFileDir();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top