Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for tolen (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    //    instance_key at runtime.
    // 2) If at least one ordering token is present, then we purely rely on ordering
    //    tokens for side effect modeling and ignore the op-based effect
    //    `TF_CollectiveReduceOrderingEffect` for which this function is relevant
    //    (note that returning `std::nullopt` here signals exactly that).
    // 3) If `is_stateless` is false and no ordering token is present, then we treat
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	serverstats "k8s.io/kubernetes/pkg/kubelet/server/stats"
    	"k8s.io/kubernetes/pkg/kubelet/stats"
    	"k8s.io/kubernetes/pkg/kubelet/status"
    	"k8s.io/kubernetes/pkg/kubelet/sysctl"
    	"k8s.io/kubernetes/pkg/kubelet/token"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	"k8s.io/kubernetes/pkg/kubelet/userns"
    	"k8s.io/kubernetes/pkg/kubelet/userns/inuserns"
    	"k8s.io/kubernetes/pkg/kubelet/util"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                 std::vector<string>{send_pred_node->name()});
    
      // Add a control edge from `send_pred_node` to If node, so XlaCompiler will
      // visit If node after `send_pred_node`, thus the token output for
      // `send_pred_node` has been generated.
      g->AddControlEdge(send_pred_node, n);
    
      // Build host side graph for the "If" node.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                                                           result.attributes);
      }
      if (node.IsNextIteration()) {
        // NextIteration is a bit special, we create a pair of operations that are
        // linked together through a token returned by the source.
        // We make use of a separate builder to insert the source at the top of
        // the block.
        mlir::OpBuilder builder_at_begin(builder_.getBlock(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package reflect_test
    
    import (
    	"bytes"
    	"encoding/base64"
    	"flag"
    	"fmt"
    	"go/token"
    	"internal/abi"
    	"internal/goarch"
    	"internal/testenv"
    	"io"
    	"math"
    	"math/rand"
    	"net"
    	"os"
    	. "reflect"
    	"reflect/internal/example1"
    	"reflect/internal/example2"
    	"runtime"
    	"slices"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    oppegard.no
    oppegård.no
    orkdal.no
    orland.no
    ørland.no
    orskog.no
    ørskog.no
    orsta.no
    ørsta.no
    os.hedmark.no
    os.hordaland.no
    osen.no
    osteroy.no
    osterøy.no
    ostre-toten.no
    østre-toten.no
    overhalla.no
    ovre-eiker.no
    øvre-eiker.no
    oyer.no
    øyer.no
    oygarden.no
    øygarden.no
    oystre-slidre.no
    øystre-slidre.no
    porsanger.no
    porsangu.no
    porsáŋgu.no
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    // HTTP/1 and HTTP/2). This
    
    package http_test
    
    import (
    	"bufio"
    	"bytes"
    	"compress/gzip"
    	"context"
    	"crypto/rand"
    	"crypto/tls"
    	"crypto/x509"
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"go/token"
    	"internal/nettrace"
    	"io"
    	"log"
    	mrand "math/rand"
    	"net"
    	. "net/http"
    	"net/http/httptest"
    	"net/http/httptrace"
    	"net/http/httputil"
    	"net/http/internal/testcert"
    	"net/textproto"
    	"net/url"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        llvm::errs() << "XlaCallModule has " << op_results.size()
                     << " but the main function has "
                     << main_output_types.size() - nr_main_token_outputs
                     << " non-token ouputs";
        return false;
      }
      bool changed = false;
      int next_op_result = 0;
      for (auto output_type : main_output_types) {
        if (tensorflow::IsTokenType(output_type)) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/callback.go

    void callGoWithString(void);
    */
    import "C"
    
    import (
    	"path"
    	"runtime"
    	"strings"
    	"sync"
    	"testing"
    	"unsafe"
    )
    
    // Pass a func value from nestedCall to goCallback using an integer token.
    var callbackMutex sync.Mutex
    var callbackToken int
    var callbackFuncs = make(map[int]func())
    
    // nestedCall calls into C, back into Go, and finally to f.
    func nestedCall(f func()) {
    	// callback(x) calls goCallback(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    			// Consistency check: name should be __imp_X
    			sname := ctxt.loader.SymName(targ)
    			if !strings.HasPrefix(sname, "__imp_") {
    				return fmt.Errorf("internal error in windynrelocsym: redirect GOT token applied to non-import symbol %s", sname)
    			}
    
    			// Locate underlying symbol (which originally had type
    			// SDYNIMPORT but has since been retyped to SWINDOWS).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top