Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,223 for clen (0.17 sec)

  1. src/syscall/ztypes_openbsd_riscv64.go

    type RawSockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [24]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. src/os/path_test.go

    	}
    	perr, ok := err.(*PathError)
    	if !ok {
    		t.Fatalf("MkdirAll %q returned %T, not *PathError", fpath, err)
    	}
    	if filepath.Clean(perr.Path) != filepath.Clean(fpath) {
    		t.Fatalf("MkdirAll %q returned wrong error path: %q not %q", fpath, filepath.Clean(perr.Path), filepath.Clean(fpath))
    	}
    
    	// Can't make subdirectory of file.
    	ffpath := fpath + "/subdir"
    	err = MkdirAll(ffpath, 0777)
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:37 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingJavaPerformanceTest.groovy

         * cache. This scenario measures how much overhead Gradle's startup and input fingerprinting add on top of the cache hits.
         */
        def "clean check on ephemeral ci with remote http cache"() {
            runner.cleanTasks = ["clean"]
            runner.tasksToRun = ["check"]
            protocol = "http"
            pushToRemote = true
            runner.useDaemon = false
            runner.warmUpRuns = 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensionsTest.kt

        fun `can create and configure tasks`() {
    
            val clean = mock<Delete>()
            val cleanProvider = mockTaskProviderFor(clean)
    
            val tasks = mock<TaskContainer> {
                on { create(eq("clean"), eq(Delete::class.java), any<Action<Delete>>()) } doReturn clean
                on { getByName("clean") } doReturn clean
                onNamedWithAction("clean", Delete::class, cleanProvider)
            }
    
            tasks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

            result.assertTaskSkipped ":compileJava"
        }
    
        def "clean doesn't get cached"() {
            withBuildCache().run "assemble"
            withBuildCache().run "clean"
            withBuildCache().run "assemble"
            when:
            withBuildCache().run "clean"
            then:
            executedAndNotSkipped ":clean"
        }
    
        def "cacheable task with cache disabled doesn't get cached"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/clean_testcache.txt

    env GO111MODULE=off
    [short] skip
    
    # go clean -testcache
    # should work (see golang.org/issue/29757).
    cd x
    go test x_test.go
    go clean -testcache
    go test x_test.go
    ! stdout 'cached'
    ! go clean -testcache ../x
    stderr 'go: clean -testcache cannot be used with package arguments'
    
    # golang.org/issue/29100: 'go clean -testcache' should succeed
    # if the cache directory doesn't exist at all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 680 bytes
    - Viewed (0)
  7. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "largeAndroidBuild",
        "linux" : 492
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.android.RealLifeAndroidBuildPerformanceTest.clean assembleDebug with clean transforms cache",
      "durations" : [ {
        "testProject" : "largeAndroidBuild",
        "linux" : 1620
      }, {
        "testProject" : "nowInAndroidBuild",
        "linux" : 3580
      }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectSchemaHashCodeTest.kt

                            )
                        )
                    )
                )
            )
        }
    
        @Test
        fun `hash code takes container element types into account`() {
    
            assertThat(
                hashCodeFor(
                    containerElements = listOf(
                        entry<TaskContainer, Delete>("clean")
                    )
                ),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            result.assertTaskSkipped ":compileJava"
        }
    
        def "clean doesn't get cached"() {
            withBuildCache().run "assemble"
            withBuildCache().run "clean"
            withBuildCache().run "assemble"
            when:
            withBuildCache().run "clean"
            then:
            executedAndNotSkipped ":clean"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CertificateChainCleanerTest.kt

            trusted.certificate,
          )
        assertThat(cleaner.clean(list(certB, certA), "hostname")).isEqualTo(
          list(certB, certA, trusted, selfSigned),
        )
        assertThat(cleaner.clean(list(certB, certA, trusted), "hostname")).isEqualTo(
          list(certB, certA, trusted, selfSigned),
        )
        assertThat(cleaner.clean(list(certB, certA, trusted, selfSigned), "hostname"))
          .isEqualTo(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top