Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 721 for hand (0.04 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build zos && s390x
    
    // Hand edited based on ztypes_linux_s390x.go
    // TODO: auto-generate.
    
    package unix
    
    const (
    	SizeofPtr      = 0x8
    	SizeofShort    = 0x2
    	SizeofInt      = 0x4
    	SizeofLong     = 0x8
    	SizeofLongLong = 0x8
    	PathMax        = 0x1000
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    https://scans.gradle.com/[Build scans] are a persistent, shareable record of what happened when running a build.
    Build scans provide insights into your build that you can use to identify and fix performance bottlenecks.
    
    In Gradle 4.3 and above, you can create a build scan using the `--scan` command line option:
    
    [listing.terminal]
    ----
    $ gradle build --scan
    ----
    
    For older Gradle versions, the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/syscall/exec_unix.go

    // If a non-malicious child accidentally inherits an open ordinary file,
    // that's not a big deal. On the other hand, if a long-lived child
    // accidentally inherits the write end of a pipe, then the reader
    // of that pipe will not see EOF until that child exits, potentially
    // causing the parent program to hang. This is a common problem
    // in threaded C programs that use popen.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/stmt.go

    					base.ErrorfAt(n.Pos(), errors.InvalidSelectCase, "select assignment must have receive on right hand side")
    					break
    				}
    				oselrecv2(n.X, n.Y, n.Def)
    
    			case ir.OAS2RECV:
    				n := n.(*ir.AssignListStmt)
    				if n.Rhs[0].Op() != ir.ORECV {
    					base.ErrorfAt(n.Pos(), errors.InvalidSelectCase, "select assignment must have receive on right hand side")
    					break
    				}
    				n.SetOp(ir.OSELRECV2)
    
    			case ir.ORECV:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // at this priority level the request's flow identifier (a string
      // pair) is hashed and the hash value is used to shuffle the list
      // of queues and deal a hand of the size specified here.  The
      // request is put into one of the shortest queues in that hand.
      // `handSize` must be no larger than `queues`, and should be
      // significantly smaller (so that a few heavy flows do not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. src/internal/profile/proto.go

    //
    // The two methods are simple enough to be implemented by hand rather than
    // by using a protocol compiler.
    //
    // See profile.go for examples of messages implementing this interface.
    //
    // There is no support for groups, message sets, or "has" bits.
    
    package profile
    
    import (
    	"errors"
    	"fmt"
    )
    
    type buffer struct {
    	field int
    	typ   int
    	u64   uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 16:20:57 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  8. src/reflect/deepequal.go

    // such a value.
    // On the other hand, pointer values are always equal to themselves,
    // even if they point at or contain such problematic values,
    // because they compare equal using Go's == operator, and that
    // is a sufficient condition to be deeply equal, regardless of content.
    // DeepEqual has been defined so that the same short-cut applies
    // to slices and maps: if x and y are the same slice or the same map,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/compile/internal/syntax/nodes_test.go

    	// the first occurrence of the respective node and we don't need to hand-
    	// extract the node for each specific kind of construct.
    
    	testPos(t, decls, "package p; ", "",
    		func(f *File) Node { return f.DeclList[0] },
    	)
    
    	// embed expressions in a composite literal so we can test key:value and naked composite literals
    	testPos(t, exprs, "package p; var _ = T{ ", " }",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 18:45:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top