Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for decref (0.13 sec)

  1. .github/CODEOWNERS

    platforms/documentation/docs/src/samples/                                                     @gradle/bt-devrel-education
    platforms/documentation/docs/src/docs-asciidoctor-extensions-base/                            @gradle/bt-devrel-education
    platforms/documentation/docs/src/docs-asciidoctor-extensions/                                 @gradle/bt-devrel-education
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    	case *types.Interface:
    		return InterfaceTermSet(typ)
    	default:
    		return []*types.Term{types.NewTerm(false, typ)}, nil
    	}
    }
    
    // Deref returns the type of the variable pointed to by t,
    // if t's core type is a pointer; otherwise it returns t.
    //
    // Do not assume that Deref(T)==T implies T is not a pointer:
    // consider "type T *T", for example.
    //
    // TODO(adonovan): ideally this would live in typesinternal, but that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. cmd/object-api-utils.go

    			off, decOff, firstPart, decryptSkip, seqNum = getCompressedOffsets(oi, off, decrypt)
    			decLength = length
    			length = oi.Size - off
    			// For negative length we read everything.
    			if decLength < 0 {
    				decLength = actualSize - decOff
    			}
    
    			// Reply back invalid range if the input offset and length fall out of range.
    			if decOff > actualSize || decOff+decLength > actualSize {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. pkg/controller/job/backoff_utils.go

    	}
    	return nil
    }
    
    func getFinishTimeFromDeletionTimestamp(p *v1.Pod) *time.Time {
    	if p.DeletionTimestamp != nil {
    		finishTime := p.DeletionTimestamp.Time.Add(-time.Duration(ptr.Deref(p.DeletionGracePeriodSeconds, 0)) * time.Second)
    		return &finishTime
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. go.mod

    	github.com/containerd/typeurl/v2 v2.1.1 // indirect
    	github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
    	github.com/cyphar/filepath-securejoin v0.2.4 // indirect
    	github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
    	github.com/docker/distribution v2.8.3+incompatible // indirect
    	github.com/docker/docker v26.0.2+incompatible // indirect
    	github.com/docker/docker-credential-helpers v0.8.1 // indirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. go.mod

    	github.com/charmbracelet/x/windows v0.1.2 // indirect
    	github.com/coreos/go-semver v0.3.1 // indirect
    	github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
    	github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
    	github.com/docker/go-units v0.5.0 // indirect
    	github.com/eapache/go-resiliency v1.6.0 // indirect
    	github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. go.sum

    github.com/decred/dcrd/crypto/blake256 v1.0.1/go.mod h1:2OfgNZ5wDpcsFmHmCK5gZTPcCXqlm2ArzUIkw9czNJo=
    github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0=
    github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 h1:rpfIENRNNilwHwZeG5+P150SMrnNEcHYvcCuK6dPZSg=
    github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    		}
    		deref := false
    		if !ssa.CanSSA(n.Rhs[0].Type()) {
    			if res.Op != ssa.OpLoad {
    				s.Fatalf("dottype of non-load")
    			}
    			mem := s.mem()
    			if res.Args[1] != mem {
    				s.Fatalf("memory no longer live from 2-result dottype load")
    			}
    			deref = true
    			res = res.Args[0]
    		}
    		s.assign(n.Lhs[0], res, deref, 0)
    		s.assign(n.Lhs[1], resok, false, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller.go

    	reason := metrics.PodCreateNew
    	if feature.DefaultFeatureGate.Enabled(features.JobPodReplacementPolicy) {
    		if ptr.Deref(job.Spec.PodReplacementPolicy, batch.TerminatingOrFailed) == batch.Failed && jobCtx.failed > 0 {
    			reason = metrics.PodRecreateFailed
    		} else if jobCtx.failed > 0 || ptr.Deref(jobCtx.terminating, 0) > 0 {
    			reason = metrics.PodRecreateTerminatingOrFailed
    		}
    	}
    	if succeeded > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  10. go.sum

    github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
    github.com/decred/dcrd/crypto/blake256 v1.0.1/go.mod h1:2OfgNZ5wDpcsFmHmCK5gZTPcCXqlm2ArzUIkw9czNJo=
    github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 h1:8UrgZ3GkP4i/CLijOJx79Yu+etlyjdBU4sfcs2WYQMs=
    github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
Back to top