Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for palmer (0.14 sec)

  1. src/net/http/server.go

    	if w.conn.hijacked() {
    		caller := relevantCaller()
    		w.conn.server.logf("http: response.WriteHeader on hijacked connection from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
    		return
    	}
    	if w.wroteHeader {
    		caller := relevantCaller()
    		w.conn.server.logf("http: superfluous response.WriteHeader call from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

              /// TODO(aminim): this is overly conservative as some operations
              /// (like TPUPartitionedCallOp) may have extra operands that aren't
              /// propagated to the callee.
              return isa<CallOpInterface>(caller) &&
                     std::equal(caller->getOperandTypes().begin(),
                                caller->getOperandTypes().end(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    			vcfg.Standard[p1.ImportPath] = true
    		}
    	}
    }
    
    // VetTool is the path to an alternate vet tool binary.
    // The caller is expected to set it (if needed) before executing any vet actions.
    var VetTool string
    
    // VetFlags are the default flags to pass to vet.
    // The caller is expected to set them before executing any vet actions.
    var VetFlags []string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

        ./easyrsa init-pki
        # this puts the cert into pki/ca.crt and the key into pki/private/ca.key
        # PRIMARY_CN (expected to be) defined by caller
        # shellcheck disable=SC2153
        ./easyrsa --batch "--req-cn=${PRIMARY_CN}@$(date +%s)" build-ca nopass
        # SANS (expected to be) defined by caller
        # shellcheck disable=SC2153
        ./easyrsa --subject-alt-name="${SANS}" build-server-full "${MASTER_NAME}" nopass
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    	bodyOkay := make(chan bool, 1)
    	gotCloseNotify := make(chan bool, 1)
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		defer close(bodyOkay) // caller will read false if nothing else
    
    		reqBody := r.Body
    		r.Body = nil // to test that server.go doesn't use this value.
    
    		gone := w.(CloseNotifier).CloseNotify()
    		slurp, err := io.ReadAll(reqBody)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        as its predecessor. This is because the weight of cut edges is always
        minimized when the `Split` is with its predecessor. This colocation
        constraint will be used by the placer graph optimization to assign a device
        to the op.
    
        This pass should run in the export pipeline after tf-replicate-to-island so
        each replica has its own distinct (predecessor, Split) pair.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

    # uploaded in the manifests tar ball.
    
    # TODO: this script duplicates templating logic from cluster/saltbase/salt
    # using sed. It should use an actual template parser on the manifest
    # files.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    ### Hardcoded constants
    METADATA_SERVER_IP="${METADATA_SERVER_IP:-169.254.169.254}"
    
    # Standard curl flags.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    					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)
    			}))
    		} else {
    			kl.logServer = http.StripPrefix("/logs/", file)
    		}
    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. pkg/kubelet/kubelet_pods_test.go

    			assert.Equal(t, testCase.expectedHostsFileContent, string(actualContent), "hosts file content not expected")
    		})
    	}
    }
    
    // writeHostsFile will write a hosts file into a temporary dir, and return that dir.
    // Caller is responsible for deleting the dir and its contents.
    func writeHostsFile(filename string, cfg string) (string, error) {
    	tmpdir, err := os.MkdirTemp("", "kubelet=kubelet_pods_test.go=")
    	if err != nil {
    		return "", err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //
    // The meta tag should appear as early in the file as possible.
    // In particular, it should appear before any raw JavaScript or CSS,
    // to avoid confusing the go command's restricted parser.
    //
    // The vcs is one of "bzr", "fossil", "git", "hg", "svn".
    //
    // The repo-root is the root of the version control system
    // containing a scheme and not containing a .vcs qualifier.
    //
    // For example,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top