Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 270 for hand (0.05 sec)

  1. pkg/kube/krt/README.md

    * `Equals(k K) bool` may be implemented to provide custom implementations to compare objects. Comparison is done to detect if changes were made.
      Default implementations are available for Kubernetes and protobuf objects, and will fallback to `reflect.DeepEqual`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    	// namespace, hand-crafted type
    	declTypes = append(declTypes, namespaceType)
    	varOpts = append(varOpts, createVariableOpts(namespaceType, plugincel.NamespaceVarName)...)
    
    	// request, hand-crafted type
    	declTypes = append(declTypes, requestType)
    	varOpts = append(varOpts, createVariableOpts(requestType, plugincel.RequestVarName)...)
    
    	// object and oldObject, same type, type(s) resolved from constraints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/abi.go

    	//
    	// ABIInternal-to-ABI0 wrappers on the other hand will be taking
    	// things in registers and pushing them onto the stack prior to
    	// the ABI0 call, meaning that they will always need to allocate
    	// stack space. If the compiler marks them as NOSPLIT this seems
    	// as though it could lead to situations where the linker's
    	// nosplit-overflow analysis would trigger a link failure. On the
    	// other hand if they not tagged NOSPLIT then this could cause
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/encoding/gob/codec_test.go

    package gob
    
    import (
    	"bytes"
    	"errors"
    	"flag"
    	"math"
    	"math/rand"
    	"reflect"
    	"strings"
    	"testing"
    	"time"
    	"unsafe"
    )
    
    var doFuzzTests = flag.Bool("gob.fuzz", false, "run the fuzz tests, which are large and very slow")
    
    // Guarantee encoding format by comparing some encodings to hand-written values
    type EncodeT struct {
    	x uint64
    	b []byte
    }
    
    var encodeT = []EncodeT{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

        }
    
        @Unroll("selects variant '#expected' from target component with Java proximity matching strategy using short-hand notation (#scenario)")
        def "selects variant from target component with Java proximity matching strategy using short-hand notation"() {
            def dep = new LocalComponentDependencyMetadata(Stub(ComponentSelector), null, [] as List, [], false, false, true, false, false, null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  6. hack/golangci.yaml

          path: _test.go$
    
        # TODO(oscr) Remove these excluded directories and fix findings. Due to large amount of findings in different components
        # with different owners it's hard to fix everything in a single pr. This will therefore be done in multiple prs.
        - path: (pkg/volume/*|test/*|azure/*|pkg/cmd/wait*|request/bearertoken/*|metrics/*|filters/*)
          linters:
            - gocritic
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/order.go

    		//     r = RHS
    		// }
    		// ... = r
    
    		n := n.(*ir.LogicalExpr)
    		r := o.newTemp(n.Type(), false)
    
    		// Evaluate left-hand side.
    		lhs := o.expr(n.X, nil)
    		o.out = append(o.out, typecheck.Stmt(ir.NewAssignStmt(base.Pos, r, lhs)))
    
    		// Evaluate right-hand side, save generated code.
    		saveout := o.out
    		o.out = nil
    		t := o.markTemp()
    		o.edge()
    		rhs := o.expr(n.Y, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/assignments.go

    		}
    		lhs.typ = typ
    	}
    
    	check.assignment(x, lhs.typ, context)
    }
    
    // lhsVar checks a lhs variable in an assignment and returns its type.
    // lhsVar takes care of not counting a lhs identifier as a "use" of
    // that identifier. The result is nil if it is the blank identifier,
    // and Typ[Invalid] if it is an invalid lhs expression.
    func (check *Checker) lhsVar(lhs syntax.Expr) Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_device_context.cc

        // Unref the host tensor when the transfer completes.
        // We don't defer the call to done() onto the stream here, and the reasons
        // why this is correct are subtle. We assume that:
        // a) all consumers of the device tensor will wait for its definition event.
        // b) if the tensor is destroyed, then the memory allocator will not hand
        //    out the same buffers until the transfer has completed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

            }
    
            val operationToken = operationTokenName.getOperationSymbol()
    
            if (leftArg == null) return tree.parsingError(node, "Missing left hand side in binary expression")
            if (rightArg == null) return tree.parsingError(node, "Missing right hand side in binary expression")
    
            return when (operationToken) {
                EQ -> elementOrFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top