Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for extractID (0.28 sec)

  1. src/runtime/proc.go

    	case "arm":
    		armHasVFPv4 = cpu.ARM.HasVFPv4
    
    	case "arm64":
    		arm64HasATOMICS = cpu.ARM64.HasATOMICS
    	}
    }
    
    // getGodebugEarly extracts the environment variable GODEBUG from the environment on
    // Unix-like operating systems and returns it. This function exists to extract GODEBUG
    // early before much of the runtime is initialized.
    func getGodebugEarly() string {
    	const prefix = "GODEBUG="
    	var env string
    	switch GOOS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    }
    
    func newGatewayProxy() *model.Proxy {
    	return &model.Proxy{Type: model.Router, Metadata: &model.NodeMetadata{}}
    }
    
    // Helper function to extract TLS context from a cluster
    func getTLSContext(t *testing.T, c *cluster.Cluster) *tls.UpstreamTlsContext {
    	t.Helper()
    	if c.TransportSocket == nil {
    		return nil
    	}
    	tlsContext := &tls.UpstreamTlsContext{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    			r.Add += int64(r.Off) - p.Pc + int64(r.Siz)
    		}
    
    	}
    }
    
    // unpackOps4 extracts 4 operands from p.
    func unpackOps4(p *obj.Prog) (arg0, arg1, arg2, dst *obj.Addr) {
    	return &p.From, &p.RestArgs[0].Addr, &p.RestArgs[1].Addr, &p.To
    }
    
    // unpackOps5 extracts 5 operands from p.
    func unpackOps5(p *obj.Prog) (arg0, arg1, arg2, arg3, dst *obj.Addr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    		if tgt != nil {
    			synchronous = tgt.replicateSync
    		}
    		dsc.Set(newReplicateTargetDecision(tgtArn, replicate, synchronous))
    	}
    	return dsc
    }
    
    // Standard headers that needs to be extracted from User metadata.
    var standardHeaders = []string{
    	xhttp.ContentType,
    	xhttp.CacheControl,
    	xhttp.ContentEncoding,
    	xhttp.ContentLanguage,
    	xhttp.ContentDisposition,
    	xhttp.AmzStorageClass,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-extract-outside-compilation | FILECHECK_OPTS="" FileCheck %s
    
    module attributes {tf.versions = {producer = 888 : i32}, tf.devices = ["/job:worker/replica:0/task:0/device:CPU:0", "/job:worker/replica:0/task:0/device:TPU_SYSTEM:0", "/job:worker/replica:0/task:0/device:TPU:0"]} {
      // Tests that TPU cluster with no outside compilation does not generate parallel_execute.
    
      // CHECK-LABEL: func @no_outside_compilation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      return true;
    }
    
    //===----------------------------------------------------------------------===//
    // SplitOp
    //===----------------------------------------------------------------------===//
    
    // Extracts and returns the signed integer constant in a 0-rank integer tensor
    // or 1-element 1-rank integer tensor if 'value' is a constant.
    static std::optional<int64_t> ExtractConstantIntFromTensor(Value value) {
      ElementsAttr attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/popper.min.js.map

    str - Value + unit string\n * @argument {String} measurement - `height` or `width`\n * @argument {Object} popperOffsets\n * @argument {Object} referenceOffsets\n * @returns {Number|String}\n * Value in pixels, or original string if no values were extracted\n */\nexport function toValue(str, measurement, popperOffsets, referenceOffsets) {\n  // separate value from unit\n  const split = str.match(/((?:\\-|\\+)?\\d*\\.?\\d*)(.*)/);\n  const value = +split[1];\n  const unit = split[2];\n\n  // If it's...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	CMPQ inl, $16
    	JB   sealSSETail
    	SUBQ $16, inl
    
    	// Load for decryption
    	MOVOU (inp), T0
    	PXOR  T0, A1
    	MOVOU A1, (oup)
    	LEAQ  (1*16)(inp), inp
    	LEAQ  (1*16)(oup), oup
    
    	// Extract for hashing
    	MOVQ   A1, t0
    	PSRLDQ $8, A1
    	MOVQ A1, t1
    	ADDQ   t0, acc0; ADCQ t1, acc1; ADCQ $1, acc2
    	polyMul
    
    	// Shift the stream "left"
    	MOVO B1, A1
    	MOVO C1, B1
    	MOVO D1, C1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_OperandHasRankAtMost<2, 1>]> {
      let summary = "Return a slice from 'input'.";
    
      let description = [{
    The output tensor is a tensor with dimensions described by 'size'
    whose values are extracted from 'input' starting at the offsets in
    'begin'.
    
    `begin` is zero-based; `size` is one-based. If size[i] is -1, all remaining
    elements in dimension i are included in the slice. In other words, this is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    ((ADDshiftLL|ORshiftLL|XORshiftLL) [8] (SRLconst [8] (ANDconst [c1] x)) (ANDconst [c2] x))
    	&& (uint64(c1) == 0xff00ff00 && uint64(c2) == 0x00ff00ff)
    	=> (REV16 (ANDconst <x.Type> [0xffffffff] x))
    
    // Extract from reg pair
    (ADDshiftLL [c] (SRLconst x [64-c]) x2) => (EXTRconst [64-c] x2 x)
    ( ORshiftLL [c] (SRLconst x [64-c]) x2) => (EXTRconst [64-c] x2 x)
    (XORshiftLL [c] (SRLconst x [64-c]) x2) => (EXTRconst [64-c] x2 x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
Back to top