Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,178 for completely (0.16 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

                invalidateDescendantOfSelectedChild(invalidatedChild)
                noMoreInteractions()
            }
    
            where:
            vfsSpec << onlyDirectChildren(CHILD_IS_PREFIX)
        }
    
        def "completely invalidating descendant #vfsSpec.searchedPath of child #vfsSpec.selectedChildPath creates a partial directory node without the child (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. src/crypto/hmac/hmac.go

    // Equal compares two MACs for equality without leaking timing information.
    func Equal(mac1, mac2 []byte) bool {
    	// We don't have to be constant time if the lengths of the MACs are
    	// different as that suggests that a completely different hash function
    	// was used.
    	return subtle.ConstantTimeCompare(mac1, mac2) == 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                        logger.warn(
                            "Configuration cache report is taking too long to write... "
                                + "The build might finish before the report has been completely written."
                        )
                        logger.info("Unfinished tasks: {}", unfinishedTasks)
                    }
                }
    
                private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. README.md

     * HTTP/2 support allows all requests to the same host to share a socket.
     * Connection pooling reduces request latency (if HTTP/2 isn’t available).
     * Transparent GZIP shrinks download sizes.
     * Response caching avoids the network completely for repeat requests.
    
    OkHttp perseveres when the network is troublesome: it will silently recover from common connection
    problems. If your service has multiple IP addresses, OkHttp will attempt alternate addresses if the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. src/hash/adler32/adler32_test.go

    	{0x7e511e63, "There is no reason for any individual to have a computer in their home. -Ken Olsen, 1977", "adl\x01e\xf5\x10\x14"},
    	{0xe4801a6a, "It's a tiny change to the code and not completely disgusting. - Bob Manchek", "adl\x01\xee\x00\f\xb2"},
    	{0x61b507df, "size:  a.out:  bad magic", "adl\x01\x1a\xfc\x04\x1d"},
    	{0xb8631171, "The major problem is with sendmail.  -Mark Horton", "adl\x01mi\b\xdc"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 21:04:12 UTC 2017
    - 5.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/split_into_island_per_op_pass.cc

      // We don't need to honor *any* control deps that are already placed on
      // islands. Drop them now in this pass - a following pass will use side
      // effect analysis to completely explain and apply correct control deps.
      island_op.getControl().dropAllUses();
    
      // Break up all islands by simply creating a new island wrapping each
      // individual sub op. Do not create any control dependencies between the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/metadata.md

    For example, to set it to be served at `/api/v1/openapi.json`:
    
    ```Python hl_lines="3"
    {!../../../docs_src/metadata/tutorial002.py!}
    ```
    
    If you want to disable the OpenAPI schema completely you can set `openapi_url=None`, that will also disable the documentation user interfaces that use it.
    
    ## Docs URLs
    
    You can configure the two documentation user interfaces included:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. src/os/exec/dot_test.go

    			wantErrDot = true
    		} else if err == nil {
    			t.Fatalf(`with PATH='', LookPath(%#q) = %#q; want non-nil error`, "execabs-test", found)
    		}
    
    		// Set PATH to include an explicit directory that contains a completely
    		// independent executable that happens to have the same name as an
    		// executable in ".". If "." is included implicitly, looking up the
    		// (unqualified) executable name will return ErrDot; otherwise, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:19:21 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. src/runtime/symtab_test.go

    //
    // Go will never generate a stack trace containing such an address, as it is
    // not a valid call site. However, the cgo traceback function passed to
    // runtime.SetCgoTraceback may not be completely accurate and may incorrect
    // provide PCs in Go code or the alignment region between functions.
    //
    // Go obviously doesn't easily expose the problematic PCs to running programs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectoryTest.groovy

            then:
            installedJdk.exists()
            new File(installedJdk, "jdk-with-symlinks.2/bin/file").exists()
    
            //TODO: completely wrong; the uncompressed archive should look like this:
            // .
            // ├── bin -> zulu-11.jdk/Contents/Home/bin
            // ├── file
            // └── zulu-11.jdk
            //     └── Contents
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top