Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for ulong (0.07 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
    This op first slices `input` along the dimension `batch_dim`, and for each
    slice `i`, reverses the first `seq_lengths[i]` elements along
    the dimension `seq_dim`.
    
    The elements of `seq_lengths` must obey `seq_lengths[i] <= input.dims[seq_dim]`,
    and `seq_lengths` must be a vector of length `input.dims[batch_dim]`.
    
    The output slice `i` along dimension `batch_dim` is then given by input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	// cgoLDFLAGS, which includes p.CgoLDFLAGS, can be very long.
    	// Pass it to cgo on the command line, so that we use a
    	// response file if necessary.
    	//
    	// These flags are recorded in the generated _cgo_gotypes.go file
    	// using //go:cgo_ldflag directives, the compiler records them in the
    	// object file for the package, and then the Go linker passes them
    	// along to the host linker. At this point in the code, cgoLDFLAGS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		return err
    	}
    
    	kubeDeps.useLegacyCadvisorStats = cadvisor.UsingLegacyCadvisorStats(kubeCfg.ContainerRuntimeEndpoint)
    
    	return nil
    }
    
    // NewMainKubelet instantiates a new Kubelet object along with all the required internal modules.
    // No initialization of Kubelet and its modules should happen here.
    func NewMainKubelet(kubeCfg *kubeletconfiginternal.KubeletConfiguration,
    	kubeDeps *Dependencies,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. src/net/http/server.go

    		// did that because that's how CloseNotify accidentally behaved
    		// in very early Go releases prior to context support. Once we
    		// added context support, people used a Handler's
    		// Request.Context() and passed it along. Having that context
    		// cancel on pipelined HTTP requests caused problems.
    		// Fortunately, almost nothing uses HTTP/1.x pipelining.
    		// Unfortunately, apt-get does, or sometimes does.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

    resultsFile:
     - results.bin \\(RegularFile, [0-9a-f]+\\)""")
            run "util:resolve"
    
            then:
            output.count("Transformed") == 1
        }
    
        def "long transformation chain works"() {
            given:
            buildFile << declareAttributes() << withJarTasks() << withFileLibDependency("lib3.jar") << withExternalLibDependency("lib4") << duplicatorTransform() << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    		if r.URL.Path == "/long" {
    			w.Header().Set("Long", strings.Repeat("a", 1<<20))
    		}
    	})).ts
    	c := ts.Client()
    	c.Transport.(*Transport).MaxResponseHeaderBytes = 512 << 10
    
    	if res, err := c.Get(ts.URL); err != nil {
    		t.Fatal(err)
    	} else {
    		res.Body.Close()
    	}
    
    	res, err := c.Get(ts.URL + "/long")
    	if err == nil {
    		defer res.Body.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Removes unused results from tf.WhileRegion ops";
       let description = [{
          Removes unused results from `tf.WhileRegion` ops along with the defining
          ops in the body, if it is safe to do so.
          Currently, the pass detects results with following properties:
          - the result is unused outside of the `tf.WhileRegion` op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    	const hostnameMaxLen = 63
    	if len(hostname) <= hostnameMaxLen {
    		return hostname, nil
    	}
    	truncated := hostname[:hostnameMaxLen]
    	klog.ErrorS(nil, "Hostname for pod was too long, truncated it", "podName", podName, "hostnameMaxLen", hostnameMaxLen, "truncatedHostname", truncated)
    	// hostname should not end with '-' or '.'
    	truncated = strings.TrimRight(truncated, "-.")
    	if len(truncated) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. cmd/object-handlers.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"archive/tar"
    	"bytes"
    	"context"
    	"encoding/hex"
    	"encoding/xml"
    	"errors"
    	"fmt"
    	"io"
    	"net/http"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //
    // # Compile packages and dependencies
    //
    // Usage:
    //
    //	go build [-o output] [build flags] [packages]
    //
    // Build compiles the packages named by the import paths,
    // along with their dependencies, but it does not install the results.
    //
    // If the arguments to build are a list of .go files from a single directory,
    // build treats them as a list of source files specifying a single package.
    //
    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