Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 155 for place (0.29 sec)

  1. tests/non_std_test.go

    		t.Error("RowsAffected should be correct when do batch update")
    	}
    
    	animal = Animal{From: "somewhere"}              // No name fields, should be filled with the default value (galeone)
    	DB.Save(&animal).Update("From", "a nice place") // The name field should be untouched
    	DB.First(&animal, animal.Counter)
    	if animal.Name != "galeone" {
    		t.Errorf("Name fields shouldn't be changed if untouched, but got %v", animal.Name)
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtResolveExtensionInfoProvider.kt

            get() = withValidityAssertion {
                containingKtFile.virtualFile?.isResolveExtensionFile ?: false
            }
    
        /**
         * Returns the [PsiElement]s which should be used as a navigation target in place of this [KtElement]
         * provided by a [KaResolveExtension].
         *
         * These [PsiElement]s will typically be the source item(s) that caused the given [KtElement] to be generated
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/runtime/tracestring.go

    	// Truncate the string if necessary.
    	if len(s) > maxTraceStringLen {
    		s = s[:maxTraceStringLen]
    	}
    
    	lock(&t.lock)
    	w := unsafeTraceWriter(gen, t.buf)
    
    	// Ensure we have a place to write to.
    	var flushed bool
    	w, flushed = w.ensure(2 + 2*traceBytesPerNumber + len(s) /* traceEvStrings + traceEvString + ID + len + string data */)
    	if flushed {
    		// Annotate the batch as containing strings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/build.sh

    fi
    
    # TODO(b/341050361): When these steps are verified, removed the GCR image code.
    AR_IMAGE_PATH="us-central1-docker.pkg.dev/tensorflow-sigs/tensorflow/build-arm64"
    
    # Build for both JAX and TF usage.  We do these in one place because they share
    # almost all of the same cache layers
    export DOCKER_BUILDKIT=1
    for target in jax tf; do
      IMAGE="gcr.io/tensorflow-sigs/build-arm64:$target-$TAG"
      AR_IMAGE="$AR_IMAGE_PATH:$target-$TAG"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 22:33:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              [[ -f /tmp/istio-sidecar.deb ]] && sudo dpkg -i /tmp/istio-sidecar.deb && sudo rm /tmp/istio-sidecar.deb
    
              # Read root cert from and place signed certs here (can't mount directly or the dir would be unwritable)
              sudo mkdir -p /var/run/secrets/istio
    
              # hack: remove certs that are bundled in the image
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/looprotate.go

    		f.Blocks[idToIdx[loop.header.ID]] = p
    		f.Blocks[idToIdx[p.ID]] = loop.header
    		idToIdx[loop.header.ID], idToIdx[p.ID] = idToIdx[p.ID], idToIdx[loop.header.ID]
    
    		// Place b after p.
    		for _, b := range after[p.ID] {
    			move[b.ID] = struct{}{}
    		}
    	}
    
    	// Move blocks to their destinations in a single pass.
    	// We rely here on the fact that loop headers must come
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    	`)))
    )
    
    // NewWaitControlPlanePhase is a hidden phase that runs after the control-plane and etcd phases
    func NewWaitControlPlanePhase() workflow.Phase {
    	phase := workflow.Phase{
    		Name:  "wait-control-plane",
    		Short: "Wait for the control plane to start",
    		// TODO: unhide this phase once WaitForAllControlPlaneComponents goes GA:
    		// https://github.com/kubernetes/kubeadm/issues/2907
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/gotoolchain_issue66175.txt

    env GOTOOLCHAIN=go1.21+path
    ! go version
    stderr 'go: cannot find "go1.21" in PATH'
    
    env GOTOOLCHAIN=go1.22+path
    ! go version
    stderr 'go: cannot find "go1.22" in PATH'
    
    # When a toolchain download takes place, download 1.X.0
    env GOTOOLCHAIN=auto
    rm go.mod
    go mod init m
    go mod edit -go=1.300 -toolchain=none
    ! go version
    stderr 'go: downloading go1.300.0 '
    
    rm go.mod
    go mod init m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 21:32:07 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. tests/integration/pilot/revisioned_upgrade_test.go

    func testUpgradeFromVersion(t framework.TestContext, fromVersion string) {
    	configs := make(map[string]string)
    	t.CleanupConditionally(func() {
    		for _, config := range configs {
    			_ = t.ConfigIstio().YAML("istio-system", config).Delete()
    		}
    	})
    
    	// install control plane on the specified version and create namespace pointed to that control plane
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         *
         * <p>
         * This method can also be used to discard the value of the property, by passing it {@code null}. When the
         * value is discarded (or has never been set in the first place), the convention (default value) for this
         * property, if specified, will be used to provide the value instead.
         * </p>
         *
         * @param value The value, can be null.
         */
        void set(@Nullable T value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top