Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for whereIs (0.18 sec)

  1. tests/query_test.go

    	DB.Create(&user)
    
    	var result User
    	if DB.Where("").Where("").First(&result).Error != nil {
    		t.Errorf("Should not raise any error if searching with empty strings")
    	}
    
    	result = User{}
    	if DB.Where(&User{}).Where("name = ?", user.Name).First(&result).Error != nil {
    		t.Errorf("Should not raise any error if searching with empty struct")
    	}
    
    	result = User{}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    include::{snippetsPath}/tasks/incrementalBuild-incrementalBuildAdvanced/tests/incrementalBuildInputFilesConfigUsingTask.out[]
    ----
    ====
    
    Remember that `files()`, `layout.files()` and `objects.fileCollection()` can take tasks as arguments, whereas `fileTree()` cannot.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	// mark assists. The scheduler will aim to use within 50% of this
    	// goal.
    	//
    	// As a general rule, there's little reason to set gcBackgroundUtilization
    	// < gcGoalUtilization. One reason might be in mostly idle applications,
    	// where goroutines are unlikely to assist at all, so the actual
    	// utilization will be lower than the goal. But this is moot point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    // scope of the scavenger. Situations where the amount of fragmentation balloons
    // over the course of a single GC cycle should be considered pathologies,
    // flagged as bugs, and fixed appropriately.
    //
    // An additional factor of retainExtraPercent is added as a buffer to help ensure
    // that there's more unscavenged memory to allocate out of, since each allocation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. src/index/suffixarray/sais2.go

    	if len(text) == 0 {
    		return
    	}
    	if len(text) == 1 {
    		sa[0] = 0
    		return
    	}
    
    	// Establish slices indexed by text character
    	// holding character frequency and bucket-sort offsets.
    	// If there's only enough tmp for one slice,
    	// we make it the bucket offsets and recompute
    	// the character frequency each time we need it.
    	var freq, bucket []int64
    	if len(tmp) >= 2*textMax {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    	// but comes at the cost of having a large L2 mapping.
    	//
    	// We use the L1 map on 64-bit Windows because the arena size
    	// is small, but the address space is still 48 bits, and
    	// there's a high cost to having a large L2.
    	arenaL1Bits = 6 * (_64bit * goos.IsWindows)
    
    	// arenaL2Bits is the number of bits of the arena number
    	// covered by the second level arena index.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

      # nodes without a network blip. Creating a vSwitch takes time, causes network
      # blips, and it makes it more likely to hit the issue where flanneld is
      # stuck, so we want to do this as rarely as possible."
      $hns_network = Get-HnsNetwork | Where-Object Name -eq $INITIAL_HNS_NETWORK
      if ($hns_network) {
        if ($REDO_STEPS) {
          Log-Output ("Warning: initial '$INITIAL_HNS_NETWORK' HNS network " +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    	// that Go needs to do anyway, so the generated code is quite
    	// short.
    	ri := arenaIndex(p)
    	if arenaL1Bits == 0 {
    		// If there's no L1, then ri.l1() can't be out of bounds but ri.l2() can.
    		if ri.l2() >= uint(len(mheap_.arenas[0])) {
    			return nil
    		}
    	} else {
    		// If there's an L1, then ri.l1() can be out of bounds but ri.l2() can't.
    		if ri.l1() >= uint(len(mheap_.arenas)) {
    			return nil
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

    This can indicate that a dependency has been compromised. Please carefully verify the checksums."""
            }
            assertConfigCacheDiscarded()
    
            where:
            terse << [true, false]
        }
    
        def "fails verification if key is (terse output=#terse)"() {
            createMetadataFile {
                keyServer(keyServerFixture.uri)
                verifySignatures()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:ide]]
    == IDE support
    
    If you enable and configure the configuration cache from your `gradle.properties` file, then the configuration cache will be enabled when your IDE delegates to Gradle.
    There's nothing more to do.
    
    `gradle.properties` is usually checked in to source control.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top