Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 109 of 109 for munmap (0.12 sec)

  1. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    :"12",13:"13"},gridTemplateColumns:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))"},gridTemplateRows:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0,...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  2. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^LOCK_(SH|EX|NB|UN)$/ ||
    		$2 ~ /^LO_(KEY|NAME)_SIZE$/ ||
    		$2 ~ /^LOOP_(CLR|CTL|GET|SET)_/ ||
    		$2 == "LOOP_CONFIGURE" ||
    		$2 ~ /^(AF|SOCK|SO|SOL|IPPROTO|IP|IPV6|TCP|MCAST|EVFILT|NOTE|SHUT|PROT|MAP|MREMAP|MFD|T?PACKET|MSG|SCM|MCL|DT|MADV|PR|LOCAL|TCPOPT|UDP)_/ ||
    		$2 ~ /^NFC_(GENL|PROTO|COMM|RF|SE|DIRECTION|LLCP|SOCKPROTO)_/ ||
    		$2 ~ /^NFC_.*_(MAX)?SIZE$/ ||
    		$2 ~ /^RAW_PAYLOAD_/ ||
    		$2 ~ /^[US]F_/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"𝓂":                            "\U0001d4c2",
    	"∾":                          "\u223e",
    	"μ":                              "\u03bc",
    	"⊸":                        "\u22b8",
    	"⊸":                           "\u22b8",
    	"⋙̸":                             "\u22d9\u0338",
    	"≫⃒":                             "\u226b\u20d2",
    	"≫̸":                            "\u226b\u0338",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

        int oneBased = ~~(index + 1); // for GWT
        checkState(oneBased > 0, "negative index");
        return (oneBased & EVEN_POWERS_OF_TWO) > (oneBased & ODD_POWERS_OF_TWO);
      }
    
      /**
       * Returns {@code true} if the MinMax heap structure holds. This is only used in testing.
       *
       * <p>TODO(kevinb): move to the test class?
       */
      @VisibleForTesting
      boolean isIntact() {
        for (int i = 1; i < size; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

        int oneBased = ~~(index + 1); // for GWT
        checkState(oneBased > 0, "negative index");
        return (oneBased & EVEN_POWERS_OF_TWO) > (oneBased & ODD_POWERS_OF_TWO);
      }
    
      /**
       * Returns {@code true} if the MinMax heap structure holds. This is only used in testing.
       *
       * <p>TODO(kevinb): move to the test class?
       */
      @VisibleForTesting
      boolean isIntact() {
        for (int i = 1; i < size; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. src/cmd/go/internal/list/list.go

    		}
    	} else {
    		var cachedCtxt *Context
    		context := func() *Context {
    			if cachedCtxt == nil {
    				cachedCtxt = newContext(&cfg.BuildContext)
    			}
    			return cachedCtxt
    		}
    		fm := template.FuncMap{
    			"join":    strings.Join,
    			"context": context,
    			"module":  func(path string) *modinfo.ModulePublic { return modload.ModuleInfo(ctx, path) },
    		}
    		tmpl, err := template.New("main").Funcs(fm).Parse(*listFmt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      // operands from tflite op name.
      // Also, since the above code special-handles the `tfl.reshape` op and add an
      // additional input, we put these function block here.
      llvm::MinMax input_min_max = mlir::OperandNumbersMinMax(op_name);
      int input_max_num = input_min_max.Max;
      int op_input_num = op_state.operands.size();
      if (input_max_num != 0 && input_max_num > op_input_num) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

        (replaceWithValue $input),
        [(IsTailOfShape $input, $output),
         (IsTailOfShape $output, $input)]>;
    }
    
    // Remove (log-)softmax before arg-minmax as (log-)softmax is monotonic.
    foreach ArgMinMaxOp = [TFL_ArgMinOp, TFL_ArgMaxOp] in {
      def RemoveSoftmaxOpBefore#ArgMinMaxOp : Pat<
        (ArgMinMaxOp (TFL_SoftmaxOp:$softmax $logits, TFL_FloatNonNegative:$beta),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    		delete(s.vars, capVar)
    	}
    
    	// make result
    	if inplace {
    		return nil
    	}
    	return s.newValue3(ssa.OpSliceMake, n.Type(), p, l, c)
    }
    
    // minMax converts an OMIN/OMAX builtin call into SSA.
    func (s *state) minMax(n *ir.CallExpr) *ssa.Value {
    	// The OMIN/OMAX builtin is variadic, but its semantics are
    	// equivalent to left-folding a binary min/max operation across the
    	// arguments list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top