Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,828 for okdown (0.2 sec)

  1. src/cmd/go/internal/modfetch/codehost/git.go

    		// At the least, we have a hash prefix we can look up after the fetch below.
    		// Maybe we can map it to a full hash using the known refs.
    		prefix := rev
    		// Check whether rev is prefix of known ref hash.
    		for k, h := range refs {
    			if strings.HasPrefix(h, prefix) {
    				if hash != "" && hash != h {
    					// Hash is an ambiguous hash prefix.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/writebarrier.go

    	"fmt"
    	"internal/buildcfg"
    )
    
    // A ZeroRegion records parts of an object which are known to be zero.
    // A ZeroRegion only applies to a single memory state.
    // Each bit in mask is set if the corresponding pointer-sized word of
    // the base object is known to be zero.
    // In other words, if mask & (1<<i) != 0, then [base+i*ptrSize, base+(i+1)*ptrSize)
    // is known to be zero.
    type ZeroRegion struct {
    	base *Value
    	mask uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    // If known.Verifier returns an UnknownVerifierError,
    // Open records the signature in the returned note's UnverifiedSigs field.
    // If known.Verifier returns any other error, Open returns that error.
    //
    // If no known verifier has signed an otherwise valid note,
    // Open returns an [UnverifiedNoteError].
    // In this case, the unverified note can be fetched from inside the error.
    func Open(msg []byte, known Verifiers) (*Note, error) {
    	if known == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/test/groovy/org/gradle/docs/releasenotes/ReleaseNotesPage.groovy

            fixedIssuesParagraph { fixedIssuesHeading.next() }
            fixedIssuesListItems { $("ul#fixed-issues-list li") }
            knownIssuesHeading { $("#known-issues") }
            knownIssuesParagraph { knownIssuesHeading.next("p").next("p") }
            knownIssuesListItems { $("ul#known-issues-list li") }
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/componentconfigs/fakeconfig_test.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
    )
    
    // All tests in this file use an alternative set of `known` component configs.
    // In this case it's just one known config and it's kubeadm's very own ClusterConfiguration.
    // ClusterConfiguration is normally not managed by this package. It's only used, because of the following:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. docs/site-replication/run-multi-site-oidc.sh

    export MINIO_KMS_AUTO_ENCRYPTION=off
    export MINIO_PROMETHEUS_AUTH_TYPE=public
    export MINIO_KMS_SECRET_KEY=my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw=
    export MINIO_IDENTITY_OPENID_CONFIG_URL="http://localhost:5556/dex/.well-known/openid-configuration"
    export MINIO_IDENTITY_OPENID_CLIENT_ID="minio-client-app"
    export MINIO_IDENTITY_OPENID_CLIENT_SECRET="minio-client-app-secret"
    export MINIO_IDENTITY_OPENID_CLAIM_NAME="groups"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/PluginResolution.java

         * Apply the plugin to the provided plugin manager.
         */
        void applyTo(PluginManagerInternal pluginManager);
    
        /**
         * The resolved plugin version, if known.
         *
         * @return The resolved plugin version, or null if the plugin version is not known.
         */
        @Nullable
        default String getPluginVersion() {
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 03:54:58 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentityContext.java

        }
    
        /**
         * All currently known input properties.
         */
        public ImmutableSortedMap<String, ValueSnapshot> getInputProperties() {
            return inputProperties;
        }
    
        /**
         * All currently known input file properties.
         */
        public ImmutableSortedMap<String, CurrentFileCollectionFingerprint> getInputFileProperties() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/BigDecimalMathTest.java

        double twoToThe53 = Math.pow(2, 53);
        // the representable doubles are 2^53 and 2^53 + 2.
        // 2^53+1 is halfway between, so HALF_UP will go up and HALF_DOWN will go down.
        new RoundToDoubleTester(BigDecimal.valueOf((1L << 53) + 1))
            .setExpectation(twoToThe53, DOWN, FLOOR, HALF_DOWN, HALF_EVEN)
            .setExpectation(Math.nextUp(twoToThe53), CEILING, UP, HALF_UP)
            .roundUnnecessaryShouldThrow()
            .test();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. src/runtime/os2_plan9.go

    	_RFNOMNT  = 1 << 14
    )
    
    // notify
    const (
    	_NCONT = 0
    	_NDFLT = 1
    )
    
    type uinptr _Plink
    
    type tos struct {
    	prof struct { // Per process profiling
    		pp    *_Plink // known to be 0(ptr)
    		next  *_Plink // known to be 4(ptr)
    		last  *_Plink
    		first *_Plink
    		pid   uint32
    		what  uint32
    	}
    	cyclefreq uint64 // cycle clock frequency if there is one, 0 otherwise
    	kcycles   int64  // cycles spent in kernel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 14 18:33:38 UTC 2015
    - 1.5K bytes
    - Viewed (0)
Back to top