Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. pkg/config/schema/collection/schemas_test.go

    	_ "google.golang.org/protobuf/types/known/emptypb"
    	_ "google.golang.org/protobuf/types/known/structpb"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/collection"
    	"istio.io/istio/pkg/config/schema/resource"
    )
    
    var (
    	emptyResource = resource.Builder{
    		Kind:         "Empty",
    		Plural:       "empties",
    		ProtoPackage: "google.golang.org/protobuf/types/known/emptypb",
    		Proto:        "google.protobuf.Empty",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. 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)
  4. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

                            // known maximally specific, so remove the old maximum.
                            maximal.remove();
                            break;
    
                        case LESS_SPECIFIC:
                            // This method is less specific than some of the
                            // currently known maximally specific methods, so we
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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. 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)
  10. src/os/error.go

    func NewSyscallError(syscall string, err error) error {
    	if err == nil {
    		return nil
    	}
    	return &SyscallError{syscall, err}
    }
    
    // IsExist returns a boolean indicating whether the error is known to report
    // that a file or directory already exists. It is satisfied by [ErrExist] as
    // well as some syscall errors.
    //
    // This function predates [errors.Is]. It only supports errors returned by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top