Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 350 for regular (0.23 sec)

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

    const (
    	AUNK   AlgKind = iota
    	ANOEQ          // Types cannot be compared
    	ANOALG         // implies ANOEQ, and in addition has a part that is marked Noalg
    	AMEM           // Type can be compared/hashed as regular memory.
    	AMEM0          // Specific subvariants of AMEM (TODO: move to ../reflectdata?)
    	AMEM8
    	AMEM16
    	AMEM32
    	AMEM64
    	AMEM128
    	ASTRING
    	AINTER
    	ANILINTER
    	AFLOAT32
    	AFLOAT64
    	ACPLX64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/goversion.go

    	}
    	return lang{major: major, minor: minor}, nil
    }
    
    // currentLang returns the current language version.
    func currentLang() string {
    	return fmt.Sprintf("go1.%d", goversion.Version)
    }
    
    // goVersionRE is a regular expression that matches the valid
    // arguments to the -lang flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 21:36:02 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/session/CrossBuildSessionState.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.Closeable;
    import java.util.List;
    
    /**
     * Services to be shared across build sessions.
     * <p>
     * Generally, one regular Gradle invocation is conceptually a session.
     * However, the GradleBuild task is currently implemented in such a way that it uses a discrete session.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. cmd/storage-errors.go

    // errVolumeExists - cannot create same volume again.
    var errVolumeExists = StorageErr("volume already exists")
    
    // errIsNotRegular - not of regular file type.
    var errIsNotRegular = StorageErr("not of regular file type")
    
    // errPathNotFound - cannot find the path.
    var errPathNotFound = StorageErr("path not found")
    
    // errVolumeNotFound - cannot find the volume.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolContainingDeclarationProvider.kt

        /**
         * Returns containing JVM class name for [KaCallableSymbol]
         *
         *   even for deserialized callables! (which is useful to look up the containing facade in [PsiElement])
         *   for regular, non-local callables from source, it is a mere conversion of [ClassId] inside [CallableId]
         *
         * The returned JVM class name is of fully qualified name format, e.g., foo.bar.Baz.Companion
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_cache.txt

    [!fuzz-instrumented] skip
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Fuzz cache should not exist after a regular test run.
    go test .
    exists $GOCACHE
    ! exists $GOCACHE/fuzz
    
    # Fuzzing should write interesting values to the cache.
    go test -fuzz=FuzzY -fuzztime=100x .
    go run ./contains_files $GOCACHE/fuzz/example.com/y/FuzzY
    
    # 'go clean -cache' should not delete the fuzz cache.
    go clean -cache
    exists $GOCACHE/fuzz
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/RegularFileSnapshot.java

    import org.gradle.internal.file.FileMetadata;
    import org.gradle.internal.file.FileType;
    import org.gradle.internal.hash.HashCode;
    
    import java.util.Optional;
    
    /**
     * A snapshot of a regular file.
     *
     * The snapshot includes the content hash of the file and its metadata.
     */
    public class RegularFileSnapshot extends AbstractFileSystemLocationSnapshot implements FileSystemLeafSnapshot {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/assembler/AssemblyLanguageIntegrationTest.groovy

            buildFile << """
    model {
        components {
            main(NativeExecutableSpec)
        }
    }
            """
    
            and:
            file("src/main/asm/broken.s") << """
    .section    __TEXT,__text,regular,pure_instructions
    .globl  _sum
    .align  4, 0x90
    _sum:
    pushl
    """
    
            expect:
            fails "mainExecutable"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. tests/testdata/config/none.yaml

    spec:
      egress:
        - hosts:
            - none/*
            - default/test.default # TODO: without namespace it  fails validation !
          # TODO: if we include the namespace, why do we need full name ? Importing regular services should work.
    
      # Label selection seems to confuse the new code.
      ingress:
        - port:
            number: 7071
            protocol: HTTP
            name: httplocal
          defaultEndpoint: 127.0.0.1:17071
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-plugins/src/main/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPlugins.kt

    import org.gradle.kotlin.dsl.provider.PrecompiledScriptPluginsSupport
    import org.gradle.kotlin.dsl.provider.gradleKotlinDslJarsOf
    import org.gradle.kotlin.dsl.support.serviceOf
    
    
    /**
     * Exposes `*.gradle.kts` scripts from regular Kotlin source-sets as binary Gradle plugins.
     *
     * @see PrecompiledScriptPluginsSupport
     */
    abstract class PrecompiledScriptPlugins : Plugin<Project> {
    
        override fun apply(project: Project): Unit = project.run {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top