Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for intRegs (0.17 sec)

  1. src/cmd/compile/internal/types/type.go

    	t.kind = underlying.kind
    	t.extra = underlying.extra
    	t.width = underlying.width
    	t.align = underlying.align
    	t.alg = underlying.alg
    	t.ptrBytes = underlying.ptrBytes
    	t.intRegs = underlying.intRegs
    	t.floatRegs = underlying.floatRegs
    	t.underlying = underlying.underlying
    
    	if underlying.NotInHeap() {
    		t.SetNotInHeap(true)
    	}
    	if underlying.HasShape() {
    		t.SetHasShape(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. prow/integ-suite-kind.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    
    # Usage: ./integ-suite-kind.sh TARGET
    # Example: ./integ-suite-kind.sh test.integration.pilot.kube.presubmit
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    # Exit immediately for non zero status
    set -e
    # Check unset variables
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    			}
    			if !bytes.Equal(gc, lt.gc) {
    				t.Errorf("funcLayout(%v, %v).gc=%v, want %v", lt.typ, lt.rcvr, gc, lt.gc)
    			}
    			if !bytes.Equal(inRegs, lt.inRegs) {
    				t.Errorf("funcLayout(%v, %v).inRegs=%v, want %v", lt.typ, lt.rcvr, inRegs, lt.inRegs)
    			}
    			if !bytes.Equal(outRegs, lt.outRegs) {
    				t.Errorf("funcLayout(%v, %v).outRegs=%v, want %v", lt.typ, lt.rcvr, outRegs, lt.outRegs)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/IntSetSerializer.java

    import it.unimi.dsi.fastutil.ints.IntIterator;
    import it.unimi.dsi.fastutil.ints.IntOpenHashSet;
    import it.unimi.dsi.fastutil.ints.IntSet;
    import it.unimi.dsi.fastutil.ints.IntSets;
    import org.gradle.internal.serialize.Decoder;
    import org.gradle.internal.serialize.Encoder;
    import org.gradle.internal.serialize.Serializer;
    
    import java.io.EOFException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

                        "-x", ":docs:platformTest",
                        "-x", ":docs:configCacheTest",
                        "-x", ":distributions-integ-tests:quickTest",
                        "-x", ":distributions-integ-tests:platformTest",
                        "-x", ":distributions-integ-tests:configCacheTest"
                    ) +
                    listOf(extraParameters) +
                    functionalTestParameters(os, arch) +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. .teamcity/test-buckets.json

    					"file-collections",
    					"file-watching",
    					"ide",
    					"ide-plugins",
    					"integ-test",
    					"internal-integ-testing",
    					"internal-performance-testing",
    					"ivy",
    					"java-platform",
    					"jvm-services",
    					"kotlin-dsl",
    					"kotlin-dsl-integ-tests",
    					"language-java",
    					"language-jvm",
    					"logging",
    					"maven",
    					"messaging",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassAnalysis.java

     */
    
    package org.gradle.api.internal.tasks.compile.incremental.deps;
    
    import com.google.common.collect.ImmutableSet;
    import it.unimi.dsi.fastutil.ints.IntSet;
    import it.unimi.dsi.fastutil.ints.IntSets;
    import org.gradle.api.internal.cache.StringInterner;
    import org.gradle.internal.serialize.AbstractSerializer;
    import org.gradle.internal.serialize.Decoder;
    import org.gradle.internal.serialize.Encoder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. tests/integration/tests.mk

    define run-test
    $(GO) test -exec=true -toolexec=$(REPO_ROOT)/tools/go-compile-without-link -vet=off -tags=integ $2 $1
    $(GO) test -p 1 ${T} -tags=integ -vet=off -timeout 30m $2 $1 ${_INTEGRATION_TEST_FLAGS} ${_INTEGRATION_TEST_SELECT_FLAGS} 2>&1 | tee >($(JUNIT_REPORT) > $(JUNIT_OUT))
    endef
    
    # Ensure that all test files are tagged properly. This ensures that we don't accidentally skip tests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. platforms/software/resources-http/build.gradle.kts

        testImplementation(project(":internal-integ-testing"))
        testImplementation(libs.jettyWebApp)
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":logging")))
    
        testFixturesImplementation(project(":base-services"))
        testFixturesImplementation(project(":logging"))
        testFixturesImplementation(project(":internal-integ-testing"))
        testFixturesImplementation(libs.slf4jApi)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. testing/soak/build.gradle.kts

    plugins {
        id("gradlebuild.internal.kotlin")
        id("gradlebuild.kotlin-dsl-plugin-bundle-integ-tests")
    }
    
    dependencies {
        testFixturesImplementation(project(":base-services"))
        testFixturesImplementation(project(":core"))
        testFixturesImplementation(project(":logging"))
        testFixturesImplementation(project(":internal-integ-testing"))
        testFixturesImplementation(project(":jvm-services"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top