Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 176 for ALLOW (0.04 sec)

  1. docs/changelogs/changelog_3x.md

     *  **TLSv1 and TLSv1.1 are no longer enabled by default.** Major web browsers are working towards
        removing these versions altogether in early 2020. If your servers aren't ready yet you can
        configure OkHttp 3.13 to allow TLSv1 and TLSv1.1 connections:
    
        ```
        OkHttpClient client = new OkHttpClient.Builder()
            .connectionSpecs(Arrays.asList(ConnectionSpec.COMPATIBLE_TLS))
            .build();
        ```
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  2. cmd/object-api-listobjects_test.go

    						}
    					}
    
    					if testCase.resultL.IsTruncated != resultL.IsTruncated {
    						// Allow an extra continuation token.
    						if !resultL.IsTruncated || len(resultL.Objects) == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      repeated ServerAddressByClientCIDR serverAddressByClientCIDRs = 4;
    }
    
    // APIGroupList is a list of APIGroup, to allow clients to discover the API at
    // /apis.
    message APIGroupList {
      // groups is a list of APIGroup.
      repeated APIGroup groups = 1;
    }
    
    // APIResource specifies the name of a resource and whether it is namespaced.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    // is evaluated when the param referred by its perNamespaceParamRef is not found.
    type ParameterNotFoundActionType string
    
    const (
    	// Allow means all requests will be admitted if no param resources
    	// could be found.
    	AllowAction ParameterNotFoundActionType = "Allow"
    	// Deny means all requests will be denied if no param resources are found.
    	DenyAction ParameterNotFoundActionType = "Deny"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated ServerAddressByClientCIDR serverAddressByClientCIDRs = 4;
    }
    
    // APIGroupList is a list of APIGroup, to allow clients to discover the API at
    // /apis.
    message APIGroupList {
      // groups is a list of APIGroup.
      // +listType=atomic
      repeated APIGroup groups = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		select {
    		case event, ok := <-c.incoming:
    			if !ok {
    				return
    			}
    			// Don't dispatch bookmarks coming from the storage layer.
    			// They can be very frequent (even to the level of subseconds)
    			// to allow efficient watch resumption on kube-apiserver restarts,
    			// and propagating them down may overload the whole system.
    			//
    			// TODO: If at some point we decide the performance and scalability
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    		return
    	}
    	osym := r.Sym(li)
    	if osym.IsLinkname() || osym.ABIWrapper() {
    		// Allow if the def has a linkname (push).
    		// ABI wrapper usually wraps an assembly symbol, a linknamed symbol,
    		// or an external symbol, or provide access of a Go symbol to assembly.
    		// For now, allow ABI wrappers.
    		// TODO: check the wrapped symbol?
    		return
    	}
    	error()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    // is evaluated when the param referred by its perNamespaceParamRef is not found.
    type ParameterNotFoundActionType string
    
    const (
    	// Allow means all requests will be admitted if no param resources
    	// could be found.
    	AllowAction ParameterNotFoundActionType = "Allow"
    	// Deny means all requests will be denied if no param resources are found.
    	DenyAction ParameterNotFoundActionType = "Deny"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    		// Gateway allows only 301 and 302.
    		resp.RedirectCode = uint32(*filter.StatusCode)
    	}
    	if filter.Hostname != nil {
    		resp.Authority = string(*filter.Hostname)
    	}
    	if filter.Scheme != nil {
    		// Both allow http and https
    		resp.Scheme = *filter.Scheme
    	}
    	if filter.Port != nil {
    		resp.RedirectPort = &istio.HTTPRedirect_Port{Port: uint32(*filter.Port)}
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    	// podStoreSynced returns true if the pod store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	podStoreSynced cache.InformerSynced
    	// jobStoreSynced returns true if the job store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	jobStoreSynced cache.InformerSynced
    
    	// A TTLCache of pod creates/deletes each rc expects to see
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top