Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 489 for place (0.06 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/CacheAwareExternalResourceAccessor.java

         * @param fileStore used whenever the resource is effectively downloaded, to move it into a cache
         * @param additionalCandidates a list of candidates, found in a different place than the cache. When null, will only look into the cache. When not null, the checksum of the resource is going to be checked
         * @return a locally available resource, if found
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. 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)
  3. android/guava-testlib/src/com/google/common/collect/testing/TestContainerGenerator.java

      /**
       * Returns the iteration ordering of elements, given the order in which they were added to the
       * container. This method may return the original list unchanged, the original list modified in
       * place, or a different list.
       *
       * <p>If the order is non-deterministic, as with {@link java.util.HashSet}, this method can return
       * its input unmodified. Provided that the test suite is built without {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. releasenotes/notes/external-name-on.yaml

          * Ports not declared as `HTTP` would match *all* traffic on that port, making it easy to accidentally send all traffic on a port to the wrong place.
          * Because the destination DNS name is treated as opaque, we cannot apply Istio policies to it as expected. For example, if I point
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 02 18:58:52 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. 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)
  6. src/syscall/exec_libc2.go

    	if sys.Setsid {
    		_, _, err1 = rawSyscall(abi.FuncPCABI0(libc_setsid_trampoline), 0, 0, 0)
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// Set process group
    	if sys.Setpgid || sys.Foreground {
    		// Place child in process group.
    		_, _, err1 = rawSyscall(abi.FuncPCABI0(libc_setpgid_trampoline), 0, uintptr(sys.Pgid), 0)
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	if sys.Foreground {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. 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)
  8. pilot/pkg/security/authn/utils/utils.go

    		// For TCP with mTLS, we advertise "istio-peer-exchange" from client and
    		// expect the same from server. This  is so that secure metadata exchange
    		// transfer can take place between sidecars for TCP with mTLS.
    		if features.DisableMxALPN {
    			ctx.CommonTlsContext.AlpnProtocols = util.ALPNDownstream
    		} else {
    			ctx.CommonTlsContext.AlpnProtocols = util.ALPNDownstreamWithMxc
    		}
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/TestContainerGenerator.java

      /**
       * Returns the iteration ordering of elements, given the order in which they were added to the
       * container. This method may return the original list unchanged, the original list modified in
       * place, or a different list.
       *
       * <p>If the order is non-deterministic, as with {@link java.util.HashSet}, this method can return
       * its input unmodified. Provided that the test suite is built without {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    == Run the application
    
    Look inside the `build` folder and you will notice the appearance of an `exe` folder.
    By convention, Gradle will place all applications in subfolders named according to the component name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top