Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 80 for decSizes (0.15 sec)

  1. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -#  endif
    -# endif
    -
    -/* GCC < 3.0 optimizes memset(s, 0, n) but not bzero(s, n).
    -   The optimization is broken before EGCS 1.1.
    -   GCC 3.0+ has __builtin_bzero as well, but at least till GCC 3.4
    -   if it decides to call the library function, it calls memset
    -   and not bzero.  */
    -# if __GNUC_PREREQ (2, 91)
    -#  define __bzero(s, n) __builtin_memset (s, '\0', n)
    -# endif
    -
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

          this.actionWhenFirstParamIsNull = actionWhenFirstParamIsNull;
          this.actionWhenSecondParamIsNull = actionWhenSecondParamIsNull;
        }
    
        /** Method that decides how to react to parameters. */
        public void reactToNullParameters(@Nullable Object first, @Nullable Object second) {
          if (first == null) {
            actionWhenFirstParamIsNull.act();
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/buildid.go

    // useCache tries to satisfy the action a, which has action ID actionHash,
    // by using a cached result from an earlier build. At the moment, the only
    // cached result is the installed package or binary at target.
    // If useCache decides that the cache can be used, it sets a.buildID
    // and a.built for use by parent actions and then returns true.
    // Otherwise it sets a.buildID to a temporary build ID for use in the build
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. docs/es/docs/async.md

    Luego, cuando llega tu turno, haces un trabajo "productivo" real 🤓, procesas el menú, decides lo que quieres, lo que quiere esa persona 😍, pagas 💸, verificas que das el billete o tarjeta correctos, verificas que te cobren correctamente, que el pedido tiene los artículos correctos, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	args    *types.Var
    	callers []printfCaller
    	failed  bool // if true, not a printf wrapper
    }
    
    type printfCaller struct {
    	w    *printfWrapper
    	call *ast.CallExpr
    }
    
    // maybePrintfWrapper decides whether decl (a declared function) may be a wrapper
    // around a fmt.Printf or fmt.Print function. If so it returns a printfWrapper
    // function describing the declaration. Later processing will analyze the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/func.go

    	}
    	v.Pos = pos
    	b.Values = append(b.Values, v)
    	return v
    }
    
    // newValueNoBlock allocates a new Value with the given fields.
    // The returned value is not placed in any block.  Once the caller
    // decides on a block b, it must set b.Block and append
    // the returned value to b.Values.
    func (f *Func) newValueNoBlock(op Op, t *types.Type, pos src.XPos) *Value {
    	var v *Value
    	if f.freeValues != nil {
    		v = f.freeValues
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/interface.go

    	// to provision the resource for the Pod.
    	// It's different from when to return Unschedulable/UnschedulableAndUnresolvable,
    	// because in this case, the scheduler decides where the Pod can go successfully,
    	// but we need to wait for the external component to do something based on that scheduling result.
    	//
    	// We regard the backoff as a penalty of wasting the scheduling cycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// +optional
    	ResourceVersion string `json:"resourceVersion,omitempty" protobuf:"bytes,1,opt,name=resourceVersion"`
    	// +k8s:deprecated=includeUninitialized,protobuf=2
    }
    
    // DeletionPropagation decides if a deletion will propagate to the dependents of
    // the object, and how the garbage collector will handle the propagation.
    type DeletionPropagation string
    
    const (
    	// Orphans the dependents.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  9. tensorflow/c/eager/tape.h

      // Not owned; provides operations on Tensors which are currently only
      // available in language bindings (e.g. Python).
      const VSpace<Gradient, BackwardFunction, TapeTensor>& vspace_;
    
      // Decides if tangents are vectorized or not
      bool use_batch_;
    
      struct AccumulatorCallState {
        AccumulatorCallState(
            GradientTape<Gradient, BackwardFunction, TapeTensor>* backward_tape,
            bool accumulating)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  10. src/runtime/arena.go

    	// Clear the span preemptively. It's an arena chunk, so let's assume
    	// everything is going to be used.
    	//
    	// This also seems to make a massive difference as to whether or
    	// not Linux decides to back this memory with transparent huge
    	// pages. There's latency involved in this zeroing, but the hugepage
    	// gains are almost always worth it. Note: it's important that we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
Back to top