Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 119 for rootfs (0.16 sec)

  1. src/cmd/doc/main.go

    		}
    		if d.importPath == pkg || strings.HasSuffix(d.importPath, pkgSuffix) {
    			return d.dir, true
    		}
    	}
    }
    
    var buildCtx = build.Default
    
    // splitGopath splits $GOPATH into a list of roots.
    func splitGopath() []string {
    	return filepath.SplitList(buildCtx.GOPATH)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. cmd/config-current.go

    	if errors.Is(err, kes.ErrNotAllowed) || errors.Is(err, errors.ErrUnsupported) {
    		return // If we don't have permission to compute the HMAC, don't change the cred.
    	}
    	if err != nil {
    		logger.Fatal(err, "Unable to generate root access key using KMS")
    	}
    
    	sKey, err := GlobalKMS.MAC(GlobalContext, &kms.MACRequest{Message: []byte("root secret key")})
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    		if node, ok := path[i].(*ast.IfStmt); ok && node.Else == stmt {
    			stmt = node
    			continue
    		}
    		break
    	}
    	return stmt.(ast.Stmt)
    }
    
    // WalkASTWithParent walks the AST rooted at n. The semantics are
    // similar to ast.Inspect except it does not call f(nil).
    func WalkASTWithParent(n ast.Node, f func(n ast.Node, parent ast.Node) bool) {
    	var ancestors []ast.Node
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. CHANGELOG.md

        with these curl arguments:
    
        ```
        curl \
          --http2-prior-knowledge \
          --proxy localhost:8888 \
          --proxytunnel \
          http://squareup.com/robots.txt
        ```
    
     *  Fix: Support executing OkHttp on kotlin-stdlib versions as old as 1.4. The library still builds
        on up-to-date Kotlin releases (1.6.21) but no longer needs that version as a runtime dependency.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. tests/integration/pilot/istioctl_test.go

    				// This check ensures we do not. If this is failing, check to ensure the bootstrap config matches
    				// the XDS response.
    				t.Fatalf("found unexpected secrets, should have only default and ROOTCA: %v", output)
    			}
    		})
    }
    
    func jsonUnmarshallOrFail(t test.Failer, context, s string) any {
    	t.Helper()
    	var val any
    
    	// this is guarded by prettyPrint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/net/http/httptest/server.go

    		panic(fmt.Sprintf("httptest: NewTLSServer: %v", err))
    	}
    	certpool := x509.NewCertPool()
    	certpool.AddCert(s.certificate)
    	s.client.Transport = &http.Transport{
    		TLSClientConfig: &tls.Config{
    			RootCAs: certpool,
    		},
    		ForceAttemptHTTP2: s.EnableHTTP2,
    	}
    	s.Listener = tls.NewListener(s.Listener, s.TLS)
    	s.URL = "https://" + s.Listener.Addr().String()
    	s.wrap()
    	s.goServe()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. src/net/http/fs.go

    // "index.html".
    //
    //	http.Handle("/", http.FileServerFS(fsys))
    func FileServerFS(root fs.FS) Handler {
    	return FileServer(FS(root))
    }
    
    func (f *fileHandler) ServeHTTP(w ResponseWriter, r *Request) {
    	upath := r.URL.Path
    	if !strings.HasPrefix(upath, "/") {
    		upath = "/" + upath
    		r.URL.Path = upath
    	}
    	serveFile(w, r, f.root, path.Clean(upath), true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/list/list.go

    // loadPackageList is like load.PackageList, but prints error messages and exits
    // with nonzero status if listE is not set and any package in the expanded list
    // has errors.
    func loadPackageList(roots []*load.Package) []*load.Package {
    	pkgs := load.PackageList(roots)
    
    	if !*listE {
    		for _, pkg := range pkgs {
    			if pkg.Error != nil {
    				base.Errorf("%v", pkg.Error)
    			}
    		}
    	}
    
    	return pkgs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  9. src/runtime/heapdump.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Implementation of runtime/debug.WriteHeapDump. Writes all
    // objects in the heap plus additional info (roots, threads,
    // finalizers, etc.) to a file.
    
    // The format of the dumped file is described at
    // https://golang.org/s/go15heapdump.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/embed/embed.go

    // their names, patterns can be written as Go double-quoted or back-quoted
    // string literals.
    //
    // If a pattern names a directory, all files in the subtree rooted at that directory are
    // embedded (recursively), except that files with names beginning with ‘.’ or ‘_’
    // are excluded. So the variable in the above example is almost equivalent to:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top