Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,313 for clen (0.26 sec)

  1. src/make.bat

    if x%1==x-no-banner set...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. 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)
  3. src/path/example_test.go

    		"/../a/b/../././/c",
    		"",
    	}
    
    	for _, p := range paths {
    		fmt.Printf("Clean(%q) = %q\n", p, path.Clean(p))
    	}
    
    	// Output:
    	// Clean("a/c") = "a/c"
    	// Clean("a//c") = "a/c"
    	// Clean("a/c/.") = "a/c"
    	// Clean("a/c/b/..") = "a/c"
    	// Clean("/../a/c") = "/a/c"
    	// Clean("/../a/b/../././/c") = "/a/c"
    	// Clean("") = "."
    }
    
    func ExampleDir() {
    	fmt.Println(path.Dir("/a/b/c"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 19 00:10:22 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/path/path_test.go

    	{"abc/../../././../def", "../../def"},
    }
    
    func TestClean(t *testing.T) {
    	for _, test := range cleantests {
    		if s := Clean(test.path); s != test.result {
    			t.Errorf("Clean(%q) = %q, want %q", test.path, s, test.result)
    		}
    		if s := Clean(test.result); s != test.result {
    			t.Errorf("Clean(%q) = %q, want %q", test.result, s, test.result)
    		}
    	}
    }
    
    func TestCleanMallocs(t *testing.T) {
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 13 01:12:09 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  9. 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)
  10. .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)
Back to top