Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 216 for regular (0.16 sec)

  1. migrator/migrator.go

    	"time"
    
    	"gorm.io/gorm"
    	"gorm.io/gorm/clause"
    	"gorm.io/gorm/logger"
    	"gorm.io/gorm/schema"
    )
    
    // This regular expression seeks to find a sequence of digits (\d+) among zero or more non-digit characters (\D*),
    // with a possible trailing non-digit character (\D?).
    
    // For example, values that can pass this regular expression are:
    // - "123"
    // - "abc456"
    // -"%$#@789"
    var regFullDataType = regexp.MustCompile(`\D*(\d+)\D?`)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  2. src/internal/trace/event/go122/event.go

    	},
    	EvCPUSample: event.Spec{
    		Name: "CPUSample",
    		Args: []string{"time", "m", "p", "g", "stack"},
    		// N.B. There's clearly a timestamp here, but these Events
    		// are special in that they don't appear in the regular
    		// M streams.
    	},
    	EvFrequency: event.Spec{
    		Name: "Frequency",
    		Args: []string{"freq"},
    	},
    	EvExperimentalBatch: event.Spec{
    		Name:    "ExperimentalBatch",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. pkg/kubelet/logs/container_log_manager_test.go

    }
    
    func TestCleanupUnusedLog(t *testing.T) {
    	dir, err := os.MkdirTemp("", "test-cleanup-unused-log")
    	require.NoError(t, err)
    	defer os.RemoveAll(dir)
    
    	testLogs := []string{
    		"test-log-1",     // regular log
    		"test-log-1.tmp", // temporary log
    		"test-log-2",     // unused log
    		"test-log-2.gz",  // compressed log
    	}
    
    	for i := range testLogs {
    		testLogs[i] = filepath.Join(dir, testLogs[i])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/cmd/covdata/metamerge.go

    // of selecting or merging meta data files. There are three cases
    // of interest here: the "-pcombine" flag provided by merge, the
    // "-pkg" option provided by all merge/subtract/intersect, and
    // a regular vanilla merge with no package selection
    //
    // In the -pcombine case, we're essentially glomming together all the
    // meta-data for all packages and all functions, meaning that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. cmd/globals.go

    	diskFillFraction = 0.99
    
    	// diskReserveFraction is the fraction of a disk where we will fill other server pools first.
    	// If all pools reach this, we will use all pools with regular placement.
    	diskReserveFraction = 0.15
    
    	// diskAssumeUnknownSize is the size to assume when an unknown size upload is requested.
    	diskAssumeUnknownSize = 1 << 30
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

      map<int32, QuantizedType> input_quantized_types = 1;
    }
    
    // Represents a matching method that matches quantizable units by lifted
    // functions' names.
    message FunctionNameMatcherSpec {
      // Regular expression to match lifted functions' names. Underlying regex
      // engine uses re2, which accepts a subset of PCRE. See
      // https://github.com/google/re2/wiki/Syntax for details.
      string regex = 1;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/script/cmds.go

    			if strEqual(cmdExt, ext) {
    				searchExt = false
    				break
    			}
    		}
    		isExecutable = func(fi os.FileInfo) bool {
    			return fi.Mode().IsRegular()
    		}
    	} else {
    		isExecutable = func(fi os.FileInfo) bool {
    			return fi.Mode().IsRegular() && fi.Mode().Perm()&0111 != 0
    		}
    	}
    
    	pathEnv, _ := s.LookupEnv(pathEnvName())
    	for _, dir := range strings.Split(pathEnv, string(filepath.ListSeparator)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/abi.go

    	// NOSPLIT for these wrappers, so all are currently tagged with NOSPLIT.
    	fn.Pragma |= ir.Nosplit
    
    	// Generate call. Use tail call if no params and no returns,
    	// but a regular call otherwise.
    	//
    	// Note: ideally we would be using a tail call in cases where
    	// there are params but no returns for ABI0->ABIInternal wrappers,
    	// provided that all params fit into registers (e.g. we don't have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/go/types/check_test.go

    // string.
    //
    // The harness will verify that each ERROR pattern is a substring of the
    // error reported at that source position, and that each ERRORx pattern
    // is a regular expression matching the respective error.
    // Consecutive comments may be used to indicate multiple errors reported
    // at the same position.
    //
    // For instance, the following test source indicates that an "undeclared"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    +
    Your build may fail at this point, but that's ok; the scan will still run.
    Compare the build scan for the Gradle build to the one for the Maven build and continue down this list to troubleshoot the failures.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top