Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,125 for selain (0.14 sec)

  1. build-logic/packaging/src/main/kotlin/gradlebuild/shade/extension/ShadedJarExtension.kt

    import org.gradle.api.artifacts.Configuration
    import org.gradle.api.provider.SetProperty
    
    
    abstract class ShadedJarExtension(val shadedConfiguration: Configuration) {
    
        /**
         * Retain only those classes in the keep package hierarchies, plus any classes that are reachable from these classes.
         */
        abstract val keepPackages: SetProperty<String>
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/cache/internal/DefaultCrossBuildInMemoryCacheFactory.java

                if (v != null) {
                    // Retain strong reference
                    valuesForThisSession.put(key, v);
                    return v;
                }
    
                return null;
            }
        }
    
        private static class DefaultCrossBuildInMemoryCache<K, V> extends AbstractCrossBuildInMemoryCache<K, V> {
            // This is used only to retain strong references to the values
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 11 20:23:28 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  3. LICENSE

          editorial revisions, annotations, elaborations, or other modifications
          represent, as a whole, an original work of authorship. For the purposes
          of this License, Derivative Works shall not include works that remain
          separable from, or merely link (or bind by name) to the interfaces of,
          the Work and Derivative Works thereof.
    
          "Contribution" shall mean any work of authorship, including
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/syscall/net.go

    package syscall
    
    // A RawConn is a raw network connection.
    type RawConn interface {
    	// Control invokes f on the underlying connection's file
    	// descriptor or handle.
    	// The file descriptor fd is guaranteed to remain valid while
    	// f executes but not after f returns.
    	Control(f func(fd uintptr)) error
    
    	// Read invokes f on the underlying connection's file
    	// descriptor or handle; f is expected to try to read from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 27 16:36:34 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  5. src/os/readfrom_linux_test.go

    	srcfd  int
    	remain int64
    
    	written int64
    	handled bool
    	err     error
    
    	original func(dst, src *poll.FD, remain int64) (int64, bool, error)
    }
    
    func (h *spliceFileHook) install() {
    	h.original = *PollSpliceFile
    	*PollSpliceFile = func(dst, src *poll.FD, remain int64) (int64, bool, error) {
    		h.called = true
    		h.dstfd = dst.Sysfd
    		h.srcfd = src.Sysfd
    		h.remain = remain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. testing/precondition-tester/src/integTest/.gitkeep

    Retain this directory so :generateSubprojectInfo will be willing to do integration testing for this project...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 108 bytes
    - Viewed (0)
  7. testing/precondition-tester/src/crossVersionTest/.gitkeep

    Retain this directory so :generateSubprojectInfo will be willing to do cross-version testing for this project...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 110 bytes
    - Viewed (0)
  8. licenses/github.com/google/cel-go/LICENSE

          editorial revisions, annotations, elaborations, or other modifications
          represent, as a whole, an original work of authorship. For the purposes
          of this License, Derivative Works shall not include works that remain
          separable from, or merely link (or bind by name) to the interfaces of,
          the Work and Derivative Works thereof.
    
          "Contribution" shall mean any work of authorship, including
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 23 01:29:36 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  9. LICENSE

          editorial revisions, annotations, elaborations, or other modifications
          represent, as a whole, an original work of authorship. For the purposes
          of this License, Derivative Works shall not include works that remain
          separable from, or merely link (or bind by name) to the interfaces of,
          the Work and Derivative Works thereof.
    
          "Contribution" shall mean any work of authorship, including
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 29 17:31:56 UTC 2021
    - 13.3K bytes
    - Viewed (0)
  10. okhttp-android/src/test/kotlin/okhttp3/android/AndroidLoggingTest.kt

        assertThat(logs.map { it.msg }).containsExactly(
          "--> GET http://google.com/robots.txt",
          "<-- HTTP FAILED: java.net.UnknownHostException: shortcircuit",
        )
        // We should consider if these logs should retain Exceptions
        assertThat(logs.last().throwable).isNull()
      }
    
      @Test
      fun testLoggingEventListener() {
        val client =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 11:07:32 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top