Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 912 for regular (0.13 sec)

  1. src/os/dirent_dragonfly.go

    	switch typ {
    	case syscall.DT_BLK:
    		return ModeDevice
    	case syscall.DT_CHR:
    		return ModeDevice | ModeCharDevice
    	case syscall.DT_DBF:
    		// DT_DBF is "database record file".
    		// fillFileStatFromSys treats as regular file.
    		return 0
    	case syscall.DT_DIR:
    		return ModeDir
    	case syscall.DT_FIFO:
    		return ModeNamedPipe
    	case syscall.DT_LNK:
    		return ModeSymlink
    	case syscall.DT_REG:
    		return 0
    	case syscall.DT_SOCK:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 00:59:20 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. src/crypto/rand/rand_darwin.go

    func init() {
    	// arc4random_buf is the recommended application CSPRNG, accepts buffers of
    	// any size, and never returns an error.
    	//
    	// "The subsystem is re-seeded from the kernel random number subsystem on a
    	// regular basis, and also upon fork(2)." - arc4random(3)
    	//
    	// Note that despite its legacy name, it uses a secure CSPRNG (not RC4) in
    	// all supported macOS versions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:02:21 UTC 2024
    - 667 bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/plugins/PluginBuildsIntegrationTest.groovy

                    id("${pluginBuild.projectPluginId}") version "2.0"
                }
            """
    
            then:
            succeeds()
            pluginBuild.assertProjectPluginApplied()
        }
    
        def "regular included build can not contribute settings plugins"() {
            given:
            def pluginBuild = pluginBuild("build-logic")
            settingsFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    of the same name.
    
    ### Example:
    
    Below is an example of a function operating on the TensorFlow dialect:
    
    ```mlir {.mlir}
    /// This is a regular function, taking inputs by value and returning a new value.
    /// The body is a regular CFG.
    func some_function(%input : tensor<*xf32>) -> tensor<*xf32> {
      // TensorFlow operations are not variadic: this `tf.add` operation always
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  5. test/fixedbugs/issue30862.dir/main.go

    import (
    	"fmt"
    	"os"
    
    	"issue30862.dir/b"
    )
    
    // Test case for issue 30862.
    
    // Be aware that unless GOEXPERIMENT=fieldtrack is set when building
    // the compiler, this test will fail if executed with a regular GC
    // compiler.
    
    func main() {
    	bad := b.Test()
    	if len(bad) > 0 {
    		for _, s := range bad {
    			fmt.Fprintf(os.Stderr, "test failed: %s\n", s)
    		}
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 26 18:43:12 UTC 2021
    - 549 bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemLocationSnapshot.java

    import java.util.Optional;
    
    /**
     * A snapshot of a single location on the file system.
     *
     * We know everything about this snapshot, including children and Merkle hash.
     *
     * The snapshot can be a snapshot of a regular file or of a whole directory tree.
     * The file at the location is not required to exist (see {@link MissingFileSnapshot}).
     */
    public interface FileSystemLocationSnapshot extends FileSystemSnapshot, FileSystemNode, MetadataSnapshot {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:09:45 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. pkg/api/v1/resource/helpers_test.go

    						v1.ResourceCPU: resource.MustParse("2"),
    					},
    				},
    			},
    		},
    		{
    			description: "restartable init container",
    			expectedRequests: v1.ResourceList{
    				// restartable init + regular container
    				v1.ResourceCPU: resource.MustParse("2"),
    			},
    			initContainers: []v1.Container{
    				{
    					Name:          "restartable-init-1",
    					RestartPolicy: &restartAlways,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:13 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/cover.bash

    # example:
    #
    #     ./cover.bash && go tool cover -html=cover.out
    #
    # This script is needed to set up a temporary test file, so that we don't break
    # regular 'go run .' usage to run the generator.
    
    cat >main_test.go <<-EOF
    	//go:build ignore
    
    	package main
    
    	import "testing"
    
    	func TestCoverage(t *testing.T) { main() }
    EOF
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 664 bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java

                logger.debug("Tasks:   " + projectBuild.getTaskSegment().getTasks());
                logger.debug("Style:   " + (projectBuild.getTaskSegment().isAggregating() ? "Aggregating" : "Regular"));
    
                if (it.hasNext()) {
                    logger.debug("-----------------------------------------------------------------------");
                }
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. pkg/util/filesystem/util_test.go

    			listenOnSocket: true,
    			expectSocket:   true,
    			expectError:    false,
    		},
    		{
    			label:       "Non Existent file",
    			invalidFile: true,
    			expectError: true,
    		},
    		{
    			label:          "Regular file",
    			listenOnSocket: false,
    			expectSocket:   false,
    			expectError:    false,
    		},
    	}
    	for _, test := range tests {
    		f, err := os.CreateTemp("", "test-domain-socket")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top