Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,828 for okdown (0.12 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            def rootDir = tmpDir.createDir("root")
            def knownDir = rootDir.file("known").createDir()
            def knownTextFile = rootDir.file("known/known.txt").createFile()
            def knownHtmlFile = rootDir.file("known/known.html").createFile()
            // root
            //   - known <-- knownDir
            //     - known.txt <-- knownTextFile
            //     - known.html <-- knownHtmlFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  2. 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)
  3. src/runtime/compiler.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    // Compiler is the name of the compiler toolchain that built the
    // running binary. Known toolchains are:
    //
    //	gc      Also known as cmd/compile.
    //	gccgo   The gccgo front end, part of the GCC compiler suite.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 410 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalFileDependencyMetadata.java

     */
    public interface LocalFileDependencyMetadata {
        /**
         * Returns the id of the component that the file dependency references, if known. If not known an arbitrary identifier will be assigned.
         */
        @Nullable
        ComponentIdentifier getComponentId();
    
        /**
         * Remove this.
         */
        FileCollectionDependency getSource();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. docs/sts/casdoor.md

        - Save
    
    - Go to Users
      - Edit the user
        - Add your MinIO policy (ex: `readwrite`) in `Tag`
        - Save
    
    - Open your favorite browser and visit: **http://`CASDOOR_ENDPOINT`/.well-known/openid-configuration**, you will see the OIDC configure of Casdoor.
    
    ### Configure MinIO
    
    ```
    export MINIO_ROOT_USER=minio
    export MINIO_ROOT_PASSWORD=minio123
    minio server /mnt/export
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  6. src/runtime/mpallocbits.go

    			// Shrink all runs of zeros by p places (except the top zeros).
    			for p > 0 {
    				if p <= k {
    					// Shift p ones down into the top of each run of zeros.
    					x |= x >> (p & 63)
    					if x&(x+1) == 0 { // no more zeros (except at the top).
    						continue outer
    					}
    					break
    				}
    				// Shift k ones down into the top of each run of zeros.
    				x |= x >> (k & 63)
    				if x&(x+1) == 0 { // no more zeros (except at the top).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractCaptureStateBeforeExecutionStepTest.groovy

            def inputSnapshot = Mock(ValueSnapshot)
            def inputFileFingerprint = Mock(CurrentFileCollectionFingerprint)
            def knownInputProperties = ImmutableSortedMap.of("known", knownSnapshot)
            def knownInputFileProperties = ImmutableSortedMap.of("known-file", knownFileFingerprint)
    
            when:
            step.execute(work, context)
    
            then:
            _ * context.inputProperties >> knownInputProperties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:34 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/componentconfigs/scheme.go

    func init() {
    	metav1.AddToGroupVersion(Scheme, schema.GroupVersion{Version: "v1"})
    	AddToScheme(Scheme)
    }
    
    // AddToScheme builds the kubeadm ComponentConfig scheme using all known ComponentConfig versions.
    func AddToScheme(scheme *runtime.Scheme) {
    	for _, handler := range known {
    		utilruntime.Must(handler.AddToScheme(scheme))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 26 11:55:28 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/mutation/common/interface.go

    	Resolve(name string) (TypeRef, bool)
    }
    
    // TypeRef refers an object type that can be looked up for its fields.
    type TypeRef interface {
    	ref.Type
    
    	// CELType wraps the TypeRef to be a type that is understood by CEL.
    	CELType() *types.Type
    
    	// Field finds the field by the field name, or false if the field is not known.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/toolchain-filters/kotlin/build.gradle.kts

    // The bodies of the if statements are intentionally not indented to make the user guide page prettier.
    
    // tag::toolchain-known-vendor[]
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    // end::toolchain-known-vendor[]
    
    } else if (testToolchain == "matchingVendor") {
    // tag::toolchain-matching-vendor[]
    java {
        toolchain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1000 bytes
    - Viewed (0)
Back to top