Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,434 for Allows (0.11 sec)

  1. internal/ioutil/read_file.go

    package ioutil
    
    import (
    	"io"
    	"io/fs"
    	"os"
    
    	"github.com/minio/minio/internal/disk"
    )
    
    var (
    	// OpenFileDirectIO allows overriding default function.
    	OpenFileDirectIO = disk.OpenFileDirectIO
    	// OsOpen allows overriding default function.
    	OsOpen = os.Open
    	// OsOpenFile allows overriding default function.
    	OsOpenFile = os.OpenFile
    )
    
    // ReadFileWithFileInfo reads the named file and returns the contents.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 09 18:17:51 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyLockingHandler.java

         * }
         *
         * @since 6.0
         */
        void unlockAllConfigurations();
    
        /**
         * Allows to query the lock mode currently configured
         *
         * @since 6.1
         */
        Property<LockMode> getLockMode();
    
        /**
         * Allows to configure the file used for saving lock state
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/marshal.go

    	}
    
    	if s.Schema == nil && !s.Allows {
    		return jsFalse, nil
    	}
    	return jsTrue, nil
    }
    
    func (s *JSONSchemaPropsOrBool) UnmarshalJSON(data []byte) error {
    	var nw JSONSchemaPropsOrBool
    	switch {
    	case len(data) == 0:
    	case data[0] == '{':
    		var sch JSONSchemaProps
    		if err := json.Unmarshal(data, &sch); err != nil {
    			return err
    		}
    		nw.Allows = true
    		nw.Schema = &sch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 13 21:12:46 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    	// for duplicate registration.
    	originatingStack string
    
    	// done will be closed when the postHook is finished
    	done chan struct{}
    }
    
    type PostStartHookConfigEntry struct {
    	hook PostStartHookFunc
    	// originatingStack holds the stack that registered postStartHooks. This allows us to show a more helpful message
    	// for duplicate registration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. releasenotes/notes/custom-gw-classname.yaml

    area: traffic-management
    releaseNotes:
    - |
      **Added** an environment variable for istiod `PILOT_GATEWAY_API_DEFAULT_GATEWAYCLASS_NAME` that allows overriding the name of the default `GatewayClass` Gateway API resource. The default value is `istio`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 08:41:13 UTC 2024
    - 574 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/resourceconfig/helpers.go

    	groupVersionMatchers = map[string]func(gv schema.GroupVersion) bool{
    		// allows users to address all api versions
    		APIAll: func(gv schema.GroupVersion) bool { return true },
    		// allows users to address all api versions in the form v[0-9]+
    		APIGA: func(gv schema.GroupVersion) bool { return gaPattern.MatchString(gv.Version) },
    		// allows users to address all beta api versions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/arguments_test.go

    				{Name: "allow-privileged", Value: "true"},
    				{Name: "something-that-allows-empty-string", Value: "foo"},
    			},
    			overrides: []kubeadmapi.Arg{
    				{Name: "admission-control", Value: "NamespaceLifecycle,LimitRanger"},
    				{Name: "something-that-allows-empty-string", Value: ""},
    			},
    			expected: []string{
    				"--admission-control=NamespaceLifecycle,LimitRanger",
    				"--allow-privileged=true",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ModuleVersionSelectorParsersTest.groovy

            def v = multiParser("").parseNotation(sb) as List
    
            then:
            v.size() == 1
            v[0].name  == 'charsequence'
        }
    
        def "allows exact type on input"() {
            def module = DefaultModuleIdentifier.newId("org.foo", "bar")
            def id = newSelector(module, "2.0")
    
            when:
            def v = multiParser("").parseNotation(id) as List
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/ImplicitInputsProvidingService.java

     *
     * It's up to the service implementation to determine:
     *
     * - the type of the input which allows requesting its up-to-date ness ({@link IN}
     * - the type of the output which allows checking if the result of calling the service is the same ({@link OUT}
     *
     * Both have to be serializable, and it's encouraged to use the minimal footprint which allows
     * determining up-to-date status. For example, a SHA1 of a resource might be enough, rather than storing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. docs/throttle/README.md

    # MinIO Server Throttling Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io) [![Docker Pulls](https://img.shields.io/docker/pulls/minio/minio.svg?maxAge=604800)](https://hub.docker.com/r/minio/minio/)
    
    MinIO server allows to throttle incoming requests:
    
    - limit the number of active requests allowed across the cluster
    - limit the wait duration for each request in the queue
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top