Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,460 for lets (0.06 sec)

  1. src/math/rand/v2/regress_test.go

    //
    //	var whatever = T{
    //		...
    //	}
    //
    // Replace searches file for an exact match for the text of the first line,
    // finds the closing brace, and then substitutes new for what used to be in the file.
    // This lets us update the regressGolden table during go test -update.
    func replace(t *testing.T, file string, new []byte) {
    	first, _, _ := bytes.Cut(new, []byte("\n"))
    	first = append(append([]byte("\n"), first...), '\n')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:03:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tfcompile.bzl

            full set of deps needed by the generated library.
          enable_xla_hlo_profiling: Enable XLA HLO profiling in the generated
            program, and emit metadata that lets us pretty-print the gathered
            profile counters.
          enable_tracemes: Tell tfcompile to generate calls to
            TraceMe::Activity{Start|End} around HLO instructions that can be used by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    // the results by service port number. This is a bit weird, but lets us efficiently construct the format the caller needs.
    func (es *EndpointShards) CopyEndpoints(portMap map[string]int, ports sets.Set[int]) map[int][]*IstioEndpoint {
    	es.RLock()
    	defer es.RUnlock()
    	res := map[int][]*IstioEndpoint{}
    	for _, v := range es.Shards {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    language*. It provides the syntax for the `build.xml` file, the handling of the targets, special constructs like macrodefs, and more. In other words, this layer includes everything except the Ant tasks and types. Gradle understands this language and lets you import your Ant `build.xml` directly into a Gradle project. You can then use the targets of your Ant build as if they were Gradle tasks.
    
    2. *Layer 2: The Ant tasks and types*, like `javac`, `copy` or `jar`. For this layer, Gradle provides...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    		//      we don't need to do anything and let kubelet handle it.
    		//   2. It could be that - although we successfully expanded the volume, we failed to
    		//      record our work in API objects, in which case - we should resume resizing operation
    		//      and let API objects be updated.
    		//   3. Controller successfully expanded the volume, but expansion is failing on the node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. src/net/conf.go

    				// exists, it might list other TLDs (besides .local) or even
    				// '*', so just let libc deal with it.
    				var haveMDNSAllow bool
    				switch c.mdnsTest {
    				case mdnsFromSystem:
    					_, err := os.Stat("/etc/mdns.allow")
    					if err != nil && !errors.Is(err, fs.ErrNotExist) {
    						// Let libc figure out what is going on.
    						return hostLookupCgo, dnsConf
    					}
    					haveMDNSAllow = err == nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    A project generally has a number of dependencies it needs to do its work.
    Dependencies include plugins, libraries, or components that Gradle must download for the build to succeed.
    
    The build script lets Gradle know where to look for the binaries of the dependencies.
    More than one location can be provided:
    
    [source]
    ----
    repositories {
        mavenCentral()
        google()
    }
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. docs/sts/web-identity.md

    work, if the user first landed on `console-1.minio.example.org`, they must be redirected back to the same place after logging in at the OpenID provider's web-page. To ensure this, set the `MINIO_IDENTITY_OPENID_REDIRECT_URI_DYNAMIC=on` parameter - this lets MinIO set the redirect URL based on the "Host" header of the (initial login) request.
    
    The **deprecated** parameter `MINIO_IDENTITY_OPENID_REDIRECT_URI` works similar to the `MINIO_BROWSER_REDIRECT_URL` but needs to include the `/oauth_callback`...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/settings.md

    * By using a dependency you can simplify testing.
    * You can use `.env` files with it.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. README.md

    airgapped environments), download the binary from <https://dl.min.io> and replace the existing MinIO binary let's say for example `/opt/bin/minio`, apply executable permissions `chmod +x /opt/bin/minio` and proceed to perform `mc admin service restart alias/`.
    
    - For installations using Systemd MinIO service, upgrade via RPM/DEB packages **parallelly** on all servers or replace the binary lets say `/opt/bin/minio` on all nodes, apply executable permissions `chmod +x /opt/bin/minio` and process...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top