Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 319 for mood (0.07 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		//
    		//	XXLXOR	VS32,VS32,VS32
    		// 	MOVD	$len/32,R31
    		//	MOVD	R31,CTR
    		//	MOVD	$16,R31
    		//	loop:
    		//	STXVD2X VS32,(R0)(R3)
    		//	STXVD2X	VS32,(R31)(R3)
    		//	ADD	R3,32
    		//	BC	loop
    
    		// remaining doubleword clears generated as needed
    		//	MOVD	R0,(R3)
    		//	MOVD	R0,8(R3)
    		//	MOVD	R0,16(R3)
    		//	MOVD	R0,24(R3)
    
    		// one or more of these to clear remainder < 8 bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/UnitCodec.kt

    
    object UnitCodec : Codec<Unit> {
    
        override suspend fun WriteContext.encode(value: Unit) {
            // noop
        }
    
        override suspend fun ReadContext.decode() {
            // returns Unit instance under the hood
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

                            return "good";
                        }
    
                        public String getNotAnnotated() {
                            return null;
                        }
                    }
    
                    public static class NamedBean implements Named {
                        @Input
                        public String getGood() {
                            return "good";
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

    errorproneExtension.disabledChecks.addAll(
        // DISCUSS
        "EqualsGetClass", // Let's agree if we want to adopt Error Prone's idea of valid equals()
        "JdkObsolete", // Most of the checks are good, but we do not want to replace all LinkedLists without a good reason
    
        // NEVER
        "MissingSummary", // We have another mechanism to check Javadocs on public API
        "InjectOnConstructorOfAbstractClass", // We use abstract injection as a pattern
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. tests/integration/README.md

    case, just typing ```go test ./...``` should be sufficient to run tests.
    
    This guide walks through the basics of writing tests with the Istio test framework. For best
    practices, see [Writing Good Integration Tests](https://github.com/istio/istio/wiki/Writing-Good-Integration-Tests).
    
    ## Writing Tests
    
    The test framework is designed to work with standard go tooling and allows developers
    to write environment-agnostics tests in a high-level fashion.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/readdirent_getdirentries.go

    	// Final argument is (basep *uintptr) and the syscall doesn't take nil.
    	// 64 bits should be enough. (32 bits isn't even on 386). Since the
    	// actual system call is getdirentries64, 64 is a good guess.
    	// TODO(rsc): Can we use a single global basep for all calls?
    	var base = (*uintptr)(unsafe.Pointer(new(uint64)))
    	return Getdirentries(fd, buf, base)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 705 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ppc64/ssa.go

    		// for these instructions on power8.
    
    		// For sizes >= 64 generate a loop as follows:
    
    		// Set up loop counter in CTR, used by BC
    		//       XXLXOR VS32,VS32,VS32
    		//	 MOVD len/32,REG_TMP
    		//	 MOVD REG_TMP,CTR
    		//       MOVD $16,REG_TMP
    		//	 loop:
    		//	 STXVD2X VS32,(R0)(R20)
    		//	 STXVD2X VS32,(R31)(R20)
    		//	 ADD  $32,R20
    		//	 BC   16, 0, loop
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

                }
            """
            def module = mavenHttpRepo.module('org.foo', 'good').publish()
            server.authenticationScheme = AuthScheme.BASIC
            server.allowGetOrHead('/repo/org/foo/good/1.0/good-1.0.pom', 'foo', 'bar', module.pomFile)
            server.allowGetOrHead('/repo/org/foo/good/1.0/good-1.0.jar', 'foo', 'bar', module.artifactFile)
    
            when:
            succeeds 'resolve'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. test/codegen/comparisons.go

    }
    
    func cmp2(val string) bool {
    	var z string
    	// amd64:-".*memequal"
    	return val == z
    }
    
    func cmp3(val string) bool {
    	z := "food"
    	// amd64:-".*memequal"
    	return z == val
    }
    
    func cmp4(val string) bool {
    	z := "food"
    	// amd64:-".*memequal"
    	return val == z
    }
    
    func cmp5[T comparable](val T) bool {
    	var z T
    	// amd64:-".*memequal"
    	return z == val
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/build.gradle.kts

        id("gradlebuild.distribution.api-java")
    }
    
    description = """A problems description API
        |
        |This project provides base classes to describe problems and their
        |solutions, in a way that enforces the creation of good error messages.
        |
        |It's a stripped down version of the original code available
        |at https://github.com/melix/jdoctor/
    """.trimMargin()
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top