Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 95 for tolen (0.04 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // respond with a 410 ResourceExpired error together with a continue token. If the client needs a
      // consistent list, it must restart their list without the continue field. Otherwise, the client may
      // send another list request with the token received with the 410 error, the server will respond with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    }
    
    // There are control nodes at each end of each control edge. For each of them,
    // we store the source vertices of the incoming edges (if any) and the control
    // node's output token. To improve testability, we use an ordered set for the
    // source vertices.
    struct ControlNodeDesc {
      std::set<int> incoming;
      std::optional<mlir::Value> outgoing;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// respond with a 410 ResourceExpired error together with a continue token. If the client needs a
    	// consistent list, it must restart their list without the continue field. Otherwise, the client may
    	// send another list request with the token received with the 410 error, the server will respond with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  4. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    // `tf.StackV2`), make sure that we don't create data dependencies between
    // different iterations for such resources. This is in line with the behavior
    // for the same loop unrolled. In this particular case, no data chain and token
    // should be created.
    
    func.func @unique_resource_chain(%arg0: tensor<i32>, %arg1: tensor<f32>) {
      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  5. src/net/http/request.go

    	                    | "TRACE"                  ; Section 9.8
    	                    | "CONNECT"                ; Section 9.9
    	                    | extension-method
    	   extension-method = token
    	     token          = 1*<any CHAR except CTLs or separators>
    	*/
    	return len(method) > 0 && strings.IndexFunc(method, isNotToken) == -1
    }
    
    // NewRequest wraps [NewRequestWithContext] using [context.Background].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    	stackScanWork   atomic.Int64
    	globalsScanWork atomic.Int64
    
    	// bgScanCredit is the scan work credit accumulated by the concurrent
    	// background scan. This credit is accumulated by the background scan
    	// and stolen by mutator assists.  Updates occur in bounded batches,
    	// since it is both written and read throughout the cycle.
    	bgScanCredit atomic.Int64
    
    	// assistTime is the nanoseconds spent in mutator assists
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"bytes"
    	"cmd/internal/pkgpath"
    	"debug/elf"
    	"debug/macho"
    	"debug/pe"
    	"fmt"
    	"go/ast"
    	"go/printer"
    	"go/token"
    	"internal/xcoff"
    	"io"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"sort"
    	"strings"
    	"unicode"
    )
    
    var (
    	conf         = printer.Config{Mode: printer.SourcePos, Tabwidth: 8}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. hack/local-up-cluster.sh

            authorizer_args+=("--authorization-mode=${AUTHORIZATION_MODE:-Node,RBAC}")
          fi
          authorizer_args+=(
            "--authorization-webhook-config-file=${AUTHORIZATION_WEBHOOK_CONFIG_FILE}"
            "--authentication-token-webhook-config-file=${AUTHENTICATION_WEBHOOK_CONFIG_FILE}"
          )
        fi
    
        priv_arg=""
        if [[ -n "${ALLOW_PRIVILEGED}" ]]; then
          priv_arg="--allow-privileged=${ALLOW_PRIVILEGED}"
        fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

    import org.jetbrains.kotlin.utils.exceptions.errorWithAttachment
    
    internal class KaFirReferenceShortener(
        override val analysisSession: KaFirSession,
        override val token: KaLifetimeToken,
        override val firResolveSession: LLFirResolveSession,
    ) : KaReferenceShortener(), KaFirSessionComponent {
        private val context = FirShorteningContext(analysisSession)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    	tg.parallel()
    	tg.tempDir("home/go")
    	tg.setenv(homeEnvName(), tg.path("home"))
    	// Set TEST_TELEMETRY_DIR to a path that doesn't exist
    	// so that the counter uploading code doesn't write
    	// the counter token file to the temp dir after the test finishes.
    	tg.setenv("TEST_TELEMETRY_DIR", "/no-telemetry-dir")
    
    	tg.run("env", "GOPATH")
    	tg.grepStdout(regexp.QuoteMeta(tg.path("home/go")), "want GOPATH=$HOME/go")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top