Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for tophash (0.25 sec)

  1. src/cmd/go/internal/work/exec.go

    			// same situations.
    			var from, toPath string
    			if m := p.Module; m == nil {
    				if p.Root == "" { // command-line-arguments in GOPATH mode, maybe?
    					from = p.Dir
    					toPath = p.ImportPath
    				} else if p.Goroot {
    					from = p.Root
    					toPath = "GOROOT"
    				} else {
    					from = p.Root
    					toPath = "GOPATH"
    				}
    			} else if m.Dir == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                            def output = outputs.file("\$i/\$outputName")
                            Files.copy(input.toPath(), output.toPath())
                            println "Transformed \${input.name} to \$i/\${output.name} into \$output.parentFile.parentFile"
                        }
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  3. okhttp-android/src/main/baseline-prof.txt

    HSPLokio/internal/_PathKt;->commonResolve(Lokio/Path;Lokio/Path;Z)Lokio/Path;
    HSPLokio/internal/_PathKt;->getSlash(Lokio/Path;)Lokio/ByteString;
    HSPLokio/internal/_PathKt;->toPath(Lokio/Buffer;Z)Lokio/Path;
    HSPLokio/internal/_PathKt;->toSlash(B)Lokio/ByteString;
    HSPLokio/internal/_PathKt;->toSlash(Ljava/lang/String;)Lokio/ByteString;
    Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;
    Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda1;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    // a special case, so that all the code to deal with ordinary imports works
    // automatically.
    func dirToImportPath(dir string) string {
    	return pathpkg.Join("_", strings.Map(makeImportValid, filepath.ToSlash(dir)))
    }
    
    func makeImportValid(r rune) rune {
    	// Should match Go spec, compilers, and ../../go/parser/parser.go:/isValidImport.
    	const illegalChars = `!"#$%&'()*,:;<=>?[\]^{|}` + "`\uFFFD"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CallTest.kt

    import okhttp3.tls.HandshakeCertificates
    import okhttp3.tls.HeldCertificate
    import okio.Buffer
    import okio.BufferedSink
    import okio.ForwardingSource
    import okio.GzipSink
    import okio.Path.Companion.toPath
    import okio.buffer
    import okio.fakefilesystem.FakeFileSystem
    import okio.use
    import org.junit.jupiter.api.AfterEach
    import org.junit.jupiter.api.Assertions.assertArrayEquals
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    		return
    	}
    	file := r.Form.Get("file")
    	if len(file) == 0 {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrInvalidRequest), r.URL)
    		return
    	}
    
    	file = filepath.ToSlash(file)
    	// Reject attempts to traverse parent or absolute paths.
    	if hasBadPathComponent(volume) || hasBadPathComponent(file) {
    		writeErrorResponse(r.Context(), w, errorCodes.ToAPIErr(ErrInvalidResourceName), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

        }
    
        @Deprecated
        public void setPomFile(java.io.File pomFile) {
            update( getDelegate().withPomFile(pomFile != null ? pomFile.toPath() : null));
        }
    
        /**
         * Gets the POM file for the corresponding project (if any).
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    					// Validation ensures that the request does not explicitly query multiple files at the same time
    					if len(nlq.Files) == 1 {
    						// Account for the \ being used on Windows clients
    						req.URL.Path = filepath.ToSlash(nlq.Files[0])
    					}
    				}
    				// Fall back in case the caller is directly trying to query a file
    				// Example: kubectl get --raw /api/v1/nodes/$name/proxy/logs/foo.log
    				file.ServeHTTP(w, req)
    			}))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/reflect/value.go

    // typedarrayclear zeroes the value at ptr of an array of elemType,
    // only clears len elem.
    //
    //go:noescape
    func typedarrayclear(elemType *abi.Type, ptr unsafe.Pointer, len int)
    
    //go:noescape
    func typehash(t *abi.Type, p unsafe.Pointer, h uintptr) uintptr
    
    func verifyNotInHeapPtr(p uintptr) bool
    
    //go:noescape
    func growslice(t *abi.Type, old unsafeheader.Slice, num int) unsafeheader.Slice
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top